/* VARS Royal Palace - Hotel Rooms & Suites Catalog Stylesheet (hotel_rooms.css) */
:root {
    --royal-navy: #152551;
    --royal-gold: #C5A059;
    --royal-gold-dark: #a8843c;
    --royal-gold-light: #f7f2e7;
    --royal-dark: #081228;
}

body {
    background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
}

.rooms-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem 5rem;
}

/* HERO BANNER */
.hero-rooms {
    background: linear-gradient(135deg, rgba(8, 18, 40, 0.95) 0%, rgba(21, 37, 81, 0.92) 100%), url("../images/Hotel_Hall.jpg") center/cover no-repeat;
    color: #ffffff;
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 4px solid var(--royal-gold);
    box-shadow: 0 15px 35px rgba(8, 18, 40, 0.15);
}

.hero-crest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-rooms h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-rooms p.lead {
    color: #e2e8f0;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* FILTER TABS */
.filter-tabs-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.room-filter-tab {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.room-filter-tab:hover {
    border-color: var(--royal-gold);
    background: #fffcf5;
    color: var(--royal-navy);
}

.room-filter-tab.active {
    background: var(--royal-navy);
    color: #ffffff;
    border-color: var(--royal-gold);
    box-shadow: 0 4px 14px rgba(21, 37, 81, 0.2);
}

/* SUITES GRID */
.suites-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-bottom: 4rem;
}

.suite-card-box {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.suite-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(21, 37, 81, 0.14);
    border-color: var(--royal-gold);
}

.suite-img-holder {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #081228;
}

.suite-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.suite-card-box:hover .suite-img-holder img {
    transform: scale(1.06);
}

.suite-estate-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(8, 18, 40, 0.88);
    color: var(--royal-gold);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.suite-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    text-align: right;
}

.price-drop-tag {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.price-pill {
    background: var(--royal-navy);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--royal-gold);
    display: inline-block;
}

.suite-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.suite-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--royal-navy);
    margin: 0 0 6px;
}

.suite-card-specs {
    display: flex;
    gap: 12px;
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.suite-card-desc {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.suite-pkg-synergy {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 0.75rem;
    color: #334155;
}

.suite-pkg-synergy strong {
    color: var(--royal-navy);
}

.suite-amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.amenity-pill {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
}

.btn-reserve-suite {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    background: var(--royal-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
    display: block;
    box-sizing: border-box;
    border: 1.5px solid var(--royal-navy);
}

.btn-reserve-suite:hover {
    background: var(--royal-gold);
    color: var(--royal-dark);
    border-color: var(--royal-gold);
}

/* CTA FOOTER */
.cta-rooms-banner {
    background: linear-gradient(135deg, #081228 0%, #152551 100%);
    border: 2px solid var(--royal-gold);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(8, 18, 40, 0.2);
}

.cta-rooms-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
}

.cta-rooms-banner p {
    color: #e2e8f0;
    font-size: 0.96rem;
    max-width: 600px;
    margin: 0 auto 24px;
}
