/* ================= FILTER BAR ================= */
.filter-bar {
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.filter-bar select,
.filter-bar button {
    padding: 8px 14px;
    margin: 5px;
    border-radius: 0px !important;
}

/* ================= ACCOMMODATION CARD WRAPPER ================= */
.hotel-card {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.stars {
    text-align: center;
    color: #f4b400;
    margin-bottom: 15px;
}

/* ================= IMAGE FILLED CARD ================= */
/* ================= IMAGE FILLED CARD ================= */
.hotel-image-card {
    position: relative;
    width: 100%;
    max-width: 800px; /* Set a max-width so centering is visible on wider screens */
    height: 400px;
    margin: 0 auto;    /* Centers the card horizontally */
    border-radius: 0px !important;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.hotel-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.3),
        rgba(0,0,0,.0),
        rgba(0,0,0,.3)
    );
    pointer-events: none;
}

/* 2 Image Collage - 2 SIDE BY SIDE IMAGES */
.image-collage-2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns (50% width each) */
    grid-template-rows: 1fr;        /* Single full height row */
    height: 100%;
    width: 100%;
}

.image-collage-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transform: scale(1);
    transition: transform .8s ease;
    opacity: 0;
    animation: cinemaIn 1.6s cubic-bezier(.22,1,.36,1) forwards;
}

/* Animation delay for the 2 side-by-side images */
.image-collage-2 img:nth-child(1) { animation-delay: .2s; }
.image-collage-2 img:nth-child(2) { animation-delay: .4s; }

/* Hover zoom effect */
.hotel-image-card:hover img {
    transform: scale(1.08);
}

/* Subtle overlay tint */
.hotel-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.3),
        rgba(0,0,0,.0),
        rgba(0,0,0,.3)
    );
    pointer-events: none;
}

/* ================= LAYERED OUTLINE TEXT EFFECTS ================= */
.hotel-title-curve {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    max-width: 95%;
    text-align: center;
    z-index: 5;
    animation: titleFloat 1.4s ease forwards;
    white-space: normal;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;

    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    color: #000000 !important;

    text-shadow:
        /* White Inner Ring */
        -3px -3px 0 #fff,  3px -3px 0 #fff, -3px  3px 0 #fff,  3px  3px 0 #fff,
        -3px  0px 0 #fff,  3px  0px 0 #fff,  0px -3px 0 #fff,  0px  3px 0 #fff,
         2px  2px 0 #fff, -2px  2px 0 #fff,  2px -2px 0 #fff, -2px -2px 0 #fff,

        /* Outer Black Framing */
        -4px -4px 0 #000,  4px -4px 0 #000, -4px  4px 0 #000,  4px  4px 0 #000,
        -4px  0px 0 #000,  4px  0px 0 #000,  0px -4px 0 #000,  0px  4px 0 #000,
        -5px -1px 0 #000,  5px -1px 0 #000, -5px  1px 0 #000,  5px  1px 0 #000,
        -1px -5px 0 #000,  1px -5px 0 #000, -1px  5px 0 #000,  1px  5px 0 #000;
}

/* Clickable Web Link Styling inside outline text */
.hotel-title-curve a {
    color: #000000 !important;
    text-decoration: underline;
}

@keyframes titleFloat {
    from { opacity: 0; transform: translate(-50%,-20%) scale(.9); }
    to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

@keyframes cinemaIn {
    from {
        opacity: 0;
        transform: translateY(80px) scale(.85) rotateX(12deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}