
/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content {
    position: absolute;
    top: 35%;
    left: 5%;
    transform: translateY(-50%);
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 80px;
}

.button-group {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
}

.button-group button {
    padding: 10px 20px;
    border: none;
    background-color: #ff0000;
    color: white;
    cursor: pointer;
}

.location-name {
    position: absolute;
    bottom: 45%;
    left: 6%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.location-name h4 {
    display: inline-block;
    margin-right: 10px;
}

.location-name h3 a {
    margin-left: 10px;
}

.location-name a {
    color: white;
    text-decoration: none;
}

/* ========== Slider Section Styles ========== */
.slider-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .gallery-wrapper {
    overflow: hidden;
    width: 90%;
    height: 100%;
    background-size: cover;
  }
  
  .gallery {
    display: flex;
    gap: 10px; /* Space between images */
    background-size: cover;
    transition: transform 1s ease-in-out; /* Smooth transition on transform */
  }
  
  .gallery-item {
    flex: 0 0 calc(20% - 8px); /* Adjust width accounting for gap */
    position: relative;
    background-size: cover;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
  }
  
  .location-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .prev,
  .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  /* ========== Mobile View Adjustments ========== */
  @media (max-width: 768px) {
    /* Adjust hero and slider sections */
    .hero-section {
      height: 60vh; /* Reduced height for mobile */
    }
  
    .hero-content h2 {
      font-size: 2em;
      margin-bottom: 40px;
    }
  
    .button-group {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
  
    /* Adjust gallery layout for mobile */
    .gallery-wrapper {
      width: 100%;
      margin-top: 20px; /* Adjust as needed */
      position: relative;
    }
  
    .gallery {
      gap: 5px;
    }
  
    .gallery-item {
      flex: 0 0 calc(50% - 2.5px); /* Two items per row on mobile */
      margin-bottom: 20px;
    }
  
    .gallery-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  
    .location-overlay {
      font-size: 14px;
      padding: 5px;
    }
    
    /* Adjust slider content for mobile */
    .slider-content {
      flex-direction: column;
      height: 25vh; /* Adjust based on preference */
      padding: 15px;
      margin-top: 0;
      /* 'right' property is optional—remove if unnecessary */
      right: 44px;
    }
  
    .slider-container {
      width: 100%;
      height: 100%;
      padding: 0 10px; /* Side padding for mobile */
    }
  
    .slider-content h2 {
      font-size: 2em;
      text-align: center;
      margin-bottom: 20px;
    }
    
    .slider-content p {
      font-size: 1em;
      text-align: center;
      margin-top: 10px;
    }
  
    .prev,
    .next {
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 10px 15px;
      font-size: 14px;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      cursor: pointer;
      z-index: 2;
    }
    
    .prev {
      left: 10%;
    }
    
    .next {
      right: -8%;
    }
  }
  

/* search Section Styles */
/* Global Styles */


/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    padding: 30px;
    max-width: 900px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 3.15);
}
.selected {
    background-color: #ff0; /* Highlight selected dates */
}

/* Heading */
h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}  

/* Search Container */
.search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Search Items */
.search-item {
    flex: 1;
     /* Adjust as needed for smaller screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Labels */
label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

label i {
    margin-right: 12px;
    color: #007bff;
}

/* Select and Input Fields */
select, input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus, input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}
.day.selected {
    background-color: #007bff; /* Change this to your desired color */
    color: #fff;
}

/* Search Button */
.search-button {
    width: calc(72% - 99px); /* Make the button slightly smaller than the inputs */
    padding: 12px;
    max-width: 300px; /* Max width of the button so it doesn’t stretch too much */
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px; /* Center the button horizontally */
}

.search-button i {
    margin-right: 8px;
}

.search-button:hover {
    background: linear-gradient(45deg, #0056b3, #003d80);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure full width for small screens */
@media (max-width: 768px) {
    .search-item {
        min-width: 100%;
    }
}
