/* ========================================
   CHAMBRES - PAGE STYLES
   ======================================== */

/* Force header visible on page load (no hero transparent effect) */
.header {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(58, 50, 40, 0.1);
}

.header .header-logo-text {
    color: var(--primary-dark);
    opacity: 1;
    pointer-events: auto;
}

.header .nav-toggle-label span {
    background: var(--text);
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-bar {
    background: var(--bg);
    padding: 0.9rem 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--bg-alt);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-light);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li + li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    margin-right: 0.5rem;
    color: var(--secondary);
}

.breadcrumb a {
    color: var(--primary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

/* ========================================
   PAGE HERO (smaller than home)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 50, 40, 0.3) 0%,
        rgba(58, 50, 40, 0.55) 50%,
        rgba(58, 50, 40, 0.8) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.25rem;
    max-width: 700px;
}

.page-hero-content .section-label {
    color: var(--secondary-light);
    font-size: 0.9rem;
    letter-spacing: 0.25em;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ========================================
   ROOM SHOWCASE
   ======================================== */
.room-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.room-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.room-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.room-gallery-main:hover img {
    transform: scale(1.03);
}

/* Room details */
.room-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-badge {
    display: inline-block;
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.room-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.room-description {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Room features grid */
.room-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.room-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.room-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.room-feature i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.room-feature strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.room-feature span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   ROOM DIVIDER
   ======================================== */
.room-divider {
    background: var(--primary);
    padding: 2rem 0;
}

.room-divider-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.room-divider-icon {
    color: var(--secondary-light);
    font-size: 0.7rem;
    flex-shrink: 0;
    display: none;
}

.room-divider p {
    color: var(--white);
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
}

/* ========================================
   EXTRA BED BLOCK
   ======================================== */
.extra-bed-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extra-bed-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.extra-bed-image img {
    width: 100%;
    height: auto;
    display: block;
}

.extra-bed-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extra-bed-content .section-label {
    text-align: left;
}

.extra-bed-content p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.extra-bed-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.extra-bed-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.extra-bed-list i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

/* ========================================
   COMFORT GRID
   ======================================== */
.comfort-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.comfort-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
}

.comfort-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comfort-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.12);
}

.comfort-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.comfort-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.comfort-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-block {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-block p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.35);
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }

    .room-showcase {
        flex-direction: row;
        gap: 3rem;
    }

    .room-showcase-reverse {
        flex-direction: row-reverse;
    }

    .room-gallery {
        flex: 0 0 48%;
    }

    .room-details {
        flex: 1;
    }

    .room-features {
        grid-template-columns: 1fr 1fr;
    }

    .extra-bed-block {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .extra-bed-image {
        flex: 0 0 45%;
    }

    .extra-bed-content {
        flex: 1;
    }

    .comfort-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .room-divider-icon {
        display: block;
    }

    .room-divider p {
        font-size: 1.15rem;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .page-hero {
        min-height: 55vh;
    }

    .page-hero-content {
        padding: 4rem 2rem;
    }

    .room-showcase {
        gap: 4rem;
    }

    .room-gallery-main img {
        min-height: 420px;
        object-fit: cover;
    }

    .room-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }

    .comfort-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .room-divider {
        padding: 2.5rem 0;
    }
}
