/* ═══════════════════════════════════════════════════════════════════════
   ROOM DETAIL PAGES — Shared Styles
   ═══════════════════════════════════════════════════════════════════════ */

body.room-detail-page {
    background-color: var(--mlhova);
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.rd-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rd-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rd-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rd-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(1, 30, 96, 0.92) 0%, rgba(1, 30, 96, 0.5) 50%, rgba(1, 30, 96, 0.2) 100%);
}

.rd-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    color: #fff;
}

.rd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

.rd-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.rd-breadcrumb a:hover {
    color: var(--zluta);
}

.rd-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.rd-meta {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.rd-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rd-meta i {
    color: var(--zluta);
}

.rd-hero-btn {
    background: var(--zluta);
    color: var(--deep-blue);
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-out);
    font-family: inherit;
}

.rd-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(244, 182, 0, 0.45);
}

/* ── Quick Stats Bar ─────────────────────────────────────────────── */
.rd-stats {
    background: var(--mlhova);
    border-bottom: 1px solid rgba(1, 30, 96, 0.06);
    padding: 0;
}

.rd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.rd-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(1, 30, 96, 0.06);
    transition: background 0.3s;
}

.rd-stat:last-child {
    border-right: none;
}

.rd-stat:hover {
    background: rgba(244, 182, 0, 0.04);
}

.rd-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 182, 0, 0.12), rgba(244, 182, 0, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zluta);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.rd-stat-text {
    display: flex;
    flex-direction: column;
}

.rd-stat-text strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.rd-stat-text span {
    font-size: 0.8rem;
    color: var(--deep-blue);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ── Sections ────────────────────────────────────────────────────── */
.rd-section {
    padding: 72px 0;
}

.rd-section-alt {
    background: rgba(1, 30, 96, 0.015);
}

.rd-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.rd-section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.rd-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--deep-blue);
    opacity: 0.7;
    margin-bottom: 16px;
}

/* ── Photo Gallery ───────────────────────────────────────────────── */
.rd-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rd-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.rd-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* ── Two Column Cards ────────────────────────────────────────────── */
.rd-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rd-card {
    padding: 40px;
    border-radius: 24px;
}

.rd-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rd-card h3 i {
    color: var(--zluta);
    font-size: 1.3rem;
}

.rd-equip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rd-equip-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--deep-blue);
    padding: 10px 14px;
    background: rgba(1, 30, 96, 0.03);
    border-radius: 12px;
    transition: background 0.3s;
}

.rd-equip-list li:hover {
    background: rgba(244, 182, 0, 0.08);
}

.rd-equip-list li i {
    color: var(--zluta);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Pricing */
.rd-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(1, 30, 96, 0.06);
    font-size: 0.95rem;
    color: var(--deep-blue);
}

.rd-price-row:last-of-type {
    border-bottom: none;
}

.rd-price-row em {
    font-style: normal;
    opacity: 0.5;
    font-size: 0.85rem;
}

.rd-price-row strong {
    font-size: 1.15rem;
    font-weight: 700;
}

.rd-price-featured {
    background: rgba(244, 182, 0, 0.06);
    border-radius: 12px;
    padding: 16px;
    border-bottom: none;
    margin: 4px -16px;
}

.rd-price-featured strong {
    color: var(--deep-blue);
    font-size: 1.25rem;
}

.rd-price-note {
    font-size: 0.8rem !important;
    opacity: 0.45 !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
}

.rd-card-btn {
    width: 100%;
    padding: 16px;
    background: var(--zluta);
    color: var(--deep-blue);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.3s var(--ease-out);
}

.rd-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 182, 0, 0.35);
}

/* ── Use Cases Grid ──────────────────────────────────────────────── */
.rd-use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rd-use-case {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent to let mlhova through but keep glass look */
    border-radius: 16px;
    border: 1px solid rgba(1, 30, 96, 0.06);
    transition: all 0.3s var(--ease-out);
}

.rd-use-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(1, 30, 96, 0.06);
    border-color: var(--zluta);
}

.rd-use-case i {
    font-size: 1.5rem;
    color: var(--zluta);
    flex-shrink: 0;
}

.rd-use-case span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-blue);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .rd-hero {
        height: 420px;
    }

    .rd-hero-content h1 {
        font-size: 2.2rem;
    }

    .rd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rd-stat {
        border-right: none;
        border-bottom: 1px solid rgba(1, 30, 96, 0.06);
    }

    .rd-stat:nth-child(odd) {
        border-right: 1px solid rgba(1, 30, 96, 0.06);
    }

    .rd-two-col {
        grid-template-columns: 1fr;
    }

    .rd-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .rd-use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rd-hero {
        height: 380px;
    }

    .rd-hero-content h1 {
        font-size: 1.8rem;
    }

    .rd-meta {
        gap: 12px;
        font-size: 0.85rem;
    }

    .rd-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rd-gallery {
        grid-template-columns: 1fr;
    }

    .rd-gallery img {
        height: 220px;
    }

    .rd-use-cases {
        grid-template-columns: 1fr;
    }

    .rd-section {
        padding: 48px 0;
    }
}
