/* 
Simple.css - Modern fashion distribution company styling
Using color palette from main site:
--caramel: #ab7743
--espresso: #4c2b08
--almond: #b7957f 
--vanilla: #d7bda6
--coffee: #6d3914
*/

:root {
    --caramel: #ab7743;
    --espresso: #4c2b08;
    --almond: #b7957f;
    --vanilla: #d7bda6;
    --coffee: #6d3914;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Dubai Light', serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--espresso);
    color: var(--white);
    border: 2px solid var(--espresso);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    background-color: var(--caramel);
    border-color: var(--caramel);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(171, 119, 67, 0.3);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--espresso);
    border: 2px solid var(--caramel);
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--caramel);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 500;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--espresso);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 100px;
    background-color: var(--caramel);
    margin: 0 auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--caramel);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.light h2, .light p {
    color: var(--white);
}

.light .underline {
    background-color: var(--white);
}

.light .underline::before {
    background-color: var(--white);
}

/* Header and Navigation */
header {
    position: fixed;
    background-color: var(--white);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

header .nav-links a {
    color: var(--espresso);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo img {
    height: 40px;
    width: 250px;
    /* width: auto; */
    transition: var(--transition);
}

/* header.scrolled .logo img {
    height: 50px;
} */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--caramel);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--caramel);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000; /* Increased z-index to ensure it stays visible */
    position: relative;
}

header.scrolled .menu-toggle {
    color: var(--espresso);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('assets/simple_bg.jpeg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.3s;
}

.hero h1 span {
    color: var(--caramel);
}

.hero p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.6s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s forwards 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s forwards 0.6s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
    padding: 120px 0;
    /* background-color: var(--white); */
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--espresso);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    background: transparent;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid rgba(171, 119, 67, 0.3);
    opacity: 0;
    transform: scale(1.1);
    transition: var(--transition-slow);
    z-index: 1;
}

.image-frame:hover::before {
    opacity: 0.4;
    transform: scale(1);
}

.image-frame img {
    display: block;
    transition: var(--transition-slow);
    border: none;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Brands Section */
/* .brands {
    padding: 120px 0;
    background: linear-gradient(var(--caramel), var(--caramel)), url('https://source.unsplash.com/random/1920x1080/?textiles') no-repeat center center/cover;
    color: var(--white);
} */

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.brand-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    color: var(--text-dark);
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-image {
    height: 200px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.5rem;
}

.brand-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(171, 119, 67, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.brand-card:hover .hover-content {
    opacity: 1;
}

.brands-cta {
    text-align: center;
    margin-top: 50px;
}

/* Purpose Section */
.purpose {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.purpose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.purpose-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.purpose-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background-color: var(--vanilla);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.purpose-card:hover::before {
    height: 100%;
}

.purpose-card:hover {
    transform: translateY(-10px);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--vanilla);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.purpose-card:hover .purpose-icon {
    background-color: var(--white);
}

.purpose-icon i {
    font-size: 2rem;
    color: var(--espresso);
}

.purpose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--espresso);
}

.purpose-card p {
    color: var(--text-light);
}

.purpose-cta {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    /* background: linear-gradient(rgba(183, 149, 127, 0.15), rgba(171, 119, 67, 0.2)), no-repeat center center/cover; */
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    position: relative;
    padding: 20px;
}

/* .contact-info::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    background-color: rgba(171, 119, 67, 0.08);
    border-radius: 10px;
    z-index: -1;
} */

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--espresso);
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--caramel);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
}

.contact-item-main {
    color: var(--espresso);
}

/* .contact-item span {
    color: var(--espresso);
} */

.contact-social {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.contact-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--espresso);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--vanilla);
}

.contact-social .social-icon:hover {
    background-color: var(--caramel);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--caramel);
    background: linear-gradient(to right, rgba(215, 189, 166, 0.1), rgba(255, 255, 255, 1) 15%);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--vanilla);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caramel);
    box-shadow: 0 0 0 2px rgba(171, 119, 67, 0.2);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--coffee);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    /* text-align: center; */
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-family: 'Dubai Light', serif;
    font-size: 1.3rem;
}

.footer-links {
    /* text-align: center;
    justify-content: center; */
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    /* justify-content: center;
    text-align: center; */
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--caramel);
    bottom: -10px;
    left: 0;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: var(--vanilla);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--caramel);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--vanilla);
}

.contact-item i {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--caramel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.footer-social {
    /* justify-content: center; */
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--vanilla);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background-color: var(--caramel);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--almond);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .about-text,
    .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .footer-content {
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        align-items: center;
    }

    .footer-column {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        text-align: center;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .contact-social {
        justify-content: center;
}

    .coming-soon-content h3 {
    font-size: 2.0rem;
}
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 100; /* Increased z-index to ensure visibility */
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 15px;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        animation: navSlideIn 0.4s ease-out forwards;
    }
    
    .nav-links.active .mobile-menu-logo {
        opacity: 1;
        transform: scale(1);
        animation: mobileLogoEnter 0.6s ease forwards;
    }
    
    .nav-links.active .mobile-social {
        opacity: 1;
        transform: translateY(0);
        animation: mobileSocialEnter 0.8s ease forwards;
    }
      .nav-links a {
        font-family: 'Dubai Light', serif;
        color: var(--espresso);
        margin: 10px 0;
        opacity: 0;
        transform: translateX(20px);
        font-size: 1.2rem;
    }
    
    .nav-links a.social-icon {
        margin: 0;
    }
      
    /* Selecting navigation links directly and skipping the logo div */
    .nav-links.active > a:nth-of-type(1) {
        animation: navItemSlideIn 0.5s ease forwards 0.1s;
    }
    
    .nav-links.active > a:nth-of-type(2) {
        animation: navItemSlideIn 0.5s ease forwards 0.2s;
    }
    
    .nav-links.active > a:nth-of-type(3) {
        animation: navItemSlideIn 0.5s ease forwards 0.3s;
    }
    
    .nav-links.active > a:nth-of-type(4) {
        animation: navItemSlideIn 0.5s ease forwards 0.4s;
    }
    
    .nav-links.active > a:nth-of-type(5) {
        animation: navItemSlideIn 0.5s ease forwards 0.5s;
    }
    
    .menu-toggle {
        color: var(--coffee);
        display: block;
        z-index: 10;
    }
      /* Show mobile menu logo and social icons */
    .nav-links.active .mobile-menu-logo,
    .nav-links.active .mobile-social {
        display: flex;
    }
    
    /* Make sure toggle is always visible */
    .menu-toggle {
        color: var(--coffee);
        display: block;
        z-index: 1000;
    }
    
    /* Hide the header logo when mobile menu is active */
    .nav-links.active ~ .header-logo {
        opacity: 0;
        visibility: hidden;
    }

    /* Animations for mobile menu */
    @keyframes navSlideIn {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }
    
    @keyframes navSlideOut {
        from {
            right: 0;
        }
        to {
            right: -100%;
        }
    }
    
    @keyframes navItemSlideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes navItemSlideOut {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(20px);
        }
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
      .about,
    .brands,
    .purpose,
    .contact {
        padding: 80px 0;
    }
}

/* Coming Soon Styles */
.coming-soon-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    min-height: 400px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.coming-soon-content {
    max-width: 800px;    padding: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(171, 119, 67, 0.2); /* var(--caramel) shadow */
    border: 1px solid rgba(171, 119, 67, 0.1);
    position: relative;
    overflow: hidden;
}

.coming-soon-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--caramel) 0%, transparent 60%);
    opacity: 0.05;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.coming-soon-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--caramel);
    position: relative;
    display: inline-block;
}

.coming-soon-icon i {
    margin: 0 10px;
    position: relative;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--espresso);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.coming-soon-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--caramel), var(--vanilla));
    margin: 0 auto 30px;
    border-radius: 3px;
}

.coming-soon-subtext {
    font-style: italic;
    color: var(--almond);
    font-size: 1.1rem;
}

/* Animation Styles */
.slide-in-animation {
    animation: slideIn 1s ease-out forwards;
}

#horizon {
    font-family: 'Playfair Display', serif;
}

.fade-in-animation {
    animation: fadeIn 1.2s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.5s;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.bounce-animation {
    animation: bounce 2s ease infinite;
}

.pulse-btn-animation {
    position: relative;
    overflow: hidden;
}

.pulse-btn-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    animation: btnPulse 2s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes btnPulse {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Floating elements for coming soon section */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--caramel), var(--vanilla));
    pointer-events: none;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(10deg);
    }
    75% {
        transform: translateY(15px) rotate(5deg);
    }
}

/* Mobile menu logo and social icons */
.mobile-menu-logo {
    display: none;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 15%;
    margin-bottom: 30px;
    transform: scale(0.8);
    opacity: 0;
}

/* Show mobile menu logo when nav is active */
.nav-links.active .mobile-menu-logo {
    display: flex;
}

.mobile-logo {
    max-width: 180px;
    height: auto;
}

.mobile-social {
    display: none;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    z-index: 10;
    position: relative;
}

/* Show mobile social icons when nav is active */
.nav-links.active .mobile-social {
    display: flex;
}

/* .mobile-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border-color: var(--vanilla);
    background-color: var(--white);
    color: var(--espresso);
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: scale(0);
} */

.mobile-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--espresso);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--vanilla);
}

.nav-links.active .mobile-social .social-icon:nth-child(1) {
    animation: socialIconPop 0.4s ease forwards 0.6s;
}

.nav-links.active .mobile-social .social-icon:nth-child(2) {
    animation: socialIconPop 0.4s ease forwards 0.8s;
}

.nav-links.active .mobile-social .social-icon:nth-child(3) {
    animation: socialIconPop 0.4s ease forwards 1s;
}

/* .mobile-social .social-icon:hover {
    background-color: var(--caramel);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg) scale(1.1) !important;
    box-shadow: 0 8px 15px rgba(171, 119, 67, 0.3);
    transition: all 0.5s ease;
} */

@keyframes mobileLogoEnter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mobileSocialEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialIconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}