/* ===== CSS Reset & Variables ===== */
*,
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ========== CSS VARIABLES ========== */
        :root {
            --dark-brown: #2c1810;
            --medium-brown: #5c3d2e;
            --light-brown: #a67c52;
            --golden: #d4af37;
            --cream: #f5e6d3;
            --white: #ffffff;
            --black: #0a0a0a;
        }

        /* ========== BODY STYLES ========== */
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--black);
            color: var(--cream);
            overflow-x: hidden;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

:root {
    /* Colors */
    --color-offwhite: #FAF9F6;
    --color-offwhite-dark: #F5F4F1;
    --color-golden: #C9A962;
    --color-golden-light: #D4BC7D;
    --color-golden-dark: #B8943D;
    --color-text-dark: #2C2C2C;
    --color-text-muted: #6B6B6B;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    /* Spacing */
    --navbar-height: 80px;
    --container-padding: clamp(24px, 5vw, 80px);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-dropdown: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-offwhite);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: var(--color-offwhite);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--container-padding);
    right: var(--container-padding);
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 98, 0.3) 20%, 
        rgba(201, 169, 98, 0.3) 80%, 
        transparent
    );
}

.navbar.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0 var(--container-padding);
    max-width: 1600px;
    margin: 0 auto;
}

/* ===== Logo ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 100px;   /* change size if needed */
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #2c1810; /* change color if needed */
}


.logo:hover a {
    transform: translateY(-1px);
}

.logo-icon {
    font-size: 28px;
    color: var(--color-golden);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(180deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-text-dark);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-golden), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
}

/* ===== Nav Links ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: 60px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-golden);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-golden-dark);
}

.nav-link.clickable {
    position: relative;
    overflow: hidden;
}

.link-underline {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-golden);
    transform: translateX(-101%);
    transition: transform var(--transition-smooth);
}

.nav-link.clickable:hover .link-underline {
    transform: translateX(0);
}

.dropdown-arrow {
    transition: transform var(--transition-smooth);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== Dropdown Menu ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 600px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-dropdown);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.04);
}

/* Invisible bridge for hover */
.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 25px;
    background: transparent;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 24px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.02));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.dropdown-item:hover {
    transform: translateX(4px);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.item-icon {
    font-size: 25px;
    color: black;
    margin-top: 2px;
    transition: transform var(--transition-bounce);
}

.dropdown-item:hover .item-icon {
    transform: rotate(90deg) scale(1.2);
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.item-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(to right, var(--color-offwhite), var(--color-offwhite-dark));
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.dropdown-footer span {
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-golden);
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.view-all:hover {
    color: var(--color-golden-dark);
    letter-spacing: 1.5px;
}

/* ===== Location Button ===== */
.location-btn {
    position: relative;
    margin-left: auto;
}

.location-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    color: var(--color-golden);
    transition: all var(--transition-smooth);
    position: relative;
}

.location-link:hover {
    background: linear-gradient(135deg, var(--color-golden), var(--color-golden-dark));
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.35);
}

.location-icon {
    transition: transform var(--transition-smooth);
}

.location-link:hover .location-icon {
    transform: scale(1.1);
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1.1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

.location-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-golden);
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
        --container-padding: 20px;
    }
    
    .nav-links {
        gap: 32px;
        margin-left: 40px;
    }
    
    .nav-link {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .dropdown-menu {
        min-width: calc(100vw - 40px);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .nav-item.has-dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-inner {
        grid-template-columns: 1fr;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .logo-text {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .location-link {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 20px;
        margin-left: 24px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
}

/* ===== Scrollbar Styling ===== */
.dropdown-inner::-webkit-scrollbar {
    width: 6px;
}

.dropdown-inner::-webkit-scrollbar-track {
    background: var(--color-offwhite);
    border-radius: 3px;
}

.dropdown-inner::-webkit-scrollbar-thumb {
    background: var(--color-golden-light);
    border-radius: 3px;
}

.dropdown-inner::-webkit-scrollbar-thumb:hover {
    background: var(--color-golden);
}

/* ===== Selection Styling ===== */
::selection {
    background: rgba(201, 169, 98, 0.3);
    color: var(--color-text-dark);
}
  /* ========== MENU SECTION ========== */
        .menu-section { padding: 8rem 2rem; background: linear-gradient(180deg, var(--black) 0%, #1a1209 50%, var(--black) 100%); position: relative; }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--golden);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--golden) 0%, #f4d03f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--cream);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .menu-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--golden);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .menu-card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-card:hover .menu-card-image {
            transform: scale(1.1);
        }

        .menu-card-content {
            padding: 2rem;
        }

        .menu-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--golden);
            margin-bottom: 0.8rem;
        }

        .menu-card p {
            color: var(--cream);
            opacity: 0.85;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .menu-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--golden);
        }

        /* ========== GIFT CARD SECTION ========== */
        .menu-section {
            padding: 8rem 2rem;
            background: linear-gradient(180deg, var(--black) 0%, #1a1209 50%, var(--black) 100%);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--golden);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--golden) 0%, #f4d03f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--cream);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .menu-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--golden);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .menu-card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-card:hover .menu-card-image {
            transform: scale(1.1);
        }

        .menu-card-content {
            padding: 2rem;
        }

        .menu-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--golden);
            margin-bottom: 0.8rem;
        }

        .menu-card p {
            color: var(--cream);
            opacity: 0.85;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .menu-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--golden);
        }

        /* ========== GIFT CARD SECTION ========== */
        .gift-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #1a1209 0%, var(--black) 100%);
            position: relative;
            overflow: hidden;
        }

        .gift-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .gift-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--golden) 0%, #f4d03f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .gift-content p {
            color: var(--cream);
            opacity: 0.85;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .gift-card-visual {
            background: linear-gradient(135deg, var(--golden) 0%, #f4d03f 100%);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .gift-card-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: cardShine 20s linear infinite;
        }

        @keyframes cardShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .gift-card-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--dark-brown);
            z-index: 1;
        }

        .gift-card-amount {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark-brown);
            z-index: 1;
        }

        .gift-card-text {
            font-size: 1rem;
            color: var(--dark-brown);
            opacity: 0.8;
            z-index: 1;
        }

        /* ========== LOCATION SECTION ========== */
        .location-section {
            padding: 8rem 2rem;
            background: var(--black);
        }

        .location-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--golden);
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--golden) 0%, #f4d03f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            color: var(--dark-brown);
            font-size: 1.3rem;
        }

        .info-text h3 {
            color: var(--golden);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .info-text p {
            color: var(--cream);
            opacity: 0.85;
            line-height: 1.8;
        }

        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark-brown);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            height: 80px;
            margin-bottom: 2rem;
            filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
             .hero {
            position: relative;
            height: 85vh;
            background: linear-gradient(135deg, #2c1810 0%, #4a2c1c 50%, #3d2517 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Coffee beans container */
        .coffee-drops {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Individual coffee bean */
        .drop {
            position: absolute;
            width: 20px;
            height: 28px;
            background: linear-gradient(135deg, #3d2817 0%, #5c4033 50%, #2c1810 100%);
            border-radius: 40% 40% 40% 40% / 50% 50% 50% 50%;
            opacity: 0;
            animation: fall linear infinite, rotate linear infinite;
            box-shadow: 
                inset -2px -2px 4px rgba(0, 0, 0, 0.5),
                inset 2px 2px 4px rgba(139, 111, 71, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.3);
        }

        /* Coffee bean center line */
        .drop::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #2c1810 20%, #2c1810 80%, transparent 100%);
            border-radius: 50%;
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
        }

        /* Coffee bean highlight */
        .drop::after {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 30%;
            height: 30%;
            background: radial-gradient(circle, rgba(139, 111, 71, 0.4) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Falling animation */
        @keyframes fall {
            0% {
                top: -50px;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                top: 100vh;
                opacity: 0;
            }
        }

        /* Rotation animation for realistic falling */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Steam effect */
        .steam {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
            border-radius: 50%;
            filter: blur(3px);
            animation: steam-rise 3s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes steam-rise {
            0% {
                transform: translateY(0) translateX(0) scaleX(1);
                opacity: 0;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) translateX(10px) scaleX(1.5);
                opacity: 0;
            }
        }

        /* Hero content */
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #f5e6d3;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #8b6f47 0%, #6b5335 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Coffee cup decoration */
        .coffee-cup {
            position: absolute;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 80px;
            opacity: 0.15;
            animation: float 3s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes float {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-20px);
            }
        }

        /* Accent text */
        .accent {
            color: #c9a86a;
            font-style: italic;
        }
        /* ================= RESPONSIVE UPDATE ================= */

/* Global safety */
img,
iframe {
    max-width: 100%;
    height: auto;
}

section {
    overflow-x: hidden;
}

/* ====== LARGE TABLETS / SMALL LAPTOPS ====== */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 90vw;
    }

    .menu-grid {
        max-width: 100%;
    }
}

/* ====== TABLETS ====== */
@media (max-width: 992px) {
    :root {
        --navbar-height: 70px;
        --container-padding: 24px;
    }

    .nav-links {
        gap: 24px;
        margin-left: 24px;
    }

    .gift-container,
    .location-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gift-card-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .map-container {
        height: 380px;
    }
}

/* ====== MOBILE DEVICES ====== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-container {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .logo-img {
        height: 65px;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 6rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .coffee-cup {
        font-size: 55px;
        bottom: 5%;
    }

    /* Menu */
    .menu-section {
        padding: 5rem 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-image {
        height: 220px;
    }

    /* Dropdown */
    .dropdown-inner {
        grid-template-columns: 1fr;
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* ====== SMALL MOBILES ====== */
@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .gift-content h2,
    .location-info h2 {
        font-size: 2.2rem;
    }

    .gift-card-amount {
        font-size: 2.2rem;
    }

    .menu-card h3 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .footer-logo {
        height: 60px;
    }
}

/* ================= END RESPONSIVE UPDATE ================= */
