/* ============================================
   Rooms Archive Page Styles
   ============================================ */

/* --- Archive Hero --- */
.rooms-archive-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 600px;
    color: var(--color-white);
}

.rooms-archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 20, 0.6);
}

.rooms-archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.rooms-archive-hero-accent {
    color: var(--color-white);
    opacity: 0.8;
}

.rooms-archive-hero-title {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rooms-archive-hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
}

/* --- Responsive --- */

@media (max-width: 992px) {
    .rooms-archive-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .rooms-archive-hero {
        height: 40vh;
        /*min-height: 300px;*/
    }
    .rooms-archive-hero-content{
        margin: 100px 0 auto;
    }

    .rooms-archive-hero-title {
        font-size: 30px;
    }

    .rooms-archive-hero-text {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .rooms-archive-hero-title {
        font-size: 26px;
    }
}
