.hotel-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
    background: #000;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover zoom effect */
.room:hover .hotel-card-image img {
    transform: scale(1.12);
}

/* Gradient overlay */
.hotel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room:hover .hotel-overlay {
    opacity: 1;
}

.hotel-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Availability badge */
.hotel-overlay .badge {
    width: fit-content;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 30px;
}

.badge-success {
    background: #28a745;
}

.badge-danger {
    background: #dc3545;
}

/* Room Availability Box */
.room-availability {
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-size: 14px;
}

/* Individual Room Row */
.room-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f9f9f9;
}

/* Available / Unavailable Colors */
.room-row.available {
    border-left: 4px solid #28a745;
}

.room-row.unavailable {
    border-left: 4px solid #dc3545;
    opacity: 0.7;
}

.room-info-left strong {
    font-size: 15px;
}

/* Status Pills */
.status {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.status.available {
    background: #e6f7ed;
    color: #28a745;
}

.status.unavailable {
    background: #fdecea;
    color: #dc3545;
}

/* Error Message */
.availability-error {
    background: #fff3cd;
    color: #856404;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
}

/* No Availability */
.availability-none {
    background: #fdecea;
    color: #dc3545;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
}

.toptheslider{
    z-index: 999999;
}
.input-error {
    border-color: #dc3545 !important; /* Bootstrap red */
}

.site-hero {
/*    position: relative;*/
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* Medium screens */
@media (min-width: 421px) {
    .site-hero,
    .hero-slide {
        height: 50vh !important;
        min-height: 200px !important;
    }
}

/* Large screens */
@media (min-width: 768px) {
    .site-hero,
    .hero-slide {
        height: 70vh !important;
        min-height: 300px !important;
    }
}

/* Extra large screens (optional) */
@media (min-width: 992px) {
    .site-hero,
    .hero-slide {
        height: 80vh !important; /* or whatever max you want */
        min-height: 400px !important;
    }
}

/* Typography scaling */
.hero-title {
    color: #fff;
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 700;
}

.custom-caption {
    color: #fff;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 15px;
    display: block;
}
