/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header styles */
  .header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  
  .header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #e74c3c;
  }
  
  /* Section styles */
  .section {
    padding: 5rem 0;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
  }
  
  /* Home section */
  .home {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/Urban_Eats_Website_Logo.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
  }
  
  .hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
  }
  
  .home h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .home p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
  }
  
  .btn-outline:hover {
    background-color: #fff;
    color: #e74c3c;
  }
  
  /* Features section */
  .features-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .feature-item {
    padding: 2rem;
  }
  
  .feature-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  
  /* About section */
  .about-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
  }
  
  .about-features {
    list-style: none;
    margin-top: 2rem;
  }
  
  .about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .about-features i {
    color: #27ae60;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* CTA section */
  .cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/restaurant-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  
  .text-center {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Responsive design additions */
  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .home h2 {
      font-size: 2.5rem;
    }
  }
  
  .btn {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #c0392b;
  }
  
  /* Menu section */
  .menu-section {
    padding: 8rem 0 5rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .menu-header {
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  
  .menu-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  .menu-header p {
    color: #666;
    font-size: 1.1rem;
  }
  
  .menu-categories {
    margin-bottom: 3rem;
  }
  
  .menu-category {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
  }
  
  .menu-category:hover {
    color: #e74c3c;
  }
  
  .menu-category.active {
    background-color: #e74c3c;
    color: white;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  .menu-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .menu-item-image {
    position: relative;
    overflow: hidden;
  }
  
  .menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .menu-item-badge.vegetarian {
    background-color: #27ae60;
  }
  
  .menu-item:hover {
    transform: translateY(-5px);
  }
  
  .menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover img {
    transform: scale(1.1);
  }
  
  .menu-item h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
  }
  
  .menu-item-description {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    min-height: 40px;
  }
  
  .menu-item p:last-child {
    padding: 0.5rem 1rem 1rem;
    font-weight: 600;
    color: #e74c3c;
  }
  
  /* Responsive design for menu section */
  @media (max-width: 768px) {
    .menu-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    
    .menu-category {
      margin: 0;
    }
  }
  
  /* Gallery section */
  .gallery-section {
    padding: 5rem 0;
    text-align: center;
  }
  
  .gallery-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
  }
  
  /* Contact section */
  .contact {
    background-color: #2c3e50;
    color: #fff;
  }
  
  .contact p {
    margin-bottom: 0.5rem;
  }
  
  /* Footer */
  footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .footer-section {
    padding: 1rem;
  }
  
  .footer-section h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer-section p {
    margin-bottom: 0.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #e74c3c;
  }
  
  .hours-list {
    list-style: none;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .header .container {
      flex-direction: column;
      padding: 0.5rem 0;
    }
  
    .nav-links {
      margin-top: 0.5rem;
    }
  
    .nav-links li {
      margin: 0 0.5rem;
    }
  
    .home h2 {
      font-size: 2.5rem;
    }
  
    .section h2 {
      font-size: 2rem;
    }
  }
  .contact-section {
    padding: 8rem 0 5rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  .contact-header {
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  .contact-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  .contact-header p {
    color: #666;
    font-size: 1.1rem;
  }
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-info {
    text-align: left;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .info-item {
    margin-bottom: 2rem;
  }
  .info-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
  }
  .info-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .info-item p {
    color: #666;
    line-height: 1.6;
  }
  .contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
  }
  .contact-form textarea {
    height: 150px;
    resize: vertical;
  }
  /* Responsive design for contact section */
  @media (max-width: 992px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  /* Add these styles after the header styles */
  .logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }
  .logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
  }
  .logo-img:hover {
    transform: scale(1.05);
  }
  /* Update the header container to accommodate the logo */
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  /* Booking section styles */
  .booking-section {
    padding: 8rem 0 5rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .booking-header {
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  
  .booking-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  .booking-header p {
    color: #666;
    font-size: 1.1rem;
  }
  
  .booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .booking-info {
    text-align: left;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .booking-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .booking-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    appearance: none;
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
    background-position: calc(100% - 1rem) center;
    background-color: #fff;
  }
  
  .booking-form input[type="date"],
  .booking-form input[type="time"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
  }
  
  /* Responsive design for booking section */
  @media (max-width: 992px) {
    .booking-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
  }
  .container1 {
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
  .alert {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.alert-title {
    font-size: 1rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 0.5rem;
}
.alert-description {
    font-size: 0.875rem;
    color: #b45309;
}
.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}
.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}
.card-content {
    padding: 1.5rem;
}
.menu-items {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.menu-items:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.menu-items-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.25rem;
}
.menu-items-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.menu-items-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
}