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

        :root {
            --primary-color: #d4722e;
            --secondary-color: #8b4513;
            --dark-color: #2c1810;
            --light-color: #fff8f0;
            --accent-color: #ffa500;
            --text-dark: #333;
            --text-light: #666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0px;
            width: 100%;
            background: rgba(44, 24, 16, 0.9);
            backdrop-filter: blur(8px);
            padding: 0.5rem 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(44, 24, 16, 0.98);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo i {
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--light-color);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5)), url('./assets/hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            color: white;
            max-width: 800px;
            padding: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--light-color);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent-color);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(212, 114, 46, 0.4);
            animation: fadeInUp 1s ease 0.8s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 114, 46, 0.6);
            background: var(--accent-color);
        }

        /* Section Styling */
        section {
            padding: 3rem 4rem;
            max-width: 3000px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* About Section */
        #about {
            background: var(--light-color);
        }

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

        .about-image {
            position: relative;
            border-radius: 20px;
            height: 500px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

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

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

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-item i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .feature-item h4 {
            color: var(--dark-color);
            font-size: 1rem;
        }

        /* Menu Section */
        #menu {
            background: white;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .menu-tab {
            padding: 0.8rem 2rem;
            background: var(--light-color);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .menu-tab:hover,
        .menu-tab.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 114, 46, 0.3);
        }

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

        .menu-item {
            background: var(--light-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

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

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

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

        .menu-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .menu-item-content {
            padding: 1.5rem;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.8rem;
            gap: 0.5rem;
        }

        .menu-item h3 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-color);
            font-size: 1.4rem;
        }

        .menu-item-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }

        .menu-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .menu-item-rating {
            display: flex;
            gap: 0.3rem;
            color: var(--accent-color);
        }

        /* Deals Section */
        #deals {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: white;
        }

        #deals .section-title {
            color: white;
        }

        #deals .section-title::after {
            background: var(--accent-color);
        }

        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .deal-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .deal-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-color);
        }

        .deal-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .deal-badge {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .deal-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .deal-price {
            font-size: 2.5rem;
            color: var(--accent-color);
            font-weight: 700;
        }

        .deal-items {
            list-style: none;
            margin: 1.5rem 0;
        }

        .deal-items li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .deal-items li i {
            color: var(--accent-color);
        }

        /* Reviews Section */
        #reviews {
            background: var(--light-color);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: 600;
        }

        .review-info h4 {
            color: var(--dark-color);
            margin-bottom: 0.3rem;
        }

        .review-rating {
            color: var(--accent-color);
        }

        .review-text {
            color: var(--text-light);
            font-style: italic;
            line-height: 1.8;
        }

        /* Contact Section */
        #contact {
            background: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            align-items: start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--light-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--dark-color);
            margin-bottom: 0.2rem;
            font-size: 1.2rem;
        }

        .info-content p {
            color: var(--text-light);
            line-height: 1.8;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 3rem 3rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            /* margin-top: 1rem; */
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            display: flex;
            align-items: baseline;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @media screen and (max-width: 1158px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: rgba(44, 24, 16, 0.98);
                width: 100%;
                padding: 2rem;
                transition: left 0.3s ease;
                gap: 1rem;
            }
            .nav-links.active {
                left: 0;
            }
            .menu-toggle {
                display: flex;
            }
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .menu-item-header {
                flex-direction: column;
            }
            .about-content
            {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .hero{
                height: 500px;
            }

        }

        @media screen and (max-width: 664px) {
            .contact-info {
                grid-template-columns: 1fr;
            }
            .cta-button {
                padding: 0.8rem 2rem;
            }
            .about-image {
                height: 370px;
            }

            .about-image img {   
                height: 370px;
            }
            .menu-grid,
            .deals-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .about-text h3{
                font-size: 1.8rem;
            }
            .hero{
                height: 450px;
            }
            section {
                padding: 3rem 2.5rem;
            }
            footer {
                padding: 3rem 2.5rem 1rem;
            }
        }

        @media screen and (max-width: 398px) {
            .deal-card h3 {
                font-size: 1.5rem;
            }
            .cta-button{
                font-size: 0.8rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .deal-price {
                font-size: 2rem;
            }
            .about-text h3{
                font-size: 1.5rem;
            }
            .review-rating i{
                font-size: 0.7rem;
            }
            .review-card{
                padding: 1rem;
            }
            .section-title {
            font-size: 1.5rem;
            margin-bottom: 0rem;
            }

            .section-subtitle {
            margin-bottom: 2rem;
            font-size: 1rem;
            }
            .nav-container{
                gap: 1rem;
                padding: 0 1.5rem;
            }
            .logo{
                font-size: 1.6rem;
            }
            .deal-card{
                padding: 1rem;
            }
            .map-container{
                padding: 0;
            }
            .footer-bottom p{
                font-size: 0.8rem;   
            }
            section{
                min-width: 280px;
                padding: 2.5rem 1.5rem;
            }
            footer {
                padding: 2.5rem 1.5rem 1rem;
            }
        }
