 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #3d3226;
            background: #f8f5f0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            background: rgba(248, 245, 240, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(61, 50, 38, 0.05);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(248, 245, 240, 0.98);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #6b5744;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #3d3226;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #7a9b76;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #7a9b76;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #6b5744 0%, #8b7355 50%, #7a9b76 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(122, 155, 118, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }

        .hero-content {
            text-align: center;
            color: #f8f5f0;
            z-index: 1;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-style: italic;
        }

        .cta-btn {
            background: #f8f5f0;
            color: #6b5744;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            background: #fff;
        }

        /* Menu Section */
        .menu {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: #6b5744;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #8b7355;
            margin-bottom: 4rem;
            font-style: italic;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .menu-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(61, 50, 38, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(122, 155, 118, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .menu-item:hover::before {
            left: 100%;
        }

        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(61, 50, 38, 0.15);
        }

        .menu-item h3 {
            color: #6b5744;
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .menu-item p {
            color: #8b7355;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .menu-item .price {
            color: #7a9b76;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #8b7355 0%, #6b5744 100%);
            padding: 6rem 5%;
            color: #f8f5f0;
            position: relative;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
        }

        .feature {
            background: rgba(248, 245, 240, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border-left: 4px solid #7a9b76;
            transition: all 0.3s ease;
        }

        .feature:hover {
            background: rgba(248, 245, 240, 0.15);
            transform: translateX(10px);
        }

        .feature h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #f8f5f0;
        }

        .feature p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Reviews Section */
        .reviews {
            padding: 6rem 5%;
            background: #f8f5f0;
        }

        .reviews-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .review-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(61, 50, 38, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: #7a9b76;
            opacity: 0.2;
            font-family: serif;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(61, 50, 38, 0.15);
        }

        .review-text {
            color: #3d3226;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .reviewer {
            color: #6b5744;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .stars {
            color: #7a9b76;
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        /* Location Section */
        .location {
            background: linear-gradient(to bottom, #6b5744, #8b7355);
            padding: 6rem 5%;
            color: #f8f5f0;
        }

        .location-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .location-info h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .location-details {
            margin-bottom: 2rem;
        }

        .location-details h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #7a9b76;
        }

        .location-details p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        /* Booking Form */
        .booking-form {
            background: rgba(248, 245, 240, 0.1);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .booking-form h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(248, 245, 240, 0.9);
            color: #3d3226;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: #f8f5f0;
            box-shadow: 0 0 0 3px rgba(122, 155, 118, 0.3);
        }

        .submit-btn {
            width: 100%;
            background: #7a9b76;
            color: #f8f5f0;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: #6a8b66;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: #3d3226;
            color: #f8f5f0;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            opacity: 0.8;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .menu-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::after {
            content: '↓';
            color: #f8f5f0;
            font-size: 2rem;
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }