html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.navbar .dropdown-toggle {
    color: var(--bs-nav-link-color);
}
/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

    #heroCarousel .carousel-item img {
        height: 100%;
        object-fit: cover; /* Ensures images cover the area without distortion */
    }

.booking-widget-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 100%;
}

.btn-hero-search {
    background-image: linear-gradient(45deg, #28a745, #218838);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.8rem;
    width: 100%;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .btn-hero-search:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }
/* --- Unit Card Animation Styles --- */
.unit-card {
    transition: all 0.4s ease-in-out;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Important for the image zoom effect */
}

    .unit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

.unit-card-img {
    transition: transform 0.4s ease-in-out;
}

.unit-card:hover .unit-card-img {
    transform: scale(1.05);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-success);
}
.btn-hero-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; 
}
.dt-search {
    margin-bottom: 1rem;
}
.dt-input{
    margin : 0 10px;
}
/* Add this to your site.css file */

.section-header-elegant {
    position: relative;
    padding-bottom: 20px;
}

/* The small text above the title */
.eyebrow-text {
    color: var(--bs-primary); /* Uses your site's primary color */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

/* The decorative line under the main title */
.section-header-elegant h2::after {
    content: '';
    display: block;
    width: 80px; /* Width of the line */
    height: 4px; /* Thickness of the line */
    background: var(--bs-primary);
    border-radius: 2px;
    margin: 24px auto 0; /* Centers the line and adds space above it */
}

/* Optional: Add a subtle gradient to the line */
.section-header-elegant h2::after {
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
}