
/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --max-width: 1200px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
  }
  
  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: var(--dark-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
  }
  
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-color);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
  }
  
  .hero-content {
    max-width: 800px;
    position: relative;
  }
  
  .discount-badge {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50%;
    font-weight: 700;
    transform: rotate(15deg);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1) rotate(15deg);
    }
    50% {
      transform: scale(1.1) rotate(15deg);
    }
    100% {
      transform: scale(1) rotate(15deg);
    }
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
  }
  
  /* Categories Section */
  .categories {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .category-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
  }
  
  .category-btn:hover,
  .category-btn.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* About Section */
  .about {
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
  }
  
  .about-image,
  .about-content {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image {
    padding: 0 20px;
  }
  
  .about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    padding: 0 30px;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
  }
  
  .about-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  /* Special Offers */
  .special-offers {
    padding: 5rem 2rem;
    background-color: white;
  }
  
  .offer-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .offer-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .offer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .offer-content {
    padding: 20px;
    text-align: center;
  }
  
  .offer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .offer-content p {
    margin-bottom: 15px;
    color: #666;
  }
  
  .price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
  }
  
  .discounted-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .timer {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .countdown span {
    color: var(--primary-color);
  }
  
  .order-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .order-button:hover {
    background-color: #c0392b;
  }
  
  /* Why Choose Us */
  .why-choose-us {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
  }
  
  .reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .reason-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .reason-card:hover {
    transform: translateY(-10px);
  }
  
  .reason-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  /* Reservation Form */
  .reservation {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
  }
  
  .reservation .section-title {
    color: white;
  }
  
  .reservation-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .submit-button {
    grid-column: 1 / -1;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-button:hover {
    background-color: #c0392b;
  }
  
  /* Menu Section */
  .menu {
    padding: 5rem 2rem;
  }
  
  .menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .menu-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .menu-item:hover {
    transform: translateY(-10px);
  }
  
  .menu-image {
    height: 250px;
    position: relative;
  }
  
  .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .menu-content {
    padding: 20px;
  }
  
  .menu-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .menu-content p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .menu-content .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
  }
  
  /* Chef Section */
  .chefs {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
  }
  
  .chef-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .chef-card {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .chef-card:hover {
    transform: translateY(-10px);
  }
  
  .chef-image {
    height: 300px;
  }
  
  .chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .chef-card h3 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  
  .chef-card p {
    color: #666;
    margin: 10px 0 20px;
  }
  
  /* Reviews Section */
  .reviews {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .review-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 300px;
  }
  
  .review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .review-card.active {
    opacity: 1;
    visibility: visible;
  }
  
  .review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
  }
  
  .reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .reviewer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .stars {
    color: var(--secondary-color);
  }
  
  .review-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: var(--primary-color);
  }
  
  /* Blog Section */
  .blog {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
  }
  
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .blog-content p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .read-more {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .read-more:hover {
    color: #c0392b;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-section p {
    margin-bottom: 10px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .about {
      flex-direction: column;
    }
    
    .about-image,
    .about-content {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links li {
      margin: 25px 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
      padding-top: 80px;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .menu-container,
    .blog-container,
    .chef-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .social-icons {
      justify-content: center;
    }
  }
  