/* =================================
   HOTEL HERO
================================= */

.hotel-details-hero{
    position:relative;
    min-height:92vh;
    overflow:hidden;
}

/* SLIDER */

.hero-slider{
    position:absolute;
    inset:0;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.48);
    z-index:1;
}

/* CONTENT */

.hotel-hero-content{
    position:relative;
    z-index:5;

    padding-top:150px;

    color:#fff;

    max-width:760px;
}

.hotel-hero-content h1{
    font-size:54px;
    font-weight:600;

    line-height:1.2;

    margin-bottom:14px;
}

.hotel-hero-content p{
    font-size:17px;
    line-height:1.7;

    margin-bottom:28px;

    color:#e5e5e5;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-btn{
    border:none;

    text-decoration:none;

    background:#ff9800;

    color:#fff;

    padding:13px 26px;

    border-radius:40px;

    font-size:14px;
    font-weight:600;

    transition:0.35s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
}

/* =================================
   BOOKING BAR
================================= */

.booking-bar{
    position:relative;
    z-index:10;

    margin-top:70px;

    background:rgba(255,255,255,0.14);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,0.18);

    border-radius:22px;

    padding:26px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:18px;

    flex-wrap:wrap;
}

.booking-item{
    color:#fff;
}

.booking-item h3{
    font-size:26px;
    font-weight:600;

    color:#ff9800;

    margin-bottom:6px;
}

.booking-item p{
    margin:0;

    color:#ddd;

    font-size:14px;
}

/* BUTTON */

.booking-select{
    border:none;
    background:transparent;

    color:#fff;

    font-size:15px;
    font-weight:500;
}

/* BOOK BTN */

.booking-now-btn{
    border:none;

    background:linear-gradient(
        45deg,
        #ff9800,
        #ff0066
    );

    color:#fff;

    padding:14px 30px;

    border-radius:40px;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

    transition:0.35s;
}

.booking-now-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* DATE INPUT */

.booking-date-input{
    background:transparent;

    border:none;

    color:#fff;

    font-size:15px;
    font-weight:500;

    outline:none;

    cursor:pointer;

    width:190px;
}

/* SELECTED ROOM */

.selected-room-info{
    margin-top:18px;
}

.selected-room-info p{
    font-size:14px;
    color:#fff;
}

/* =================================
   FLATPICKR
================================= */

.flatpickr-calendar{
    border-radius:18px !important;

    overflow:hidden;

    box-shadow:0 18px 50px rgba(0,0,0,0.14) !important;
}

.flatpickr-day.selected{
    background:#ff9800 !important;
    border-color:#ff9800 !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange{
    background:#ff9800 !important;
    border-color:#ff9800 !important;
}

/* =================================
   GALLERY MODAL
================================= */

.gallery-modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.94);

    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:0.4s;
}

.gallery-modal.show{
    opacity:1;
    visibility:visible;
}

/* WRAPPER */

.gallery-wrapper{
    width:90%;
    max-width:1100px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;
}

/* CLOSE */

.gallery-close{
    position:absolute;

    top:18px;
    right:30px;

    color:#fff;

    font-size:34px;

    cursor:pointer;

    z-index:100;
}

/* MAIN IMAGE */

.gallery-main-image-wrap{
    width:100%;
    max-width:850px;

    height:500px;

    border-radius:20px;

    overflow:hidden;

    margin-bottom:24px;

    background:#111;

    display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-main-image{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* THUMBNAILS */

.gallery-thumbnails{
    width:100%;

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;
}

/* THUMB */

.gallery-thumb{
    width:95px;
    height:70px;

    object-fit:cover;

    border-radius:12px;

    cursor:pointer;

    border:2px solid transparent;

    transition:0.3s;
}

.gallery-thumb:hover{
    transform:translateY(-3px);
}

.active-thumb{
    border-color:#ff9800;
}

/* =================================
   GUEST MODAL
================================= */

.guest-modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.6);

    z-index:9999;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:0.4s;
}

.guest-modal.show{
    opacity:1;
    visibility:visible;
}

.guest-box{
    background:#fff;

    width:430px;

    border-radius:20px;

    padding:32px;

    position:relative;
}

.guest-close{
    position:absolute;

    right:22px;
    top:16px;

    font-size:28px;

    cursor:pointer;
}

.guest-box h3{
    font-size:26px;

    margin-bottom:30px;

    font-weight:600;
}

/* ROW */

.guest-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:28px;
}

.guest-row span{
    font-size:18px;
    font-weight:500;
}

/* COUNTER */

.guest-counter{
    display:flex;
    align-items:center;
    gap:18px;
}

.guest-counter button{
    width:42px;
    height:42px;

    border-radius:50%;

    border:1px solid #ddd;

    background:#fff;

    font-size:22px;
}

.guest-counter span{
    font-size:22px;
}

/* =================================
   ROOMS SECTION
================================= */

.rooms-list-section{
    padding:80px 0;

    background:#f8f8f8;
}

/* CARD */

.room-card{
    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:0.35s;

    box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.room-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */

.room-image{
    height:250px;

    overflow:hidden;
}

.room-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.room-card:hover .room-image img{
    transform:scale(1.08);
}

/* CONTENT */

.room-content{
    padding:24px;
}

.room-content h3{
    font-size:26px;

    margin-bottom:10px;

    font-weight:600;
}

.room-location{
    color:#ff9800;

    font-size:14px;
    font-weight:500;

    margin-bottom:14px;
}

.room-desc{
    color:#666;

    font-size:14px;

    line-height:1.8;

    margin-bottom:20px;
}

/* FEATURES */

.room-features{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-bottom:24px;
}

.room-features span{
    background:#f2f2f2;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;
}

/* BOTTOM */

.room-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:15px;
}

.room-bottom h4{
    font-size:28px;
    font-weight:700;

    margin-bottom:0;
}

.room-bottom span{
    font-size:13px;
    color:#777;
}

.room-btn{
    background:#ff9800;

    color:#fff;

    border:none;

    padding:12px 22px;

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    transition:0.35s;
}

.room-btn:hover{
    background:#111;
    color:#fff;
}

/* ACTIVE ROOM BUTTON */

.select-room-btn.active{
    background:#16a34a !important;
}

/* =================================
   TABLET
================================= */

@media(max-width:991px){

    .hotel-details-hero{
        min-height:auto;

        padding-bottom:70px;
    }

    .hotel-hero-content{
        padding-top:130px;
    }

    .hotel-hero-content h1{
        font-size:42px;
    }

    .hotel-hero-content p{
        font-size:16px;
    }

    .booking-bar{
        flex-direction:column;
        align-items:flex-start;
    }

    .gallery-main-image-wrap{
        height:360px;
    }

    .room-image{
        height:230px;
    }

}

/* =================================
   MOBILE
================================= */

@media(max-width:576px){

    .hotel-details-hero{
        min-height:auto;

        padding-bottom:50px;
    }

    .hotel-hero-content{
        padding-top:115px;
    }

    .hotel-hero-content h1{
        font-size:30px;

        line-height:1.3;
    }

    .hotel-hero-content p{
        font-size:14px;
    }

    .hero-buttons{
        gap:10px;
    }

    .hero-btn{
        padding:12px 18px;

        font-size:13px;
    }

    .booking-bar{
        margin-top:45px;

        padding:20px;
    }

    .booking-item{
        width:100%;
    }

    .booking-item h3{
        font-size:22px;
    }

    .booking-select,
    .booking-date-input{
        font-size:14px;
    }

    .booking-now-btn{
        width:100%;

        display:flex;
        justify-content:center;
    }

    .selected-room-info p{
        font-size:13px;
    }

    /* GALLERY */

    .gallery-wrapper{
        padding:18px;
    }

    .gallery-main-image-wrap{
        height:240px;
    }

    .gallery-thumbnails{
        justify-content:flex-start;
    }

    .gallery-thumb{
        width:72px;
        height:58px;
    }

    .gallery-close{
        font-size:30px;

        right:16px;
    }

    /* GUEST */

    .guest-box{
        width:92%;

        padding:24px 20px;
    }

    .guest-box h3{
        font-size:22px;
    }

    .guest-row span{
        font-size:15px;
    }

    .guest-counter{
        gap:12px;
    }

    .guest-counter button{
        width:36px;
        height:36px;

        font-size:18px;
    }

    .guest-counter span{
        font-size:18px;
    }

    /* ROOMS */

    .rooms-list-section{
        padding:60px 0;
    }

    .room-image{
        height:210px;
    }

    .room-content{
        padding:20px;
    }

    .room-content h3{
        font-size:22px;
    }

    .room-desc{
        font-size:13px;
    }

    .room-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .room-bottom h4{
        font-size:24px;
    }

    .room-btn{
        width:100%;

        text-align:center;
    }

}