/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Background image */
.hero-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* Top text */
.hero-top-text {
    color: #ffb000;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Buttons */
.btn-primary-custom {
    background: #d87a00;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
}

.btn-primary-custom:hover {
    background: #b86500;
    color: #fff;
}

.btn-outline-light-custom {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-top-text {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .btn-primary-custom,
    .btn-outline-light-custom {
        width: 100%;
        max-width: 260px;
    }
}


/* Section background */
.amenities-section {
    background: #f7f7f7;
}

/* Top small text */
.section-top {
    color: #d87a00;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Main title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

/* Amenity box */
.amenity-box {
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.amenity-box:hover {
    transform: translateY(-5px);
}

/* Icon */
.amenity-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

/* Title */
.amenity-title {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Text */
.amenity-text {
    font-size: 14px;
    color: #777;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .amenity-icon {
        font-size: 34px;
    }

    .amenity-title {
        font-size: 16px;
    }
}



/* Section bg */
.rooms-section {
    background: #f7f7f7;
}

/* Reuse from previous if exists */
.section-top {
    color: #d87a00;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 13px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* View all */
.view-all {
    color: #d87a00;
    font-weight: 600;
    text-decoration: none;
}

/* Card */
.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
}

/* Image */
.room-img-wrapper {
    position: relative;
}

.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Price badge */
.price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d87a00;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Body */
.room-body {
    padding: 20px;
}

.room-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.room-text {
    font-size: 14px;
    color: #666;
}

/* Tags */
.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.room-tags span {
    background: #f1f1f1;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Button */
.book-outline {
    border: 2px solid #d87a00;
    color: #d87a00;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
}

.book-outline:hover {
    background: #d87a00;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .section-title {
        font-size: 26px;
    }

    .room-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .view-all {
        width: 100%;
        margin-top: 10px;
    }
}


/* Section */
.cta-section {
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image */
.cta-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    z-index: 1;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: auto;
}

/* Title */
.cta-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Text */
.cta-text {
    font-size: 15px;
    opacity: 0.9;
}

/* Button */
.cta-btn {
    background: #fff;
    color: #333;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
}

.cta-btn:hover {
    background: #d87a00;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .cta-section {
        height: 380px;
    }

    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        height: auto;
        padding: 80px 0;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-text {
        font-size: 14px;
    }
}

