/* ====================================================
   Houda Hotels — Hotel Page Styles
   Inspired by: warm terracotta, steel teal, linen/cream
   ==================================================== */

:root {
    --terra:   #C85A3E;
    --terra-d: #A64832;
    --terra-l: #F0D5CC;
    --teal:    #3D7F96;
    --teal-l:  #B5CFD8;
    --sand:    #D4C4A8;
    --linen:   #F7F0E6;
    --linen-d: #EDE0CE;
}

/* ===== HOTEL HERO ===== */
.hotel-hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hotel-hero-slider { position: absolute; inset: 0; }
.hotel-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hotel-hero-slide.active { opacity: 1; }
.hotel-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hotel-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,10,5,.75) 0%, rgba(20,10,5,.25) 50%, rgba(0,0,0,.1) 100%);
}
.hotel-hero-content {
    position: relative; z-index: 2;
    padding: 0 0 60px;
    color: #fff;
    width: 100%;
}
.hotel-hero-content .container { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.hotel-location-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--terra);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.hotel-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hotel-hero-tagline { font-size: 1.1rem; font-weight: 300; opacity: .85; margin-bottom: 28px; }
.hotel-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: var(--terra-d); color: #fff; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #2d6f84; color: #fff; transform: translateY(-2px); }

/* Hotel hero mini info */
.hotel-hero-stats {
    display: flex; gap: 20px; flex-wrap: wrap;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 16px 24px;
    align-self: flex-end;
}
.hotel-hero-stat { text-align: center; }
.hotel-hero-stat strong { display: block; font-size: 1.2rem; font-weight: 700; }
.hotel-hero-stat span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

/* ===== HOTEL SUB-NAV ===== */
.hotel-subnav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    overflow-x: auto;
    scrollbar-width: none;
}
.hotel-subnav::-webkit-scrollbar { display: none; }
.hotel-subnav-inner {
    display: flex;
    min-width: max-content;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hotel-subnav a {
    display: flex; align-items: center; gap: 8px;
    padding: 18px 20px;
    font-size: .83rem;
    font-weight: 600;
    color: #777;
    letter-spacing: .04em;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all .25s;
    text-decoration: none;
}
.hotel-subnav a:hover { color: var(--terra); }
.hotel-subnav a.active { color: var(--terra); border-bottom-color: var(--terra); }

/* ===== HOTEL SECTIONS ===== */
.hotel-section { padding: 80px 0; }
.hotel-section:nth-child(even) { background: var(--linen); }
.hotel-section:nth-child(odd) { background: #fff; }

.hotel-section-header { margin-bottom: 48px; }
.hotel-section-header .section-eyebrow { color: var(--terra); }
.hotel-section-header .section-title { color: #1A1A2E; }
.hotel-section-header p { color: #666; font-size: .95rem; line-height: 1.8; max-width: 680px; margin-top: 16px; }

/* ===== HERO-CARD GALLERY ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}
.bento-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    grid-column: span 4;
    grid-row: span 1;
}
.bento-item.bento-hero { grid-column: span 8; grid-row: span 2; }
.bento-item.bento-tall { grid-column: span 4; grid-row: span 2; }
.bento-item.bento-wide { grid-column: span 8; grid-row: span 1; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bento-item:hover img { transform: scale(1.05); }
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,10,5,.6) 0%, transparent 50%);
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s;
}
.bento-item:hover .bento-overlay { opacity: 1; }
.bento-overlay span { color: #fff; font-size: .85rem; font-weight: 600; }

/* ===== ROOMS GRID ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(0,0,0,.06);
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.room-card-image { position: relative; height: 240px; overflow: hidden; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-card-image img { transform: scale(1.04); }
.room-card-body { padding: 24px; }
.room-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #1A1A2E; margin-bottom: 8px; }
.room-card-body p { font-size: .875rem; color: #777; line-height: 1.6; }
.room-tag {
    position: absolute; top: 12px; right: 12px;
    background: var(--terra);
    color: #fff; font-size: .7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    letter-spacing: .08em; text-transform: uppercase;
}

/* ===== SECTION WITH SPLIT LAYOUT ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-section.reverse .split-text { order: 2; }
.split-section.reverse .split-image { order: 1; }
.split-image { position: relative; }
.split-image img { width: 100%; height: 460px; object-fit: cover; border-radius: 20px; }
.split-image-accent {
    position: absolute; bottom: -16px; right: -16px;
    width: 55%; height: 55%;
    border: 3px solid var(--terra);
    border-radius: 20px;
    z-index: -1;
}
.split-text { padding: 20px 0; }
.split-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #1A1A2E; margin-bottom: 20px; line-height: 1.2; }
.split-text p { color: #666; line-height: 1.8; margin-bottom: 16px; }
.split-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.split-feature { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: #555; }
.split-feature::before { content: ''; width: 8px; height: 8px; background: var(--terra); border-radius: 50%; flex-shrink: 0; }

/* ===== BANNERS ===== */
.banner-strip {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 56px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.banner-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,21,51,.05) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.banner-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-strip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(13,21,51,.88) 0%, rgba(13,21,51,.6) 45%, rgba(13,21,51,.15) 100%);
}
.banner-strip-content {
    position: relative; z-index: 2;
    padding: 48px 56px;
    color: #fff;
    max-width: 640px;
}
.banner-strip-content .banner-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold, #C9A84C);
    margin-bottom: 10px;
    display: block;
}
.banner-strip-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.banner-strip-content p {
    opacity: .85;
    margin-bottom: 24px;
    font-size: .95rem;
    line-height: 1.6;
}
.banner-strip-deco {
    position: absolute;
    right: 48px; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: .08;
    pointer-events: none;
}

/* top banner bar */
.banner-top-bar {
    position: relative;
    overflow: hidden;
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.banner-top-bar .banner-top-inner {
    position: relative; z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 10px 32px;
    flex-wrap: wrap;
}
.banner-top-bar .banner-top-title {
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .03em;
}
.banner-top-bar .banner-top-sub {
    color: rgba(255,255,255,.75);
    font-size: .8rem;
}
.banner-fullwidth { width: 100%; min-height: 300px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--linen); padding: 80px 0; }
.reviews-section .section-eyebrow { color: var(--terra); }
.reviews-section .section-title { color: #1A1A2E; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    position: relative;
    border-top: 4px solid var(--terra);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-stars span { color: var(--terra); font-size: 1rem; }
.review-text { font-size: .9rem; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-text::before { content: '\201C'; font-size: 2rem; color: var(--terra-l); line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--terra); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
}
.review-author-info strong { display: block; font-size: .875rem; color: #1A1A2E; }
.review-author-info span { font-size: .75rem; color: #999; }
.review-hotel-badge {
    position: absolute; top: 16px; right: 16px;
    font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--teal); background: rgba(61,127,150,.1);
    padding: 3px 8px; border-radius: 10px;
}

/* ===== VIDEOS ===== */
.videos-section { padding: 80px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.video-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.video-card .video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-card .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-title { padding: 14px 16px; background: #fff; font-size: .875rem; font-weight: 600; color: #1A1A2E; }

/* ===== CONTACT HOTEL ===== */
.hotel-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
    .bento-item.bento-hero { grid-column: span 6; grid-row: span 2; }
    .bento-item.bento-tall { grid-column: span 3; grid-row: span 2; }
    .bento-item.bento-wide { grid-column: span 6; }
    .bento-item { grid-column: span 3; }
    .split-section { grid-template-columns: 1fr; gap: 32px; }
    .split-image img { height: 320px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .hotel-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hotel-section { padding: 56px 0; }
    .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .bento-item, .bento-item.bento-hero, .bento-item.bento-tall, .bento-item.bento-wide { grid-column: span 2; grid-row: span 1; }
    .bento-item.bento-hero { grid-row: span 2; }
    .rooms-grid { grid-template-columns: 1fr; }
    .hotel-hero-stats { display: none; }
    .banner-strip-content { padding: 24px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .hotel-subnav a { padding: 14px 16px; font-size: .78rem; }
}
