body {
    background-color: #e2e6e5;
}

/* Navigation Styles */
.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #344e45; /* Darker green requested */
    padding: 10px 5%;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

.custom-navbar .nav-left {
    display: flex;
    align-items: center;
}

.custom-navbar .navbar-logo-left {
    height: 45px;
    object-fit: contain;
}

.brand-link {
    text-decoration: none;
    display: flex;
}

.custom-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-navbar .sponsored-text {
    color: #e2e8e4;
    font-family: 'Outfit', 'Inter', 'Segoe UI', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.custom-navbar .navbar-logo-right {
    height: 73px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .custom-navbar {
        padding: 10px 15px;
        height: 60px;
    }
    
    .custom-navbar .navbar-logo-left {
        height: 35px;
    }
    
    .custom-navbar .navbar-logo-right {
        height: 40px;
    }
    
    .custom-navbar .sponsored-text {
        gap: 8px;
    }
    
    .custom-navbar .nav-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .custom-navbar .sponsored-text {
        display: none;
    }
    .custom-navbar .navbar-logo-left {
        height: 35px;
    }
    .custom-navbar .navbar-logo-right {
        height: 40px;
    }
}




.nav-back-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 5%;
}

.nav-back-link:hover {
    opacity: 0.8;
}

.nav-back-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Styles */
.main-footer {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 380px;
    background-image: url('https://assets.dilanitb1997.cdn.klikfilm.com/images/background/footer_bg.png'); /* Adjusted path for CSS file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    box-sizing: border-box;
}

.footer-biscuit {
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    z-index: 2;
}

.footer-biscuit img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
}

.footer-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 100px;
    z-index: 5;
    text-align: center;
}

.sponsored-label {
    color: #e2e8e4;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.matcha-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.footer-ornament-bowl {
    position: absolute;
    bottom: 20px;
    right: 8%;
    width: 200px;
    z-index: 3;
}

.footer-ornament-bowl img {
    width: 100%;
    display: block;
    animation: floatingEffect 5s ease-in-out infinite;
    will-change: transform;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2));
}

@keyframes floatingEffect {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@media (max-width: 768px) {
    .main-footer {
        height: 380px;
    }
    .footer-biscuit {
        width: 300px;
        top: -120px;
    }
    .matcha-logo {
        height: 90px;
    }
    .footer-ornament-bowl {
        width: 140px;
    }
}

@media (max-width: 600px) {
    .main-footer {
        height: 380px;
        padding-bottom: 120px;
    }
    .footer-biscuit {
        width: 180px;
        top: -70px;
    }
    .matcha-logo {
        height: 70px;
    }
    .footer-ornament-bowl {
        width: 100px;
        bottom: 10px;
        right: 5%;
    }
    .sponsored-label {
        font-size: 0.65rem;
    }
}
