/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a96e;
    --accent-color: #8b7355;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #0a0a0a;
    --bg-light: #f8f8f8;
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
}

img.loading {
    opacity: 0.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.pearl-loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 110, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-text {
    color: var(--secondary-color);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 35px;
    width: auto;
    transition: var(--transition-fast);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
    height: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

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

.reserve-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.reserve-btn:hover {
    background: #d4b77d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--text-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/Hero.jpg') center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

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

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    background: #d4b77d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

.swipe-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0;
    display: none;
    animation: fadeIn 1s ease 1s forwards, float 2s ease-in-out 1.5s infinite;
    transition: opacity 0.6s ease;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease infinite;
}

.swipe-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    display: block;
    animation: swipeDown 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes swipeDown {
    0% { opacity: 0.5; transform: translateY(-5px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.5; transform: translateY(5px); }
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-indicator p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.swipe-indicator p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

section {
    position: relative;
    background: inherit;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 3;
}

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

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: #777;
}

.about-image {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 0 80px rgba(201, 169, 110, 0.1);
    min-height: 650px;
    height: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    opacity: 0.7;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    border-radius: 0 15px 0 0;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
        filter: blur(8px);
    }
    50% {
        opacity: 0.8;
        filter: blur(12px);
    }
}

.about-content {
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 50%;
    margin-right: -40px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 0 0 15px;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image.visible::after {
    top: 30px;
    right: 30px;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.about-image:hover::after {
    width: 100px;
    height: 100px;
    opacity: 1;
}

/* ==================== MENU SECTION ==================== */
.menu {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    z-index: 3;
}

.menu .section-title {
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-overlay {
    transform: translateY(0);
}

.menu-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.menu-overlay p {
    font-size: 15px;
    color: #ccc;
}

/* ==================== EXPERIENCE SECTION ==================== */
.experience {
    background: var(--bg-light);
    position: relative;
    z-index: 3;
}

.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.experience-image {
    position: relative;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.experience-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.experience-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
    color: var(--text-dark);
}

.experience-content .section-label {
    color: var(--secondary-color);
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-large {
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    padding: 30px 20px;
    color: var(--text-light);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.gallery-overlay span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

/* ==================== RESERVATION CTA ==================== */
.reservation-cta {
    padding: 120px 0;
    background: url('/images/Long table.jpg') center/cover no-repeat;
    position: relative;
    color: var(--text-light);
    z-index: 3;
}

.reservation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    z-index: 3;
}

.contact * {
    color: inherit;
}

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

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: #d4b77d;
    transform: translateY(-2px);
}

.contact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    position: relative;
    z-index: 3;
}

.footer-content {
    text-align: center;
    color: #ccc;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 16px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 40px 30px;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 30px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: inset -100px 0 100px rgba(0, 0, 0, 0.3);
    }

    .nav-item {
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInNav 0.5s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.5s; }

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

    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        position: relative;
    }

    .nav-link::after {
        width: 0;
        transition: width 0.3s ease;
    }

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

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content,
    .experience-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-image {
        min-height: 400px;
    }

    .about-image img {
        min-height: 400px;
    }
}

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

    .scroll-indicator {
        display: none;
    }

    .swipe-indicator {
        display: block;
    }
    :root {
        --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-logo img {
        height: 30px;
    }

    .navbar.scrolled .nav-logo img {
        height: 28px;
    }

    .reserve-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        position: relative;
    }

    .hero.dismissed {
        height: 70vh;
        min-height: auto;
        scroll-snap-stop: auto;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
        z-index: 2;
    }

    .hero-content {
        padding: 0 20px;
        position: relative;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        font-weight: 700;
        text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    }

    .title-line {
        display: block;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .title-line:nth-child(1) {
        animation-delay: 0.2s;
    }

    .title-line:nth-child(2) {
        animation-delay: 0.4s;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-bottom: 30px;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.6s forwards;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.8s forwards;
    }

    .btn {
        padding: 14px 25px;
        font-size: 13px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:active::before {
        width: 300px;
        height: 300px;
    }

    .btn-large {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .swipe-indicator {
        display: block;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        display: inline-block;
        background: rgba(201, 169, 110, 0.1);
        padding: 8px 16px;
        border-radius: 30px;
        margin-bottom: 15px;
        border: 1px solid rgba(201, 169, 110, 0.3);
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
        background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.8) 100%);
    }

    .about-content {
        gap: 30px;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        min-height: 300px;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.2),
            inset 0 0 60px rgba(201, 169, 110, 0.15);
    }

    .about-image img {
        min-height: 300px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
        color: #555;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 20px 15px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-left: 3px solid var(--secondary-color);
        transition: var(--transition-smooth);
    }

    .feature-item:active {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Menu Section Mobile */
    .menu {
        padding: 60px 0;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a1a 100%);
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-image {
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
    }

    .menu-card {
        transition: var(--transition-smooth);
    }

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

    /* Experience Section Mobile */
    .experience {
        background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    }

    .experience-split {
        gap: 30px;
    }

    .experience-image {
        min-height: 300px;
        border-radius: 15px;
        overflow: hidden;
    }

    .experience-image img {
        min-height: 300px;
    }

    .experience-content {
        padding: 40px 20px;
    }

    .experience-content h2 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        margin-bottom: 20px;
    }

    .experience-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    /* Gallery Section Mobile */
    .gallery {
        padding: 60px 0;
        background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.9) 100%);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .gallery-large {
        aspect-ratio: 4 / 3;
    }

    /* Reservation CTA Mobile */
    .reservation-cta {
        padding: 80px 0;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.9));
    }

    .cta-content h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        margin-bottom: 15px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a1a 100%);
    }

    .contact-info h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 30px;
        color: var(--secondary-color);
    }

    .info-block {
        margin-bottom: 30px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border-left: 3px solid var(--secondary-color);
    }

    .info-block h3 {
        font-size: 16px;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .info-block p {
        font-size: 14px;
        line-height: 1.7;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        padding: 11px 20px;
        font-size: 12px;
        border-radius: 25px;
        transition: var(--transition-smooth);
    }

    .social-link:active {
        transform: scale(0.95);
    }

    .contact-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 30px;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
        border-top: 1px solid rgba(201, 169, 110, 0.3);
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-content p {
        font-size: 12px;
        color: #999;
    }

    .footer-tagline {
        font-size: 14px;
        color: var(--secondary-color);
    }}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
        gap: 10px;
    }

    .nav-logo img {
        height: 28px;
    }

    .reserve-btn {
        display: none;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero.dismissed {
        height: 70vh;
        min-height: auto;
        scroll-snap-stop: auto;
    }

    .hero-title {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 11px;
        width: 100%;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* About */
    .about {
        padding: 40px 0;
    }

    .about-description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .about-features {
        margin-top: 20px;
    }

    .feature-item {
        padding: 15px 12px;
    }

    .feature-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .about-image {
        min-height: 250px;
    }

    .about-image img {
        min-height: 250px;
    }

    /* Menu */
    .menu {
        padding: 40px 0;
    }

    .menu-image {
        height: 250px;
    }

    /* Experience */
    .experience-content {
        padding: 30px 16px;
    }

    .experience-content h2 {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
        margin-bottom: 15px;
    }

    .experience-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .experience-image {
        min-height: 250px;
    }

    /* Gallery */
    .gallery {
        padding: 40px 0;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Reservation CTA */
    .reservation-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 3vw, 2.2rem);
    }

    .cta-content p {
        font-size: 14px;
    }

    /* Contact */
    .contact {
        padding: 40px 0;
    }

    .contact-info h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        margin-bottom: 20px;
    }

    .info-block {
        margin-bottom: 20px;
    }

    .info-block h3 {
        font-size: 15px;
    }

    .info-block p {
        font-size: 13px;
    }

    .social-link {
        padding: 9px 15px;
        font-size: 11px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }

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

    .footer-content p {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    /* About Image Decorations */
    .about-content::before {
        display: none;
    }

    .about-image::after {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }

    .about-image:hover::after {
        width: 70px;
        height: 70px;
    }
}

/* ==================== SMOOTH ANIMATIONS ==================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Parallax effect */
.parallax-image {
    transition: transform 0.5s ease-out;
}

/* Fade in on scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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