  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2c1810;
            background: linear-gradient(135deg, #dc322f 0%, #f7931e 50%, #4caf50 100%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(44, 24, 16, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 110px;
    width: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
    will-change: transform, filter;
}

.logo-img:hover {
    transform: scale(1.12) rotate(1deg);
    filter: drop-shadow(0 0 8px rgba(220, 50, 47, 0.5)) brightness(1.1);
}


.logo-text h1 {
    font-family: 'Playfair Display', serif;
    color: #dc322f;
    font-size: 2rem;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-text p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 3px;
    font-weight: bold;
    color: #f7931e;
}

        .nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            border-bottom-color: #dc322f;
            color: #dc322f;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23dc322f" width="1200" height="800"/><polygon fill="%23f7931e" points="0,800 1200,0 1200,800"/></svg>');
            background-size: cover;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 80px;
        }

        .hero-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: #dc322f;
            color: #fff;
            border-color: #dc322f;
        }

        .btn-primary:hover {
            background: transparent;
            color: #dc322f;
            border-color: #dc322f;
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #dc322f;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .food-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            max-width: 400px;
        }

        .food-image {
            width: 180px;
            height: 180px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .food-image:hover {
            transform: scale(1.05);
        }

        .food-1 { background-image: url('imgs/food1.jpg'); }
        .food-2 { background-image: url('imgs/food2.jpg'); }
        .food-3 { background-image: url('imgs/food3.jpg'); }
        .food-4 { background-image: url('imgs/food4.jpg'); }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #2c1810;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #dc322f, #f7931e, #4caf50);
            margin: 0 auto;
        }

        /* About Section */
        .about {
  position: relative;
  background: #fff;
  z-index: 1;
  overflow: hidden;
        }


.about-logo-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  max-width: 50%;
}

.about-logo-bg img {
  width: 100%;
  height: auto;
  display: block;
}


        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            color: #dc322f;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.8);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #dc322f;
        }

        .feature-icon {
            font-size: 2.5rem;
            min-width: 60px;
        }

        .feature h4 {
            color: #dc322f;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Menu Section */
        .menu {
            background: rgba(76, 175, 80, 0.1);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 300px;
  margin: 0 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.8);
  opacity: 0.5;
  filter: blur(2px);
}

.carousel-slide.active {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(0);
  z-index: 2;
}

.carousel-slide img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


        .menu-cta {
            text-align: center;
        }

        .restaurant-photo {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.restaurant-photo img {
  width: 100%;
  height: auto;
  display: block;
}


        /* Contact Section */
.contact {
  background: rgba(255, 255, 255, 0.95);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.info-box {
  display: grid;
  gap: 2rem;
}

.info-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #dc322f;
}

.info-item h3 {
  color: #dc322f;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.info-item a {
  color: #dc322f;
  text-decoration: none;
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

.map-rating-wrapper {
  display: grid;
  gap: 2rem;
}

.google-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rating {
  background: linear-gradient(135deg, #dc322f, #f7931e);
  color: #fff;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.rating h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.rating p {
  margin: 0.5rem 0;
}

        /* Footer */
        .footer {
            background: #2c1810;
            color: #fff;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo h3 {
            font-family: 'Playfair Display', serif;
            color: #dc322f;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .footer-logo p {
            color: #f7931e;
            margin-top: 0.5rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

              .about-logo-bg {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-rating-wrapper {
    gap: 1.5rem;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: none;
    border-top: 4px solid #dc322f;
    flex-direction: row;
    padding: 1.2rem;
  }

  .info-item h3 {
    margin: 0;
    font-size: 1.2rem;
  }

  .info-item p {
    margin: 0;
  }
            
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(44, 24, 16, 0.95);
                backdrop-filter: blur(10px);
            }
            
            .nav.active {
                display: block;
            }
            
            .nav ul {
                flex-direction: column;
                padding: 1rem;
                gap: 0;
            }
            
            .nav li {
                margin: 0.5rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text h2 {
                font-size: 2.8rem;
            }

            .food-showcase {
                grid-template-columns: 1fr 1fr;
                max-width: 300px;
            }

            .food-image {
                width: 140px;
                height: 140px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h2 {
                font-size: 2.2rem;
            }
            
            .food-showcase {
                grid-template-columns: 1fr;
                max-width: 200px;
            }

            .food-image {
                width: 180px;
                height: 180px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }

            .btn {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
        }