body {
            font-family: 'Libre Baskerville', serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
        }
        .hero h1 {
            font-weight: 900;
        }
        .hero {
            background: url('asset/restaurant-bg.jpg') center center/cover no-repeat;
            color: rgb(170, 108, 57);
            position: relative;
            padding: 6rem 1rem;
            text-align: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgb(128, 0, 0);
            transition: background 0.5s ease;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            transform: translateY(0);
            transition: transform 0.8s ease-out;
        }
        .hero-logo {
            max-width: 250px;
            height: auto;
            margin-bottom: 1rem;
            opacity: 1;
            transform: scale(1);
            transition: all 0.8s ease-out;
        }
        
        /* Scroll-triggered animations */
        .hero.scrolled .hero-content {
            transform: translateY(-50px);
        }
        
        .hero.scrolled .hero-logo {
            transform: scale(0.8);
            opacity: 0.8;
        }
        
        .hero.scrolled::before {
            background: rgba(128, 0, 0, 0.9);
        }
        
        /* About section animations */
        .about-section {
            opacity: 0;
            transform: translateY(80px);
            transition: all 1s ease-out;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.8s ease-out;
        }
        
        .about-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-section.visible::before {
            left: 100%;
        }
        
        .about-section h2 {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease-out 0.3s;
        }
        
        .about-section.visible h2 {
            transform: translateY(0);
            opacity: 1;
        }
        
        .about-section p {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease-out 0.6s;
        }
        
        .about-section.visible p {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Fade in sections */
        .fade-in-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (min-width: 768px) {
            .hero-logo {
                max-width: 300px;
            }
        }
        .map-container iframe {
            width: 100%;
            height: 300px;
            border: 0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .map-container iframe:hover {
            transform: scale(1.02);
        }
        
        @media (min-width: 768px) {
            .map-container iframe {
                height: 400px;
            }
        }
        footer {
            background: #9b1c1c;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(128, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            transform: translateY(-100%);
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.visible {
            transform: translateY(0);
        }
        
        .navbar-logo {
            max-width: 150px;
            height: auto;
            transition: all 0.3s ease;
        }
        
        .navbar-logo:hover {
            transform: scale(1.1);
        }
        
        .navbar-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .navbar-nav a {
            color: white;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-weight: 400;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 4px;
        }
        
        .navbar-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }