/* static/css/styles.css */
/* Hero Section Enhancements */
.hero-section {
    position: relative;
    color: #fff;
    /* Subtle text shadow for readability without being too dark */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    height: 40vh;
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Optionally center horizontally */
}
.search-box-collapsed {
  width: 2.2rem !important; /* enough space for the icon */
  overflow: hidden;
  transition: width 0.3s;
}
.search-box-collapsed input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: none;
  transition: width 0.3s, opacity 0.3s;
}

.search-box-expanded {
  width: 250px !important;
  transition: width 0.3s;
}
.search-box-expanded input {
  width: 100%;
  opacity: 1;
  padding: .375rem .75rem;
  transition: width 0.3s, opacity 0.3s;
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced overlay opacity for a lighter appearance */
    background: rgba(0, 0, 0, 0.0);
}

/* Ensure content inside hero is above the overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}


/* Footer Link Hover Effect */
.footer a:hover {
    color: #ffd966 !important; /* A brighter gold color on hover */
}

/* Navbar Brand Icon Adjustment */
.navbar-brand i {
    font-size: 1.5rem;
}

/* Active Nav Link Styling */
.navbar-nav .nav-link.active {
    /* Use a brighter shade of gold to avoid harsh contrast */
    color: #ffd966 !important;
}

/* About Us Section */
.about-us img {
    max-width: 100%;
    border-radius: 15px;
}

/* Services Icons */
.services-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial p {
    font-style: italic;
}

.testimonial h5 {
    margin-top: 1rem;
    font-weight: bold;
}

/* Call to Action */
.cta-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.cta-section h2 {
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
/* Form spacing adjustments */
.form-group, .mb-3 {
    margin-bottom: 0.75rem !important;
}

/* Label and input sizing for compactness */
.form-label {
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .form-control {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    .btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Accordion spacing tweaks */
.accordion-button {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.admin-mt-4 {
    margin-top: 4rem !important;
}
.full-screen-carousel {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

.trip-card {
  margin: 0;
  padding: 0;
  border: none;
}

.fotx1 {
  padding-left: 10px;
  padding-right: 10px;
}

.carousel-wrapper, .custom-carousel, .custom-carousel-inner, .carousel-item {
  margin: 0;
  padding: 0;
}

.custom-carousel {
  position: relative;
}

.custom-carousel-inner {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.carousel-item {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-item img {
  display: block;
  height: 250px;
  object-fit: cover;
}
.home-page .carousel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
/* Simple carousel controls (customize as needed) */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 1.8rem;
  cursor: pointer;
}

.carousel-control.prev {
  left: 0.5rem;
}

.carousel-control.next {
  right: 0.5rem;
}

/* For mobile screens ensure no horizontal gutters */
@media (max-width: 576px) {
  .full-screen-carousel,
  .carousel-item img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

