/* Reset and Universal Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  padding-top: 80px; /* Space for fixed navbar */
}

/* Main Section */
.main {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 50%), url('home-img.jpg');
  background-position: center;
  background-size: cover;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  border-bottom: 1px solid rgba(252, 252, 252, 0.2);
  transition: background-color 0.3s ease-in-out;
  padding: 0.5rem 1rem;
}

.custom-navbar {
  background-color: #3299ffbe;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #eee7e7 !important;
}

.nav-link {
  color: #ffffff !important;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffd700 !important;
}

.navbar-toggler-icon {
  background-color: #bdc6c7;
}

/* Hero Section */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.cta-button, 
.hero .btn {
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #6a0dad;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.hero .btn:hover {
  background-color: #4b0082;
}

/* Services Section */
#services {
  background-color: #2b2626;
  padding: 50px 0;
}

.service-card {
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-card img {
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  height: 250px;
}

.service-card .card-body {
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
}

.service-card .card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1a1919;
  margin-bottom: 15px;
}

.service-card .card-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Recommended Packages */
#recommended-packages {
  text-align: center;
  padding: 50px 0;
}

.package-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.package {
  width: 300px;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.package-info, 
.package p {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

/* Booking Form */
#booking-form {
  background-color: #f9f9f9;
  padding: 30px;
  border: 1px solid #ddd;
  width: 400px;
  margin: 20px auto;
  text-align: center;
}

#booking-form form {
  display: flex;
  flex-direction: column;
}

#booking-form input {
  margin: 10px 0;
  padding: 10px;
}

#booking-form button {
  margin-top: 20px;
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

#booking-form button:hover {
  background-color: darkgreen;
}

/* Contact Section */
#contact {
  background-color: #f9f9f9;
  padding: 50px 0;
}

#contact .card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#contact .card-body {
  padding: 30px;
}

#contact .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 15px;
}

#contact .form-control:focus {
  border-color: #6a0dad;
  box-shadow: 0 0 5px rgba(106, 13, 173, 0.5);
}

#contact .btn {
  background-color: #6a0dad;
  color: white;
  padding: 12px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  border: none;
}

#contact .btn:hover {
  background-color: #4b0082;
}

/* Reviews Section */
#reviews .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#reviews .card-body {
  padding: 20px;
}

#reviews .card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

#reviews .card-subtitle {
  font-size: 1rem;
  color: #777;
}

#reviews .card-text {
  font-size: 1rem;
  color: #555;
}

/* Gallery Section */
.gallery-section {
  padding: 40px;
  background-color: #f4f4f4;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;
}

.gallery-item img {
  width: 100%;
  height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Map Section */
#map {
  background-color: #f9f9f9;
  padding: 50px 0;
}

#map .map-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#map h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

/* Footer */
footer {
  background-color: #7070b9;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .main {
    height: auto;
    padding: 2rem 1rem;
  }

  .section-title, 
  .section-description {
    text-align: center;
    font-size: 1rem;
  }

  .slider-container {
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .team-member {
    min-width: 250px;
    flex-shrink: 0;
  }

  #booking-form {
    width: 90%;
  }
}
