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

.simple-carousel,
.carousel-slide,
.desserts-image,
.desserts-img {
    transform: translateZ(0);
}

body, html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

#navbar {
    background-color: #b69278;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* NAVBAR DROPDOWN ANIMATION - Slower and smoother */
#navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: auto;
    padding: 0;
    
    /* Add these for animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease; /* Slower animation */
    opacity: 0;
}

#navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px; /* Crucial for all-caps readability */
  text-transform: uppercase; /* This is what makes it all caps */
  position: relative;
  transition: color 0.3s ease;
  display: block;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Hover underline effect */
#navbar .nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #8B5E3C; /* warm wooden accent */
  transition: width 0.3s ease;
}

#navbar .nav-links li a:hover {
  color: #8B5E3C;
}

#navbar .nav-links li a:hover::after {
  width: 100%;
}

.custom-navbar {
  height: 70px;          
  z-index: 1050;          /* above carousel */
}

/* For mobile screens */
@media (max-width: 768px) {
    /* If your mobile menu expands and increases navbar height */
    .custom-navbar,
    #navbar {
        min-height: 70px; /* Keep minimum height */
    }
    
    .hero-wrapper {
        min-height: calc(100vh - 70px);
    }
}

.hero-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 16px 40px;
    border-radius: 50px;
    background-color: #f0d9c4;
    color: #332216;
    text-decoration: none;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.3s ease;

    animation: buttonFadeIn 1.2s ease forwards;
    opacity: 0;
}

.hero-button:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-button:hover {
    text-decoration: underline;
    color: #332216;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

/* All slides */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: heroSlideshow 24s infinite;
}

/* Stagger each slide */
.hero-slide:nth-of-type(1) { animation-delay: 0s; }
.hero-slide:nth-of-type(2) { animation-delay: 6s; }
.hero-slide:nth-of-type(3) { animation-delay: 12s; }
.hero-slide:nth-of-type(4) { animation-delay: 18s; }

/* Fade + slow zoom */
@keyframes heroSlideshow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    8% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: scale(1.08); /* slow zoom */
    }
    41% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Text overlay */
.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
    opacity: 0;
    animation: textFadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-slide {
    z-index: 1;
}

.hero-content {
    z-index: 3;
}


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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-wrapper {
        height: 70vh;
    }

    .hero-text {
        margin-top: -30px;
        margin-bottom: 20px;
    }
}

/* Add these styles to your existing CSS */

.hero-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid; 
    place-items: center; 
    z-index: 2;
    pointer-events: none;
    /* Add these to ensure no cutting off */
    overflow: hidden;
}

.hero-overlay-image img.is-visible {
    opacity: 0.9; /* your existing value */
}

.hero-overlay-image img {
    /* Use max dimensions instead of fixed width */
    max-width: 80vw; /* Viewport width percentage */
    max-height: 80vh; /* Viewport height percentage */
    width: 900px; /* Maintain aspect ratio */
    height: 550px; /* Maintain aspect ratio */
    opacity: 0;
    transition: opacity 0.6s ease-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    /* Ensure it stays within bounds */
    object-fit: contain;
}

/* Add media queries to adjust size for different screens */
@media (max-width: 768px) {
    .hero-overlay-image img {
        max-width: 90vw; /* Larger percentage on small screens */
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero-overlay-image img {
        max-width: 95vw; /* Almost full width on very small screens */
        max-height: 50vh;
    }
}

.hero-text {
    z-index: 3; /* Ensure text stays on top */
}

@keyframes fadeInOverlay {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ensure hero-wrapper has position relative */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    height: 100vh; /* or your desired height */ 
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* Add these styles to your existing global.css */

/* Clean Hamburger Styles - REPLACE your existing .hamburger and animation styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: absolute; /* ← Change to absolute positioning */
    right: 1.5rem; /* ← Position from right side */
    top: 50%; /* ← Center vertically */
    transform: translateY(-50%); /* ← Perfect vertical centering */
    outline: none;

    /* Force remove all outlines */
    outline: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    
    /* Prevent any visual feedback */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Simple 3-line hamburger icon */
.hamburger__icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
    transition: all 0.6s ease; /* Slowed from 0.3s to 0.6s */
}

.hamburger__icon::before,
.hamburger__icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    left: 0;
    transition: all 0.6s ease; /* Slowed from 0.3s to 0.6s */
}

.hamburger__icon::before {
    top: -8px;
}

.hamburger__icon::after {
    bottom: -8px;
}

/* Transform to X when active */
.hamburger.active .hamburger__icon {
    background-color: transparent;
    transition-delay: 0.1s; /* Small delay for smoothness */
}

.hamburger.active .hamburger__icon::before {
    transform: rotate(45deg);
    top: 0;
    transition: transform 0.6s ease 0.1s, bottom 0.6s ease 0.1s; /* Added delay */
}

.hamburger.active .hamburger__icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Desktop - override the hidden state */
@media (min-width: 769px) {
    #navbar .nav-links {
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Show hamburger button */
    .hamburger {
        display: block;
    }
    
    /* Hide nav links by default on mobile - with animation setup */
    #navbar .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #b88c6d;
        padding: 0; /* Start with 0 padding */
        margin: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
        transition: max-height 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                    opacity 0.6s ease,
                    padding 0.6s ease;
    }
    
    /* Show nav links when active - with smooth animation */
    #navbar .nav-links.active {
        max-height: 500px; /* Adjust based on your content */
        opacity: 1;
        padding: 1rem 0; /* Animate padding in */
    }
    
    /* Animate each nav item with delay */
    #navbar .nav-links li {
        width: 100%;
        text-align: center;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    
    #navbar .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Stagger the animation for each item */
    #navbar .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    #navbar .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    #navbar .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    #navbar .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    
    #navbar .nav-links li a:hover {
        background-color: rgba(139, 94, 60, 0.2);
        color: white;
        transition: background-color 0.4s ease, color 0.4s ease;
    }
    
    /* Adjust hover effect for mobile */
    #navbar .nav-links li a::after {
        display: none;
    }
}

/* Desktop styles (768px and up) */
@media (min-width: 769px) {
    /* Position logo to the left */
    #navbar .logo {
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Center the nav links */
    #navbar .nav-links {
        margin: auto;
        display: flex !important;
    }
    
    /* Hide hamburger on desktop */
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .about-image.mobile-image {
        margin-bottom: 1.5rem; /* adjust as needed */
    }
}

/* DEFAULT: desktop + tablet */
.mobile-image {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
        margin: 30px auto 40px;
        max-width: 500px;
    }
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: #f0d9c4; /* Warm off-white */
    position: relative;
    overflow: hidden;
}

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

/* Desktop Layout */
.about-content {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(184, 140, 109, 0.15);
    height: 600px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover .about-img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(184, 140, 109, 0.1) 100%);
}

/* Text Content */
.about-text {
    padding: 40px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b88c6d;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fade-in .section-title {
    opacity: 1;
    transform: translateX(0);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.fade-in .subtitle {
    opacity: 1;
    transform: translateX(0);
}

.text-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in .text-content p {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger paragraph animations */
.fade-in .text-content p:nth-child(1) {
    transition-delay: 0.6s;
}
.fade-in .text-content p:nth-child(2) {
    transition-delay: 0.8s;
}
.fade-in .text-content p:nth-child(3) {
    transition-delay: 1s;
}
.fade-in .text-content p:nth-child(4) {
    transition-delay: 1.2s;
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 140, 109, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 1.4s, transform 0.8s ease 1.4s;
}

.fade-in .signature {
    opacity: 1;
    transform: translateY(0);
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #b88c6d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 20px;
    }
    
    .about-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
        transform: translateY(20px);
    }
    
    .about-image {
        height: 400px;
        order: 2; /* Image comes after text on mobile */
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text {
        padding: 0;
        order: 1; /* Text comes first on mobile */
    }
    
    .section-title {
        font-size: 1rem;
        letter-spacing: 2.5px;
        transform: translateY(-20px);
    }
    
    .fade-in .section-title {
        transform: translateY(0);
    }
    
    .subtitle {
        font-size: 2.2rem;
        margin-bottom: 25px;
        transform: translateY(-20px);
    }
    
    .fade-in .subtitle {
        transform: translateY(0);
    }
    
    .text-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: center;
        transform: translateY(-20px);
    }
    
    .fade-in .text-content p {
        transform: translateY(0);
    }
    
    .signature {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    /* Adjust animation delays for mobile */
    .fade-in .text-content p:nth-child(1) {
        transition-delay: 0.4s;
    }
    .fade-in .text-content p:nth-child(2) {
        transition-delay: 0.6s;
    }
    .fade-in .text-content p:nth-child(3) {
        transition-delay: 0.8s;
    }
    .fade-in .text-content p:nth-child(4) {
        transition-delay: 1s;
    }
    
    .fade-in .signature {
        transition-delay: 1.2s;
    }
}

@media (max-width: 768px) {
    .about-us-section > .container:nth-of-type(1) {
        margin-bottom: 65px;
    }
}


/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-image {
        height: 500px;
    }
    
    .subtitle {
        font-size: 2.4rem;
    }
    
    .text-content p {
        font-size: 1.1rem;
    }
}

/* ===== MATCHA CAROUSEL ===== */
.matcha-carousel {
    position: relative;
    overflow: hidden;
}

.matcha-carousel .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;   /* ← THIS FIXES EVERYTHING */
}

.matcha-carousel .matcha-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.matcha-carousel .matcha-img.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* keep your existing hover zoom */
.matcha-carousel:hover .matcha-img.active {
    transform: scale(1.03);
}

/* ===== ARROWS ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    line-height: 1;

    padding: 0;
    
}

.matcha-carousel:hover .carousel-btn {
    opacity: 1;
}


/* ===== DOTS ===== */
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

/* MATCHA arrows positioning */
.matcha-carousel .carousel-btn.prev {
    left: 15px;
}

.matcha-carousel .carousel-btn.next {
    right: 15px;
}

.matcha-carousel .carousel-btn:hover {
    background: rgba(0,0,0,0.65);
}

/* Signature Matcha Section */
.matcha-section {
    padding: 100px 0;
    background-color: #f9f7f2; /* Warm off-white with slight green undertone */
    position: relative;
    overflow: hidden;
}

.matcha-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 206, 174, 0.03) 0%, rgba(184, 140, 109, 0.03) 100%);
    z-index: 0;
}

.matcha-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.matcha-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Text Content (Left) */
.matcha-text {
    padding: 40px 0;
}

.matcha-text .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2d5935; /* Matcha green accent */
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.matcha-content.fade-in .section-title {
    opacity: 1;
    transform: translateX(0);
}

.matcha-text .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.matcha-content.fade-in .subtitle {
    opacity: 1;
    transform: translateX(0);
}

.matcha-story p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.matcha-content.fade-in .matcha-story p {
    opacity: 1;
    transform: translateX(0);
}

/* Matcha Features */
.matcha-features {
    margin: 40px 0;
    display: grid;
    gap: 30px;
}

.feature {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.matcha-content.fade-in .feature {
    opacity: 1;
    transform: translateX(0);
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2d5935 !important; /* Matcha green */
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(45, 89, 53, 0.3);
    display: inline-block;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Stagger feature animations */
.matcha-content.fade-in .feature:nth-child(1) {
    transition-delay: 0.6s;
}
.matcha-content.fade-in .feature:nth-child(2) {
    transition-delay: 0.8s;
}
.matcha-content.fade-in .feature:nth-child(3) {
    transition-delay: 1s;
}

/* Stagger paragraph animations */
.matcha-content.fade-in .matcha-story p:nth-child(1) {
    transition-delay: 0.2s;
}
.matcha-content.fade-in .matcha-story p:last-child {
    transition-delay: 1.2s;
}

/* CTA Button */
.matcha-cta {
    margin-top: 50px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease 1.4s, transform 0.8s ease 1.4s;
}

.matcha-content.fade-in .matcha-cta {
    opacity: 1;
    transform: translateX(0);
}

.cta-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2d5935;
    padding: 14px 32px;
    border: 2px solid #2d5935;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2d5935;
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: white;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Image Container (Right) */
.matcha-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 89, 53, 0.1);
    height: 650px;
}

.matcha-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}



.matcha-image .image-overlay {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 89, 53, 0.1) 100%);
}

.matcha-image .image-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        transparent
    );

    color: white;
    text-align: center;

    opacity: 0;
    transform: translateY(-12px);

    z-index: 4;
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.matcha-carousel:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* DEFAULT: desktop + tablet */
.matcha-image.mobile-only {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .matcha-image.desktop-only {
        display: none;
    }

    .matcha-image.mobile-only {
        display: block;
    }
}


@media (max-width: 768px) {
    .intro-text {
        margin-bottom: 0;
    }

    .matcha-image {
        margin: 1.5rem 0;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {

    .matcha-section {
        padding: 60px 20px;
    }
    
    /* Make the entire content area a grid container */
    .matcha-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}


     /* The image goes in the middle */
    .matcha-image {
        height: 400px;
        width: 100%;
        max-width: 500px;
    }
    /* Title and subtitle stay at top */
.section-title {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px; /* Add bottom margin */
}

.subtitle {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px; /* Add bottom margin */
    font-size: 2.2rem;
    transform: translateY(-20px);
}
      /* First paragraph stays at top */
    .matcha-story p:first-of-type {
        width: 100%;
        max-width: 500px;
        margin: 20px auto 0;
    }

    /* Mobile text adjustments */
    .section-title {
    font-size: 1rem;
    letter-spacing: 2.5px;
    transform: translateY(-20px);
}
    
    .matcha-content.fade-in .section-title {
        transform: translateY(0);
    }

    .matcha-text {
        display: block;
    }
    
    .matcha-text .subtitle {
        font-size: 2.2rem;
        margin-bottom: 25px;
        transform: translateY(-20px);
    }
    
    .matcha-content.fade-in .subtitle {
        transform: translateY(0);
    }
    
    .matcha-story p {
        text-align: center;
        transform: translateY(-20px);
    }
    
    .matcha-content.fade-in .matcha-story p {
        transform: translateY(0);
    }
    
    /* Features mobile styling */
    .matcha-features {
        gap: 25px;
        margin: 35px 0;
    }
    
    .feature {
        transform: translateY(-20px);
    }
    
    .matcha-content.fade-in .feature {
        transform: translateY(0);
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    /* CTA mobile styling */
    .matcha-cta {
        margin-top: 40px;
        transform: translateY(-20px);
    }
    
    .matcha-content.fade-in .matcha-cta {
        transform: translateY(0);
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    /* Adjust animation delays for mobile */
    .matcha-content.fade-in .matcha-story p:nth-child(1) {
        transition-delay: 0.2s;
    }
    .matcha-content.fade-in .feature:nth-child(1) {
        transition-delay: 0.4s;
    }
    .matcha-content.fade-in .feature:nth-child(2) {
        transition-delay: 0.6s;
    }
    .matcha-content.fade-in .feature:nth-child(3) {
        transition-delay: 0.8s;
    }
    .matcha-content.fade-in .matcha-story p:last-child {
        transition-delay: 1s;
    }
    .matcha-content.fade-in .matcha-cta {
        transition-delay: 1.2s;
    }

}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .matcha-content {
        gap: 40px;
    }
    
    .matcha-image {
        height: 550px;
    }
    
    .matcha-text .subtitle {
        font-size: 2.4rem;
    }
    
    .matcha-features {
        gap: 25px;
    }
    
    .matcha-story p {
        font-size: 1rem;
    }
}

/* Teishoku Section */

.teishoku-section {
    padding: 100px 0;
    background-color: #f0d9c4;
    position: relative;
    overflow: hidden;
}

.teishoku-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 140, 109, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

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

/* Header Section */
.teishoku-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.teishoku-header.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.teishoku-header .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b88c6d;
    margin-bottom: 15px;
}

.teishoku-header .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.teishoku-header .section-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.teishoku-footer .section-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TEISHOKU CAROUSEL ===== */

.teishoku-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 1.5rem; /* reduce bottom space */
}

.teishoku-carousel-track {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
}

/* Images */
.teishoku-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition:
        opacity 0.8s ease,
        transform 1s ease;
}

.teishoku-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* subtle white fade layer */
.teishoku-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
}

/* Caption (top) */
.teishoku-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        transparent
    );
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.teishoku-carousel:hover .teishoku-caption,
.teishoku-nav:hover ~ .teishoku-caption {
    opacity: 1;
    transform: translateY(0);
}

.teishoku-caption .caption-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

/* Arrows */
.teishoku-nav {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.teishoku-prev { left: 14px; }
.teishoku-next { right: 14px; }

.teishoku-nav:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.05);
}

/* Dots */
.teishoku-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
}

.teishoku-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.teishoku-dot.active {
    background: white;
}


/* Footer Section */
.teishoku-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 1;
}

.teishoku-footer.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-note {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Menu Button */
.menu-button {
    margin-top: 20px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b88c6d;
    padding: 16px 40px;
    border: 2px solid #b88c6d;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.menu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #b88c6d;
    transition: left 0.4s ease;
    z-index: -1;
}

.menu-button:hover {
    color: white;
}

.menu-button:hover::before {
    left: 0;
}

.menu-button:active {
    transform: scale(0.98);
}

/* Mobile Layout */
@media (max-width: 768px) {
    .teishoku-section {
        padding: 60px 20px;
    }
    
    .teishoku-header {
        margin-bottom: 60px;
        transform: translateY(20px);
    }
    
    .teishoku-header.fade-in {
        transform: translateY(0);
    }
    
    .teishoku-header .section-subtitle {
        font-size: 2.2rem;
    }
    
    .teishoku-header .section-intro {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .teishoku-content {
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .teishoku-image-wrapper {
        height: auto; /* Ensure this is also auto on mobile */
        /* Remove or comment out the height: 350px line if it exists */
    }
    
    .teishoku-item {
        transform: translateY(20px);
    }
    
    .teishoku-item.fade-in {
        transform: translateY(0);
    }
    
    .teishoku-details {
        transform: translateY(10px) !important;
        margin-top: 10px !important;
    }
    
    .teishoku-name {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .teishoku-description p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .teishoku-includes {
        padding: 20px;
        margin: 25px 0;
    }
    
    .includes-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .includes-list li {
        padding: 6px 0 6px 15px;
    }
    
    .teishoku-footer {
        padding-top: 10px;
        transform: translateY(20px);
    }
    
    .teishoku-footer.fade-in {
        transform: translateY(0);
    }
    
    .footer-note {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .menu-button {
        padding: 14px 32px;
        font-size: 0.85rem;
    }
    
    .teishoku-label {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .teishoku-header .section-subtitle {
        font-size: 2.5rem;
    }
    
    .teishoku-image-wrapper {
        max-width: 800px;
        height: 450px;
    }
    
    .teishoku-name {
        font-size: 1.2rem;
    }
    
    .teishoku-description p {
        font-size: 1rem;
    }
     .teishoku-details {
        transform: translateY(-10px) !important;
    }
}

/* Animation delays for staggered items */
.teishoku-item:nth-child(1) {
    transition-delay: 0.2s;
}
.teishoku-item:nth-child(2) {
    transition-delay: 0.4s;
}
.teishoku-item:nth-child(3) {
    transition-delay: 0.6s;
}
.teishoku-footer {
    transition-delay: 0.8s;
}

/* ===== TEISHOKU IMAGE CAROUSEL (SAFE NAMES) ===== */

.teishoku-carousel {
    position: relative;
    min-height: 360px;
}

/* Stack slides */
.teishoku-carousel .teishoku-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

/* Active slide */
.teishoku-carousel .teishoku-item.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.teishoku-prev { left: 10px; }
.teishoku-next { right: 10px; }

/* Dots */
.teishoku-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    gap: 1px;
    pointer-events: auto;
}

.teishoku-dot {
    width: 12px;     
    height: 12px; 
    background: white;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    margin: 0 6px;
    cursor: pointer;
}

.teishoku-dot.is-active {
    background: white;
}

/* ===== TEISHOKU CAROUSEL VISUAL TWEAKS ===== */

/* Image hover zoom */
.teishoku-image-wrapper .base-image {
    transition: transform 0.6s ease;
}

.teishoku-image-wrapper:hover .base-image {
    transform: scale(1.06);
}

/* ===== ARROWS ===== */
.teishoku-nav {
    top: 55%;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    padding: 0;
    position: absolute;
    transition: background 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%);
    border: none;
    font-size: 2rem;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 20;
}

.teishoku-nav:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-50%) scale(1.05);
}

/* ===== FIXED DESKTOP HEIGHT FOR TEISHOKU CAROUSEL ===== */
@media (min-width: 1025px) {
    .teishoku-carousel {
        height: 560px; /* adjust if you want taller */
    }

    .teishoku-carousel .teishoku-item {
        height: 100%;
    }

    .teishoku-image-wrapper {
        height: 100%;
    }

    .teishoku-image-wrapper .base-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/** DESSERTS SECTION **/


.desserts-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 12;
}

.desserts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.desserts-dot.active {
    background: white;
    transform: scale(1.3);
}


.simple-carousel {
    margin-top: 130px;
    position: relative;
    width: 100%;
    height: 650px;
    display: block;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .simple-carousel {
        height: 400px;
        margin-top: 10px;
    }
}

.carousel-nav {
    position: absolute;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.3s ease, transform 0.3s ease;
}

/* Default: desktop */
.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }
}


.desserts-image-overlay,
.image-caption {
    pointer-events: none;
}


.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.65);
}
.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
}

.carousel-slide.active::after {
    animation: whiteFade 0.35s ease;
}

@keyframes whiteFade {
    0%   { opacity: 0.25; }
    100% { opacity: 0; }
}

/* Desserts Section */
.desserts-section {
    padding: 100px 0 40px;
    background-color: #fef8f5;
    position: relative;
    overflow: hidden;
}

.desserts-section::before {
    overflow: hidden;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 140, 109, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

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

/* Content Layout */
.desserts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    align-items: start;
}

.desserts-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container (Left) */
.desserts-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(184, 140, 109, 0.15);
}

.desserts-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.desserts-image:hover .desserts-img {
    transform: scale(1.03);
}

.desserts-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(184, 140, 109, 0.1) 100%);
}

.desserts-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #b88c6d;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Text Content (Right) */
.desserts-text {
    padding: 40px 0 40px 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b88c6d;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.desserts-content.fade-in .section-title {
    opacity: 1;
    transform: translateX(0);
}

.desserts-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.desserts-content.fade-in .desserts-subtitle {
    opacity: 1;
    transform: translateX(0);
}

.desserts-intro p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.desserts-content.fade-in .desserts-intro p {
    opacity: 1;
    transform: translateX(0);
}

/* Dessert Features */
.desserts-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.dessert-feature {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.desserts-content.fade-in .dessert-feature {
    opacity: 1;
    transform: translateX(0);
}

.d-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b88c6d;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(184, 140, 109, 0.2);
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Stagger feature animations */
.desserts-content.fade-in .dessert-feature:nth-child(1) {
    transition-delay: 0.8s;
}
.desserts-content.fade-in .dessert-feature:nth-child(2) {
    transition-delay: 1s;
}
.desserts-content.fade-in .dessert-feature:nth-child(3) {
    transition-delay: 1.2s;
}
.desserts-content.fade-in .dessert-feature:nth-child(4) {
    transition-delay: 1.4s;
}

/* Note Section */
.desserts-note {
    margin-top: 50px;
    padding: 25px;
    background-color: rgba(184, 140, 109, 0.05);
    border-left: 4px solid #b88c6d;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 1.6s, transform 0.8s ease 1.6s;
}

.desserts-content.fade-in .desserts-note {
    opacity: 1;
    transform: translateX(0);
}

.desserts-note p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Button */
.desserts-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b88c6d;
    padding: 16px 40px;
    border: 2px solid #b88c6d;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.4s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 1.8s, transform 0.8s ease 1.8s, background-color 0.4s ease, color 0.4s ease;
}

.desserts-content.fade-in .desserts-button {
    opacity: 1;
    transform: translateX(0);
}

.desserts-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #b88c6d;
    transition: left 0.4s ease;
    z-index: -1;
}

.desserts-button:hover {
    color: white;
}

.desserts-button:hover::before {
    left: 0;
}

/* Mobile Layout */
@media (max-width: 768px) {

     .simple-carousel {
        order: 1;
    }

    .desserts-text {
        order: 2;
    }

    .desserts-features {
        order: 3;
    }

    .desserts-note {
        order: 4;
    }

    .desserts-button {
        order: 5;
    }

    .desserts-section {
        padding: 60px 20px;
    }
    
    .desserts-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        transform: translateY(20px);
    }
    
    /* Image comes first on mobile */
    .desserts-image {
        height: 400px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: 1;
    }
    
    .desserts-text {
        padding: 0;
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1rem;
        letter-spacing: 2.5px;
        transform: translateY(-20px);
    }
    
    .desserts-content.fade-in .section-title {
        transform: translateY(0);
    }
    
    .desserts-subtitle {
        font-size: 2.2rem;
        margin-bottom: 20px;
        transform: translateY(-20px);
    }
    
    .desserts-content.fade-in .desserts-subtitle {
        transform: translateY(0);
    }
    
    .desserts-intro p {
        font-size: 1rem;
        text-align: center;
        transform: translateY(-20px);
    }
    
    .desserts-content.fade-in .desserts-intro p {
        transform: translateY(0);
    }
    
    .desserts-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .dessert-feature {
        transform: translateY(-20px);
    }
    
    .desserts-content.fade-in .dessert-feature {
        transform: translateY(0);
    }
    
    .desserts-note {
        margin-top: 30px;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.6s ease;
    }
    
    .desserts-content.fade-in .desserts-note {
        opacity: 1;
    }
    
    .desserts-button {
        margin-top: 30px;
        padding: 14px 32px;
        font-size: 0.85rem;
        transform: translateY(-20px);
    }
    
    .desserts-content.fade-in .desserts-button {
        transform: translateY(0);
    }
    
    /* Adjust animation delays for mobile */
    .desserts-content.fade-in .desserts-intro p {
        transition-delay: 0.4s;
    }
    .desserts-content.fade-in .dessert-feature:nth-child(1) {
        transition-delay: 0.6s;
    }
    .desserts-content.fade-in .dessert-feature:nth-child(2) {
        transition-delay: 0.8s;
    }
    .desserts-content.fade-in .dessert-feature:nth-child(3) {
        transition-delay: 1s;
    }
    .desserts-content.fade-in .dessert-feature:nth-child(4) {
        transition-delay: 1.2s;
    }
    .desserts-content.fade-in .desserts-note {
        transition-delay: 1.4s;
    }
    .desserts-content.fade-in .desserts-button {
        transition-delay: 1.6s;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .desserts-content {
        gap: 40px;
    }
    
    .desserts-image {
        height: 550px;
    }
    
    .desserts-text {
        padding: 20px 0 20px 30px;
    }
    
    .desserts-subtitle {
        font-size: 2.4rem;
    }
    
    .desserts-features {
        gap: 25px;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 2000px) {

    .desserts-content {
        grid-auto-rows: auto;
    }

    .desserts-note {
        margin-top: -16px;
        grid-column: 1 / -1;   /* span under image + text */
        padding: 20px 30px;
    }
}

/* Desserts image caption - appears ONLY on hover */
.desserts-image .image-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    text-align: center;
    opacity: 0; /* Hidden by default */
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
    pointer-events: none; /* So it doesn't interfere with hovering */
}

.simple-carousel:hover .image-caption {
    opacity: 1; /* Appears on hover */
    transform: translateY(0);
}

.desserts-image .caption-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.simple-carousel .desserts-image {
    height: 100%;
}

.simple-carousel .desserts-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.locations-section {
    padding: 80px 20px;
    background-color: #f0d9c4;
    margin: 0 auto;
}

.locations-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.locations-section.fade-in-visible .locations-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Visible state */
.locations-section.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #b88c6d;
}

/* Override any mobile-specific styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 17px !important; /* Same size on mobile */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

.section-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
}

.locations-container {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

/* Each location column (left and right) */
.location-column {
    flex: 1;
    min-width: 400px;
    max-width: 500px;
}

/* Each location item with image on top, description below */
.location-item {
    gap: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.locations-section.fade-in-visible .location-item {
    opacity: 1;
    transform: translateY(0);
}

.location-item:nth-child(1) {
    animation-delay: 0.2s;
}

.location-item:nth-child(2) {
    animation-delay: 0.4s;
}

.location-item:nth-child(3) {
    animation-delay: 0.6s;
}

.location-item:nth-child(4) {
    animation-delay: 0.8s;
}

.location-image {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.location-image img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.location-info {
    flex-grow: 1;
}

.location-info h3 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b88c6d;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(184, 140, 109, 0.2);
}

.location-details {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsive design - MOBILE */
@media (max-width: 768px) {
    .location-column {
        min-width: 100%;
        max-width: 100%;
    }
    
    .location-image img {
        height: 220px;
    }
    
    .locations-container {
        gap: 40px;
    }
}

.signoff {
    text-align: center;
}

.location-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #222;
    display: block;
    margin-top: 10px;
}

.location-details p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.location-details .address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 6px;
}

/* Address link styling */
.location-details .address a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    color: #333;
    text-decoration: none;
    display: block;
    margin-top: 4px;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.location-details .address a:hover {
    color: #b8860b;
    text-decoration: underline;
}

/* Business Hours label styling (uppercase Montserrat) */
.location-details .hours {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 6px;
    margin-top: 16px;
}

/* The hours text that follows */
.location-details .hours + span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #222;
    display: block;
    margin-bottom: 4px;
}

/* Phone label styling (uppercase Montserrat) */
.location-details .phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 6px;
    margin-top: 16px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .location-item {
        flex-direction: column;
        gap: 30px;
    }
    
    .location-image img {
        height: 250px;
    }
    
    .locations-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

.locations-section h2 {
    margin-top: 0;
}

.bhutan-image img {
    width: 80%; /* Percentage of parent container */
    max-width: 900px; /* Won't exceed original size */
    height: auto; /* Height adjusts automatically */
}

.bhutan-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer {
    background-color: #b69278;
    color: #fff;
    padding: 70px 20px 30px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo styling - Centered at top */
.footer-logo {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.footer-logo img {
    max-width: 450px; /* Adjust size as needed */
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

/* Footer Grid Container */
.footer-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    width: 100%;
    align-items: start;
}

/* Footer Sections */
.footer-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
}

.contact-icon {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.contact-link:hover {
    color: #f0d9c4;
    transform: translateX(3px);
}

/* Social Media Section */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 28px; /* Same as contact-details gap */
    width: 100%;
}

/* Style social links to match contact items */
.social-link {
    display: flex;
    align-items: flex-start; /* Match contact-item */
    gap: 18px; /* Same as contact-item gap */
    color: #fff;
    text-decoration: none;
    padding: 0; /* Remove padding */
    background: transparent; /* Remove background */
    border-radius: 0; /* Remove border radius */
    transition: all 0.3s ease;
    width: 100%;
    max-width: none; /* Remove max-width */
}

/* Add icon wrapper to match contact-icon */
.social-link i {
    font-size: 1.2rem; /* Same as contact-icon */
    background: rgba(255, 255, 255, 0.1); /* Same background */
    width: 44px; /* Same size */
    height: 44px; /* Same size */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circle shape */
    flex-shrink: 0;
    margin-top: 2px; /* Same as contact-icon */
    color: #fff;
}

/* Style the text container to match contact-info */
.social-link .social-text-container {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Same as contact-info gap */
    flex: 1;
}

/* Style the platform label to match contact-label */
.social-link .social-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Style the platform name to match contact-link */
.social-link .social-platform {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

/* Hover effect to match contact-link */
.social-link:hover .social-platform {
    color: #f0d9c4;
    transform: translateX(3px);
}

.social-link:hover i {
    background: rgba(255, 255, 255, 0.15); /* Slightly lighter on hover */
}

/* ===== FOOTER MOBILE FIX ===== */
@media (max-width: 768px) {

    .site-footer {
        padding: 60px 20px 40px;
        align-items: center;
        text-align: center;
    }

    /* Logo */
    .footer-logo {
        margin-bottom: 40px;
    }

    .footer-logo img {
        max-width: 280px;
    }

    /* Switch grid → stacked */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 40px;
    }

    /* Center sections */
    .footer-section {
        align-items: center;
    }

    .footer-heading {
        text-align: center;
    }

    /* Center contact + social items */
    .contact-details,
    .social-media {
        align-items: center;
    }

    .contact-item,
    .social-link {
        justify-content: center;
        text-align: left; /* keeps label readability */
        max-width: 320px;
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        text-align: center;
        margin-top: 30px;
    }

    .footer-bottom p {
        margin: 6px 0;
        font-size: 0.85rem;
    }
}


#circle-label {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

html {
    scroll-behavior: smooth;
}

/* Add space after the first container */
.container:nth-of-type(2) {
    margin-bottom: 60px; 
}

