
/* swiper slider */
/* =========================
   HERO SECTION
========================= */

.hero-section-3 {
    position: relative;
    width: 100%;
}

.heroSwiper,
.swiper-slide {
    width: 100%;
     height: 600px;
}

/* =========================
   HERO SLIDE
========================= */

.hero-slide {
    position: relative;
    width: 100%;
     height: 100%;
    display: flex;
    align-items: flex-end;   /* Bottom align */
    justify-content: center; /* Center horizontally */
}

/* Full Background Image */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* =========================
   TEXT CONTENT
========================= */

.hero-content {
    position: relative;   /* IMPORTANT */
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;  /* Bottom spacing */
    padding: 0 20px;
}

.text-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    width: 100%;
}

/* Typography */

.text-box h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Buttons */

.hero-buttons a {
    margin: 0 8px;
}

/* Remove default blue */
.swiper-button-next,
.swiper-button-prev {
    width: 42px!important;
    height: 42px!important;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;   /* Force white */
    transition: 0.3s ease;
}

/* Smaller arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: bold;
    color: #ffffff !important;
}

/* Hover effect (subtle white glow) */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Position adjust */
.swiper-button-next {
    right: 25px;
}

.swiper-button-prev {
    left: 25px;
}


/* =========================
   SWIPER DOTS DESIGN
========================= */

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 6px !important;
    transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: #d4af37; /* Gold active */
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .heroSwiper,
    .swiper-slide,
    .hero-slide {
        height: 70vh;
    }

    .text-box {
        padding: 20px;
    }

    .text-box h1 {
        font-size: 24px;
    }

    .text-box p {
        font-size: 14px;
    }

}
/* video banner */
.hero-section-3 {
    width: 100%;
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 600px;   /* Desktop fixed height */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Video Full Background */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Text Content */

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.text-box {
    background: rgba(0, 0, 0, 0.55);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    width: 100%;
}

.text-box h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Responsive */

@media (max-width: 992px) {
    .hero-video-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        height: 380px;
    }

    .text-box {
        padding: 18px;
    }

    .text-box h1 {
        font-size: 22px;
    }

    .text-box p {
        font-size: 13px;
    }
}
/* Booking section */
.booking-section-2{
    position: relative;
    z-index: 111;
    margin-top: -60px;
}
/* micon section */
.micon-content h2{
    color: black !important;

}
/* category section */
.room-category-section {
    background: #f8f9fa;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

/* Overlay */

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.room-category-section .title{
    color: white;
}
.room-category-section .sub{
    color: blacl;
    font-weight: 600;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.hotel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
