       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
        }
        
        body {
            background-color: #fef9f3;
            color: #333;
            line-height: 1.7;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navbar */
        header {
            background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(12, 59, 46, 0.2);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            color: #ffb400;
            font-size: 32px;
            margin-right: 12px;
            text-shadow: 0 0 5px rgba(255, 180, 0, 0.3);
        }
        
        .logo-text {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1.5px;
        }
        
        .logo-text span {
            color: #ffb400;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 35px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #ffb400;
        }
        
        .nav-links a.active {
            color: #ffb400;
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #ffb400;
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        

        
        .mobile-menu-btn {
            display: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .mobile-menu-btn:hover {
            color: #ffb400;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(6, 24, 22, 0.85), rgba(26, 92, 72, 0.85)), 
                        url('images/background.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 160px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.2) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.4rem;
            margin: 0 auto 40px;
            color: #f0f0f0;
            max-width: 750px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ffb400, #ff9800);
            color: #0c3b2e;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
            background: linear-gradient(to right, #ff9800, #ffb400);
        }
        
        /* Highlights Section */
        .highlights {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: #0c3b2e;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ffb400, #ff9800);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .highlight-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
        }
        
        .highlight-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .highlight-img {
            height: 220px;
            overflow: hidden;
        }
        
        .highlight-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .highlight-card:hover .highlight-img img {
            transform: scale(1.05);
        }
        
        .highlight-content {
            padding: 30px;
        }
        
        .highlight-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #0c3b2e;
        }
        
        .highlight-content p {
            color: #666;
            margin-bottom: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .highlight-icon {
            font-size: 40px;
            color: #ffb400;
            margin-bottom: 20px;
        }
        
        /* Chef Section */
        .chef-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fef9f3 0%, #f5e9d9 100%);
        }
        
        .chef-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .chef-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .chef-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .chef-image:hover img {
            transform: scale(1.03);
        }
        
        .chef-info {
            flex: 1;
        }
        
        .chef-info h2 {
            font-size: 2.8rem;
            color: #0c3b2e;
            margin-bottom: 25px;
        }
        
        .chef-info p {
            color: #555;
            margin-bottom: 25px;
            font-size: 1.1rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .signature {
            font-style: italic;
            color: #0c3b2e;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 30px;
            border-left: 4px solid #ffb400;
            padding-left: 20px;
        }
        
        /* Menu Preview */
        .menu-preview {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }
        
        .menu-item {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .menu-item-img {
            height: 200px;
            overflow: hidden;
        }
        
        .menu-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-item:hover .menu-item-img img {
            transform: scale(1.08);
        }
        
        .menu-item-content {
            padding: 25px;
        }
        
        .menu-item-content h3 {
            font-size: 1.5rem;
            color: #0c3b2e;
            margin-bottom: 10px;
        }
        
        .menu-item-content p {
            color: #777;
            margin-bottom: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 0.95rem;
        }
        
        .price {
            color: #ff9800;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
            color: white;
        }
        
        .testimonials .section-title h2 {
            color: #fff;
        }
        
        .testimonials .section-title p {
            color: #e0e0e0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 35px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid #ffb400;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: #0a2a21;
            color: #fff;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffb400;
        }
        
        .footer-about p {
            color: #bbb;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background-color: #ffb400;
            transform: translateY(-3px);
        }
        
        .footer-links h3, .footer-contact h3, .footer-hours h3 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-links h3::after, .footer-contact h3::after, .footer-hours h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #ffb400;
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 10px;
            color: #ffb400;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: #ffb400;
            transform: translateX(5px);
        }
        
        .footer-contact p, .footer-hours p {
            color: #bbb;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i, .footer-hours i {
            margin-right: 15px;
            color: #ffb400;
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.95rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .chef-container {
                flex-direction: column;
            }
            
            .chef-image, .chef-info {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 82px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
                flex-direction: column;
                align-items: center;
                padding: 25px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.5s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }
            
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            .nav-links li {
                margin: 18px 0;
            }
            
            .hero {
                padding: 130px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
                padding: 0 15px;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 14px 32px;
                font-size: 16px;
            }
            
            .highlight-card, .menu-item {
                margin: 0 10px;
            }
        }