/* 
    meAme Cafe - Premium Light Theme 
    Design Language: Ultra modern minimalism, Premium White/Cream, Elegant Bold Typography.
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Syne:wght@400;600;700;800&display=swap');

:root {
    /* Premium White Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f5;
    --bg-tertiary: #f0ece6;
    --bg-glass: rgba(255, 255, 255, 0.7);

    /* Text Colors */
    --text-primary: #050505;
    --text-secondary: #555555;
    --text-light: #888888;

    /* Accents */
    --accent-dark: #000000;
    --accent-brown: #a89274;

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Transitions */
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;

    /* Spacing & Borders */
    --border-radius: clamp(12px, 2vw, 16px);
    --border-radius-lg: clamp(20px, 3vw, 32px);
    --section-pad: clamp(4rem, 6vw, 6rem);
}

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

html {
    scroll-behavior: initial;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Globals */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--accent-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
}

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

.text-left {
    text-align: left;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn-solid {
    display: inline-block;
    background: var(--accent-dark);
    color: var(--bg-primary);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 100px;
    border: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background: #222;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent-dark);
    padding: 13px 27px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--accent-dark);
    background: var(--bg-secondary);
}

/* Glassmorphism / Frosted */
.frosted {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1001;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--accent-dark);
}

.brand-logo img {
    height: 65px;
    display: block;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 100%;
    height: 2px;
    background: var(--accent-dark);
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
    left: 0;
}

.hamburger::after {
    content: '';
    bottom: -8px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

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

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    clip-path: circle(150% at 100% 0);
}

.menu-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.overlay-link {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.overlay-link:hover {
    color: var(--accent-brown);
}

.menu-overlay.active .overlay-link {
    opacity: 1;
    transform: translateY(0);
}
.menu-overlay.active .overlay-link:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .overlay-link:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .overlay-link:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .overlay-link:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .overlay-link:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .overlay-link:nth-child(6) { transition-delay: 0.35s; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

@media (max-width: 768px) {
    .hero {
        height: 65vh;
        min-height: 460px;
    }
}

.hero-video-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    z-index: 0;
}

@keyframes cinematicPan {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: cinematicPan 25s ease-out forwards;
}

/* Light overlay on video to keep it clean */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 650px;
    width: clamp(90%, 95vw, 100%);
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-brown);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 15px;
    color: var(--accent-dark);
}

.hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-dark);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-dark);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Sections General */
section:not(.hero) {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
}

/* Ambience Showcase */
.ambience {
    background: var(--bg-primary);
}

.ambience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.ambience-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
}

.ambience-card:nth-child(2) {
    transform: translateY(4rem);
}

.ambience-img-wrapper {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
    transition: transform 0.6s ease;
}

.ambience-card:hover .parallax-img {
    transform: translateY(-10%) scale(1.05);
}

.ambience-info {
    padding: 40px;
}

.ambience-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ambience-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Premium Experience / Features */
.premium-experience {
    background: var(--bg-secondary);
    margin-top: 4rem;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 4rem;
}

.feature-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-brown);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Signature Menu */
.menu {
    background: var(--bg-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-secondary);
    transition: var(--transition-medium);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.menu-img {
    height: 280px;
    overflow: hidden;
}

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

.menu-item:hover .menu-img img {
    transform: scale(1.05);
}

.menu-content {
    padding: 30px;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-title-row h4 {
    font-size: 1.4rem;
    font-weight: 700;
}

.price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    background: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Horizontal Scroll Gallery */
.gallery-wrapper {
    overflow-x: auto;
    padding: 0;
    background: var(--bg-tertiary);
}

.horizontal-scroll-container {
    width: 100%;
    height: auto;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 30px;
    padding: 0 5vw;
    height: auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    height: 400px;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 2.5rem;
    color: #fff;
    transform: translateY(15px);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    background: var(--bg-primary);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 60px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--accent-dark);
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Location & Reservation */
.location-reservation {
    background: var(--bg-secondary);
}

.loc-res-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.reservation-form {
    padding: 50px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.reservation-form h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.reservation-form p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

input,
select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent-dark);
    background: var(--bg-primary);
}

.map-wrapper {
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
}

.map-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.map-overlay p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.map-btns {
    display: flex;
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--accent-dark);
    color: var(--bg-primary);
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #a0a0a0;
    margin-bottom: 25px;
    max-width: 320px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: #fff;
}

.social-icons a:hover {
    background: #fff;
    color: var(--accent-dark);
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p,
.footer-hours p {
    color: #a0a0a0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-brown);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

    /* Lightweight Animations */
.gs-reveal, .gs-reveal-up, .gs-reveal-left, .gs-reveal-right, .reveal-text {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.gs-reveal-up { transform: translateY(30px); }
.gs-reveal-left { transform: translateX(30px); }
.gs-reveal-right { transform: translateX(-30px); }
.gs-reveal { transform: translateY(15px); }
.reveal-text { transform: translateY(15px); }

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

    /* Premium Inner Pages (About, Menu, Gallery) */
    .page-header {
        padding: clamp(8rem, 15vw, 15rem) 0 clamp(3rem, 5vw, 5rem);
        text-align: center;
        background: var(--bg-secondary);
    }

    .page-header h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: var(--accent-dark);
        margin-bottom: 0.8rem;
    }

    .page-header p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Masonry Gallery */
    .masonry-grid {
        column-count: 3;
        column-gap: 2rem;
        padding: 2rem 0;
    }

    .masonry-item {
        break-inside: avoid;
        margin-bottom: 2rem;
        border-radius: var(--border-radius);
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }

    .masonry-item img {
        width: 100%;
        display: block;
        transition: transform 0.8s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.05);
    }

    /* Reviews / Feedback */
    .feedback-showcase {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        padding: clamp(10px, 3vw, 20px);
    }

    .feedback-showcase img {
        width: 100%;
        height: auto;
        max-height: 85vh;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        object-fit: contain;
    }



    /* Digital Menu Viewer */
    .menu-viewer {
        background: var(--bg-tertiary);
    }

    .menu-image-container {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    }

    .menu-img-full {
        width: 100%;
        display: block;
        transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-image-container:hover .menu-img-full {
        transform: scale(1.02);
    }

    .menu-overlay-interactive {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 40px;
        opacity: 0;
        transition: var(--transition-medium);
    }

    .menu-image-container:hover .menu-overlay-interactive {
        opacity: 1;
    }

    .view-prompt {
        background: var(--bg-glass);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 30px;
        color: var(--accent-dark);
        font-weight: 600;
        font-size: 0.9rem;
        transform: translateY(20px);
        transition: var(--transition-medium);
        pointer-events: auto;
    }

    .menu-image-container:hover .view-prompt {
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .ambience-grid { gap: 2rem; }
        .loc-res-grid { grid-template-columns: 1fr; }
        .masonry-grid { column-count: 2; }
    }

    @media (max-width: 992px) {
        .ambience-grid { grid-template-columns: 1fr; gap: 2rem; }
        .ambience-card:nth-child(2) { transform: translateY(0); }
        .ambience-img-wrapper { height: clamp(250px, 40vw, 400px); }
        .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
        .nav-links, .nav-actions .btn-outline { display: none; }
        .menu-toggle { display: block; }
        
        .overlay-link { font-size: 2.2rem; }
        .menu-overlay-content { gap: 15px; }

        .hero-title { font-size: 2.8rem; }
        .hero-content { padding: 25px 20px; }
        .hero-btns { flex-direction: column; gap: 12px; width: 100%; }
        .hero-btns .btn-solid, .hero-btns .btn-outline { width: 100%; text-align: center; }
        
        .section-title { font-size: 2rem; }
        .container { padding: 0 5%; }
        
        .gallery-track { padding: 0 5vw; gap: 15px; height: auto; }
        .gallery-item { height: 320px; }
        
        .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
        .form-row { flex-direction: column; gap: 0; }
        
        .masonry-grid { column-count: 1; column-gap: 0; }
        .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        .menu-img { height: 220px; }
    }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Page Transitions */
main {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

body.page-loaded main {
    opacity: 1;
}

/* Premium Button Hover FX */
.btn-solid::after, .btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease-out;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.btn-solid:hover::after, .btn-outline:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.btn-solid, .btn-outline {
    position: relative;
    overflow: hidden;
    z-index: 2;
}