/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    background-image: url("backgroung resturent image1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* Header & Navigation */
  header {
    background-color: #d32f2f;
    color: white;
    padding: 10px;
    text-align: center;
  }
  
  .navbar {
    background-color: #b71c1c !important;
  }
  
  .nav-link {
    color: white !important;
  }
  
  .nav-link:hover {
    background-color: #d32f2f !important;
    border-radius: 5px;
  }
  
  /* Home Section */
  .home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
  }
  
  .home h2 {
    font-size: 48px;
    margin: 10px 0;
  }
  
  .home p {
    font-size: 18px;
    margin: 10px 0;
    max-width: 600px;
  }
  
  .home button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #f0a500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .home button:hover {
    background-color: #d18d00;
  }
  
  /* Menu Section */
  .menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .menu-item {
    width: 280px;
    margin: 15px;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  
  .menu-item img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Special Offers */
  .offer-section {
    padding: 20px;
  }
  
  .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .offer-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .offer-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
  }
  
  /* About Section */
  .about-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.4s ease-in-out;
  }
  
  .about-section:hover {
    border-color: #f45b69;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .about-title {
    font-size: 2.2rem;
    color: #f45b69;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .about-list li::before {
    content: "🍴";
    margin-right: 10px;
    color: #f45b69;
  }
  
  .about-section:hover li::before {
    content: "⭐";
  }
  
  /* Booking Form */
  .booking-form {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 20px auto;
  }
  
  .submit-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .submit-button:hover {
    background-color: #0056b3;
  }
  
  .success-message {
    margin-top: 20px;
    color: green;
    font-weight: bold;
  }
  
  /* Location Section */
  .location-container {
    text-align: center;
    margin: 20px auto;
  }
  
  /* Footer */
  footer {
    background: #b71c1c;
    color: white;
    text-align: center;
    padding: 10px;
  }
  
  /* Color Classes */
  #menu, #specials, #book {
    color: red;
  }
  
  #menu2 {
    color: black;
  }
  
  #locat {
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-item {
      width: 90%;
    }
    
    .about-section {
      padding: 20px;
    }
    
    .about-title {
      font-size: 1.8rem;
    }
    
    .navbar-nav {
      flex-direction: column;
    }
    
    .home h2 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .menu-item {
      width: 100%;
    }
    
    iframe {
      width: 100%;
      height: 300px;
    }
  }