body{
  text-align:justify ;
}

.navbar-nav {
    margin: auto;
}
.nav-link{
  font-size: larger;
  margin-right: 10px;
}


.image-container {
    position: relative;
    text-align: center;
    color: white;
}

.image-container img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(252, 250, 250, 0.5);
}

.overlay-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.overlay-text .btn {
    width: 250px;
    color: black;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
    background-color: rgba(0, 123, 255, 0.8);
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.overlay-text .btn:hover {
    background-color: rgba(0, 123, 255, 1);
    transform: scale(1.1);
}

/* Adjust phone number size in the navbar */
.contact-icons p {
    font-size: 18px; /* Adjust the size as needed */
    margin: 0;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0; /* Add padding to ensure some space around the carousel */
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.carousel-slide {
    display: flex;
    flex: 0 0 100%; /* Show one slide at a time */
    gap: 15px; /* Space between cards */
    align-items: center; /* Align items vertically in the center */
}

.card {
    flex: 1 0 100%; /* Show one card at a time on small screens */
    max-width: 300px; /* Set a max width for cards */
    margin: 0 auto; /* Center the cards */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10; /* Ensure controls are above carousel content */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column; /* Stack cards vertically on smaller screens */
        gap: 10px; /* Adjust space between stacked cards */
    }
    
    .card {
        flex: 1 0 auto; /* Allow cards to grow based on content */
        max-width: none; /* Remove max-width constraint for stacking */
    }
}

  
  .restaurant-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .restaurant-info h2 {
    margin-bottom: 10px;
  }
  
  .restaurant-info p {
    margin: 5px 0;
  }
  
  .restaurant-info i {
    margin-right: 8px;
    color: #007bff; /* Adjust color if needed */
  }
  
  .restaurant-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .restaurant-info a:hover {
    text-decoration: underline;
  }

  /* about us  */

  .container {
    margin-top: 30px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .restaurant-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .restaurant-info h2 {
    margin-bottom: 10px;
    color: #333;
  }

  .restaurant-info p {
    margin: 5px 0;
    color: #333;
  }

  .restaurant-info i {
    margin-right: 8px;
    color: #007bff;
  }

  .restaurant-info a {
    color: #007bff;
    text-decoration: none;
  }

  .restaurant-info a:hover {
    text-decoration: underline;
  }

  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .gallery {
    margin-top: 30px;
  }
  

  .form-section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.form-section h4 {
    margin-bottom: 20px;
}
.form-section {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.form-section h4 {
  margin-bottom: 20px;
}
.form-check-label {
  margin-left: 10px;
}
.form-section input, .form-section select {
  width: 100%;
}

/* For screen widths below 768px */
@media (max-width: 768px) {
  .image-container img {
      height: auto; /* Allow the height to adjust automatically */
      max-width: 100%; /* Ensure the image fits within its container */
  }
}

/* For very small screens below 576px */
@media (max-width: 576px) {
  .image-container img {
      height: auto;
      object-fit: contain; /* Ensures the entire image is visible */
  }

  .overlay-text h1 {
      font-size: 32px; /* Reduce font size for better fit */
  }

  .overlay-text .btn {
      font-size: 16px; /* Adjust button size */
      width: 200px; /* Make the button smaller */
  }
}

  
