:root {
    --navbar-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

/* Poster (fallback layer) */
.video-background .poster {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Video (top layer) */
.video-background video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-background-mobile {
    display: none;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.300);
    z-index: -1;
}

/* Top White Strip */
.top-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 35px;
    background: whitesmoke;
    z-index: 1001;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 50px;
}

.top-strip-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-strip-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.top-strip-links .instagram-icon {
    height: 20px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.top-strip-links .amazon-icon {
    height: 35px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.top-strip-links a:hover {
    opacity: 0.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 0.5px rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transition: top 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.navbar.no-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


.navbar.scrolled {
    top: 15px;
}

/* Logo */
.logo {
    flex-shrink: 0;
    z-index: 1;
    margin-left: -20px;
}

/* Logo Image */
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

    transition: 0.3s ease;   /* Smooth glow animation */
}

/* Glow on Hover */
.logo:hover img {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
}

/* Nav Menu */
.nav-menu {
    position: absolute;
    top: 55%;
    left: 58%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 60px;
    list-style: none;
    align-items: center;
    white-space: nowrap;
}

.nav-menu li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    border-left: #ddd solid 1px;
    padding-left: 60px;
    
}

.nav-menu a i {
    font-size: 14px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;   /* changed from color to all */
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: white;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}


                /* Sliding message container */

                .slide-message {
                    position: fixed;
                    top: 20%;
                    right: 1.5cm;

                    width: 14cm;
                    padding: 20px;

                    border-radius: 18px;

                    font-size: 18px;
                    line-height: 1.6;

                    transform: translateX(120%);
                    transition: transform 0.6s ease;

                    z-index: 9999;

                    background: #e08b0cc6;
                    color: rgba(36, 34, 34, 0.96);

                    border: 1px solid rgba(0,0,0,0.05);

                    box-shadow:
                        0 10px 20px rgba(0,0,0,0.15),
                        0 3px 6px rgba(0,0,0,0.08);
                }

                /* Close Button for Slide Message */

                .close-slide-message {
                    position: absolute;
                    top: 20px;
                    right: 20px;

                    width: 30px;
                    height: 30px;

                    background: rgba(52, 49, 49, 0.6);
                    color: white;

                    border: none;
                    border-radius: 50%;

                    font-size: 18px;
                    line-height: 28px;
                    text-align: center;

                    cursor: pointer;

                    padding: 0;
                }

                .close-slide-message:hover {
                    background: #eaeaea;
                }

                .slide-message.show {
                    transform: translateX(0);
                }

                .slide-message.hide {
                    transform: translateX(120%);
                }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 20px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 200;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    color: #ddd;
    letter-spacing: 3px;
    animation: fadeInUp 1.5s ease-out;
}

.cta-button {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 230px;          /* FIXED WIDTH */
    height: 70px;          /* FIXED HEIGHT */

    padding: 0;            /* remove dynamic padding */

    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;

    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;

    background: transparent;

    white-space: nowrap;    /* prevents wrapping */
}
.cta-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0.5px rgba(255, 255, 255, 0.6);
}

.cta-button:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    height: auto;
    min-height: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.product-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 0.5px rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    padding: 40px 50px;
    padding-bottom: 10px;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    scroll-margin-top: calc(var(--navbar-height) + 7px);
    overflow: hidden;
}

/* Product Left - Image */
.product-left {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 2px;
    margin-bottom: 5px;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 60px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: rgb(0, 0, 0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}


.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

.image-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Product Right - Details */
.product-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

/* Flip Container */
.details-flip-container {
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.details-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.details-flip-inner.flipped {
    transform: rotateY(180deg);
}

.details-front,
.details-back {
    width: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
}

.details-back::-webkit-scrollbar {
    width: 6px;
}

.back-button {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 400;
}

.discount {
    color: #dc1e1e;
    font-size: 20px;
}

.price {
    font-weight: 500;
}

.price-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -10px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.product-specs strong {
    font-weight: 500;
    color: white;
}

.details-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: white;
}

.buy-button {
    align-self: flex-start;
    background: white;
    color: black;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.buy-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Section Content for About, Why Us, Contact */
.section-content {
    grid-column: 1 / -1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-content .product-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-content .product-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content .product-specs {
    max-width: 600px;
    margin: 0 auto;
}

/* Info Sections (About, Why Us, Contact) */
.info-section {
    height: auto;
    min-height: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
    scroll-margin-top: 40px;
    margin-bottom: 30px;
}

.info-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 0.5px rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    padding: 50px 60px;
    max-width: 1200px;
    width: 100%;
    scroll-margin-top: calc(var(--navbar-height) + 7px);
    overflow: hidden;
}

.info-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.info-title {
    font-size: 42px;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-subheading {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.info-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.about-body p {
  margin-bottom: 22px;
}


.info-body p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Justified text for info sections only */
#about .info-body p,
#why-us .info-body p {
    text-align: justify;
    text-justify: inter-word;
}
#contact .info-content {
    text-align: center;
}

#contact .info-body p {
    text-align: center;
}

.info-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.info-specs p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.info-specs strong {
    font-weight: 500;
    color: white;
}

.info-description {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 10px;
}

.product-specs p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-specs hr {
  margin: 24px 0;
  border: none;
  height: 1px;
  background: #ddd;
}


/* Specific container styling */
.about-container {
    background: rgba(255, 255, 255, 0.08);
}

.why-us-container {
    background: rgba(255, 255, 255, 0.08);
}

.contact-container {
    background: rgba(255, 255, 255, 0.08);
}

/*instagram link in contact us section*/
.contact-links{
    color: white; /* or #000 if you're using off-white background */
    text-decoration: none; /* removes underline */
}

.contact-links:hover {
    color: #ccc; /* optional hover effect */
}

.email-copy {
    position: relative;
    cursor: pointer;
    color: inherit;
}

/* get option to copy if user hovers/ clicks on email*/
/* Tooltip */
.copy-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Show on hover */
.email-copy:hover .copy-tooltip {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        width: 90%;
        padding: 0 30px;
    }

    .top-strip {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 40px;
    }

    .nav-menu a {
        font-size: 16px;
    }
    
    .navbar {
        padding: 0 20px;
    }
}



/******************** Responsive Design for Mobile ***********************/

@media (max-width: 768px) {


/* Hide desktop video background*/
    .video-background {
        display: none;
    }

/* Show mobile video background */
    .video-background-mobile {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Adjust top strip and navbar for mobile */
    .top-strip {
        height: 30px;
        padding: 0 20px;
    }

    .top-strip-links a {
        font-size: 12px;
    }

    .navbar {
        top: 40px;
        width: 95%;
        padding: 0 20px;
        max-height: 60px;
         overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links {
        display: none;
    }

    .nav-menu {
        position: static;
        transform: none;
        flex-direction: column;
    }

    .nav-menu a {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        font-size: 14px;
        border-left: none;
        
    }

    /* Dropdown Navbar */
    .navbar.drop-down-navbar {
        top: 40px;
        width: 95%;
        padding: 0 20px;
        height: 290px;
        max-height: 320px;

    }

    /* logo position in dropdown navbar */
    .navbar.drop-down-navbar .logo {
    position: absolute;
    top: 1px;
    }

    /*nav links in dropdown navbar */
      .navbar.drop-down-navbar .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 10px;
    width: 100%;
       /* centers horizontally */
}

    .navbar.drop-down-navbar .nav-menu {
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .navbar.drop-down-navbar .nav-menu a {
        font-size: 15px;
        font-weight:bold;
        display: flex;
        justify-content: center;  /* centers icon + text */
        align-items: center;
        width: 100%;
        padding: 12px 0;
    
    }
        .navbar.drop-down-navbar .nav-menu a i{
    font-size: 17px;
    margin-right: 8px;
    margin-left: 10%;
    }

/* info section title styling*/
    .info-title {
    font-size: 25px;
    font-weight: 750;
}

/* info sub heading title styling*/

    .info-subheading{
        font-size: 18px;
    }
/*info section content styling*/
    .info-body p {
        font-size: 15px;
    }

        
    /* Mobile Menu Button */

    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        font-size: 22px;
        color: white;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 10px;
        z-index: 1002;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }


    /* Sliding message container for mobile */

    .slide-message {
        position: fixed;
        top: 17%;
        right: 5%;

        width: 90%;
        padding: 20px; 

        border-radius: 18px;

        font-size: 18px;
        line-height: 1.6;

        transform: translateY(120vh);
        transition: transform 0.6s ease;
        

        z-index: 9999;

        background: #e08b0cc6;
        color: rgba(36, 34, 34, 0.96);

        border: 1px solid rgba(0,0,0,0.05);

        box-shadow:
            0 10px 20px rgba(0,0,0,0.15),
            0 3px 6px rgba(0,0,0,0.08);
    }

    /* Close Button for Slide Message */

    .close-slide-message {
        position: absolute;
        top: 20px;
        right: 20px;

        width: 30px;
        height: 30px;

        background: rgba(52, 49, 49, 0.6);
        color: white;

        border: none;
        border-radius: 50%;

        font-size: 18px;
        line-height: 28px;
        text-align: center;

        cursor: pointer;

        padding: 0;
    }

    .close-slide-message:hover {
        background: #eaeaea;
    }

    .slide-message.show {
        transform: translateY(0);
    }

    .slide-message.hide {
        transform: translateY(120vh);
    }

/* Adjust hero section for mobile */

    .hero-content h1 {
        letter-spacing: 1px;

        font-size: clamp(25px,50px,50px);
        line-height: 1.1;
        font-weight: 400;
        text-align: center;
    }

    .hero-content p {
        font-size: clamp(16px,25px,25px);
        letter-spacing: 2px;
        font-weight: 200;
    }


        @media(min-width:10px) and (max-width:550px){
    .hero-content h1 {
        letter-spacing: 1px;

        font-size: 30px;
        
    }

    .hero-content p {
        font-size: 16px;
        

}


/* Adjust products section for mobile */

    .products-section {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 50px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 24px;
    }

    /*mobile info sections */

    /* Reduce side spacing for info sections on mobile */
    #about,
    #why-us,
    #contact {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Reduce inner container padding on mobile */
    #about .info-container,
    #why-us .info-container,
    #contact .info-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .cta-button{
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.25);
        box-shadow:
            0 8px 30px rgba(0,0,0,0.4),
            inset 0 0 0.5px rgba(255,255,255,0.6);
        transition: all 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease;
    }

    .cta-button.hero-visible{
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

}
}
/*special nav links transition over mobile-tablet-desktop shidting*/

@media (min-width: 769px) and (max-width:950px){

    /* Nav Menu */
.nav-menu {
    position: absolute;
    top: 55%;
    left: 58%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
    white-space: nowrap;
}

.nav-menu li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    border-left: #ddd solid 1px;
    padding-left: 25px;
    
}

.nav-menu a i {
    font-size: 14px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;   /* changed from color to all */
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: white;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

}
