/* tours.css - Custom Styles for Tours Page */

/* ================ Tours Hero Carousel ================ */
#toursCarousel {
  margin-top: 70px; /* Account for fixed navbar */
  position: relative;
}

#toursCarousel .carousel-item {
  height: 70vh;
  min-height: 500px;
}

#toursCarousel .hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.search-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-container h1 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.search-form .form-select,
.search-form .form-control {
  border: 2px solid #AD6C29;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  height: auto;
  background-color: rgba(255,255,255,0.9);
}

.search-form .form-select:focus,
.search-form .form-control:focus {
  border-color: #E65C00;
  box-shadow: 0 0 0 0.25rem rgba(173, 108, 41, 0.25);
}

/* Brand Color Styling */
.btn-custom {
  background-color: #AD6C29;
  border-color: #AD6C29;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #E65C00;
  border-color: #E65C00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ================ Featured Tours Section ================ */
#featured-tours {
  padding: 5rem 0;
}

.tour-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tour-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.tour-card .card-body {
  padding: 1.5rem;
}

.tour-card .badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
}

.price-tag {
  color: #AD6C29;
  font-weight: 700;
  font-size: 1.25rem;
}
/* View All Tours Button */
.btn-outline-primary {
  color: #AD6C29; /* Brand color */
  border-color: #AD6C29;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #AD6C29;
  border-color: #AD6C29;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(173, 108, 41, 0.3);
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(173, 108, 41, 0.25);
}
/* ================ Partners Section ================ */
#partners {
  padding: 4rem 0;
}

.partners-carousel .partner-item {
  padding: 1rem;
}

.partners-carousel img {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners-carousel img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ================ Responsive Adjustments ================ */
@media (max-width: 992px) {
  .search-container {
    padding: 1.5rem;
  }
  
  .search-form .col-md-3,
  .search-form .col-md-2 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  #toursCarousel .carousel-item {
    height: 80vh;
  }
  
  .search-container h1 {
    font-size: 1.8rem;
  }
  
  .tour-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .search-container {
    padding: 1rem;
  }
  
  .search-form .form-select,
  .search-form .form-control {
    padding: 0.5rem 0.75rem;
  }
  
  #featured-tours {
    padding: 3rem 0;
  }
}

/* ================ Brand Color Overrides ================ */
/* Form Elements */
.form-select:focus {
  border-color: #AD6C29;
  box-shadow: 0 0 0 0.25rem rgba(173, 108, 41, 0.25);
}

/* Badges */
.bg-danger {
  background-color: #AD6C29 !important;
}

.bg-success {
  background-color: #28a745 !important; /* Keep green for special offers */
}

/* Text Colors */
.text-primary {
  color: #AD6C29 !important;
}

/* Borders */
.border-primary {
  border-color: #AD6C29 !important;
}

/* ================ Owl Carousel Customization ================ */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  color: #AD6C29 !important;
  font-size: 2rem !important;
}

.owl-carousel .owl-dots button.owl-dot.active span {
  background: #AD6C29 !important;
}

/* ================ WhatsApp Float ================ */
.whatsapp-float {
  background-color: #25D366;
}

.whatsapp-float:hover {
  background-color: #128C7E;
}