/* ============================================================
   HOTEL RIVEL — VENUE GUIDE PAGE STYLESHEET
   Scope: .rivel-venue-guide-template (body also carries
   .rivel-site for shared header/footer/modal styles defined in
   global.css).

   Organized in the same order the sections appear on the page.
   Each section below has its own comment block and its own set
   of purpose-named classes (e.g. the "About" section uses
   .complete-estate-*, not a generic borrowed name) so the CSS
   maps directly onto page content.
   ============================================================ */


/* ============================================================
   BASE / RESET
   ============================================================ */
.rivel-venue-guide-template *,
.rivel-venue-guide-template *::before,
.rivel-venue-guide-template *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.rivel-venue-guide-template a { text-decoration: none; color: inherit; }
.rivel-venue-guide-template ul { list-style: none; }
.rivel-venue-guide-template button { border: none; background: none; cursor: pointer; font-family: inherit; }
.rivel-venue-guide-template img { display: block; max-width: 100%; }
.rivel-venue-guide-template .text-ivory { color: var(--clr-warm-ivory); }
.rivel-venue-guide-template .text-terracotta { color: var(--clr-terracotta); }


/* ============================================================
   SHARED — EYEBROW LABELS
   Used at the top of every section on this page.
   ============================================================ */
.rivel-venue-guide-template .eyebrow-light-bg {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 1rem; color: var(--clr-terracotta);
}
.rivel-venue-guide-template .eyebrow-dark-bg {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 1rem; color: var(--clr-warm-ivory);
}


/* ============================================================
   SHARED — SECTION SCAFFOLDING
   Every section below (except the hero and "The Complete
   Estate") follows this pattern: a full-width <section> with
   consistent padding, an inner .container capped at 1280px, and
   a .section-header-split intro (eyebrow + heading on one side,
   a short description on the other).
   ============================================================ */
.rivel-venue-guide-template section { padding: 5rem 1.5rem; }
.rivel-venue-guide-template .container { max-width: 1280px; margin: 0 auto; }
.rivel-venue-guide-template .section-header-split {
    display: flex; flex-direction: column; gap: 1.5rem;
    margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(32,36,31,0.1);
}
.rivel-venue-guide-template .section-heading {
    font-family: var(--font-primary); font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: var(--clr-text-primary);
}
.rivel-venue-guide-template .section-desc {
    font-family: var(--font-primary); font-size: 1rem; line-height: 1.7;
    color: var(--clr-text-secondary); max-width: 480px;
}
@media (min-width: 1024px) {
    .rivel-venue-guide-template section { padding: 7rem 2rem; }
    .rivel-venue-guide-template .section-header-split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 3rem; }
}


/* ============================================================
   SECTION: HERO
   Compact variant (shorter viewport, no feature-badge column,
   breadcrumb row) — same pattern used on every Plan Your Group /
   utility-style page.
   ============================================================ */
.rivel-venue-guide-template .hero-section {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    margin-top: 0 !important;
    display: flex; align-items: flex-end;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    color: var(--clr-warm-ivory);
    isolation: isolate;
}
.rivel-venue-guide-template .hero-bg-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}
.rivel-venue-guide-template .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(210deg, rgba(16,42,32,0.10) 0%, rgba(16,42,32,0.75) 60%, rgba(10,26,20,0.95) 100%);
    z-index: -1;
}
.rivel-venue-guide-template .hero-container {
    width: 100%; max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column; justify-content: space-between; gap: 4rem;
}
.rivel-venue-guide-template .hero-content-left { display: flex; flex-direction: column; max-width: 750px; padding-top: 0; }
.rivel-venue-guide-template .hero-title {
    font-family: var(--font-primary); font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700; text-transform: uppercase; line-height: 0.98;
    letter-spacing: -0.035em; margin-bottom: 1.25rem;
}
.rivel-venue-guide-template .hero-description {
    font-family: var(--font-primary); font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6; color: rgba(245,242,233,0.85); max-width: 500px;
    margin-top: 0; margin-bottom: 2.25rem;
}
.rivel-venue-guide-template .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.rivel-venue-guide-template .hero-btn-primary,
.rivel-venue-guide-template .hero-btn-secondary {
    font-family: var(--font-primary); font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 1rem; text-decoration: none;
}
.rivel-venue-guide-template .hero-btn-primary {
    background-color: var(--clr-warm-ivory); color: var(--clr-primary-green);
    padding: 0.375rem 0.375rem 0.375rem 1.5rem;
}
.rivel-venue-guide-template .hero-btn-primary:hover { background-color: #ffffff; }
.rivel-venue-guide-template .btn-icon-wrapper {
    background-color: rgba(24,58,43,0.1); border: 1px solid rgba(24,58,43,0.15);
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition-fast);
}
.rivel-venue-guide-template .hero-btn-primary:hover .btn-icon-wrapper { transform: translateX(4px); }
.rivel-venue-guide-template .hero-btn-secondary {
    background-color: transparent; color: var(--clr-warm-ivory);
    border: 1px solid rgba(245,242,233,0.4); padding: 0.375rem 1.5rem 0.375rem 0.375rem;
}
.rivel-venue-guide-template .hero-btn-secondary:hover { background-color: rgba(245,242,233,0.1); border-color: var(--clr-warm-ivory); }
.rivel-venue-guide-template .btn-icon-wrapper-outline {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(245,242,233,0.5);
    display: flex; align-items: center; justify-content: center;
}
.rivel-venue-guide-template .hero-section-compact {
    min-height: 60vh; min-height: 60dvh;
    align-items: flex-end;
    padding: 8rem 2rem 3.5rem;
}
.rivel-venue-guide-template .hero-section-compact .hero-container {
    flex-direction: column; align-items: flex-start; gap: 0;
}
.rivel-venue-guide-template .hero-breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-primary); font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(245,242,233,0.65); margin-bottom: 1.25rem;
}
.rivel-venue-guide-template .hero-breadcrumb a { color: rgba(245,242,233,0.85); transition: color var(--transition-fast); }
.rivel-venue-guide-template .hero-breadcrumb a:hover { color: var(--clr-warm-ivory); }
.rivel-venue-guide-template .hero-breadcrumb span:last-child { color: var(--clr-warm-ivory); }
@media (min-width: 1440px) {
    .rivel-venue-guide-template .hero-section { padding: 10rem 4rem 5rem; }
    .rivel-venue-guide-template .hero-container { max-width: 1280px; }
}
@media (max-width: 767px) {
    .rivel-venue-guide-template .hero-section { min-height: 100svh; padding: 7rem 1.5rem 3rem; align-items: flex-end; }
    .rivel-venue-guide-template .hero-section-compact { min-height: 50vh; min-height: 50svh; padding: 7rem 1.5rem 3rem; }
    .rivel-venue-guide-template .hero-container { gap: 2.5rem; }
    .rivel-venue-guide-template .hero-content-left { max-width: 100%; }
    .rivel-venue-guide-template .hero-title { font-size: clamp(1.7rem, 8vw, 2.5rem); margin-top: 2rem; margin-bottom: 1rem; }
    .rivel-venue-guide-template .hero-description { font-size: 0.9rem; max-width: 100%; margin-bottom: 1.75rem; }
    .rivel-venue-guide-template .hero-actions { gap: 0.75rem; }
}
@media (max-width: 480px) {
    .rivel-venue-guide-template .hero-section { padding-left: 1.25rem; padding-right: 1.25rem; }
    .rivel-venue-guide-template .hero-title { font-size: 1.65rem; margin-top: 1.75rem; }
    .rivel-venue-guide-template .hero-description { font-size: 0.875rem; }
    .rivel-venue-guide-template .hero-btn-primary, .rivel-venue-guide-template .hero-btn-secondary { font-size: 0.7rem; }
}


/* ============================================================
   SECTION: THE COMPLETE ESTATE (About)
   Two-column layout: copy + stat callouts on the left, a large
   estate-map image on the right. Wrapped in
   .complete-estate-container (max-width: 1280px, matching every
   other section's .container) so this section lines up with the
   rest of the page instead of stretching full-bleed on wide
   screens.
   ============================================================ */
.rivel-venue-guide-template .complete-estate-section { background-color: var(--clr-warm-ivory); padding: 5rem 1.5rem; }
.rivel-venue-guide-template .complete-estate-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2.5rem;
}
.rivel-venue-guide-template .complete-estate-heading {
    font-family: var(--font-primary); font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500; margin-bottom: 1rem;
}
.rivel-venue-guide-template .complete-estate-heading-italic {
    font-family: var(--font-editorial); font-style: italic; color: var(--clr-terracotta);
}
.rivel-venue-guide-template .complete-estate-desc {
    font-size: 1rem; line-height: 1.7; color: var(--clr-text-secondary);
    max-width: 460px; margin-bottom: 1.75rem;
}
.rivel-venue-guide-template .complete-estate-divider { border: none; border-top: 1px solid rgba(32,36,31,0.12); margin: 1.75rem 0; }
.rivel-venue-guide-template .complete-estate-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.rivel-venue-guide-template .estate-stat { display: flex; flex-direction: column; gap: 0.35rem; }
.rivel-venue-guide-template .estate-stat-value { font-family: var(--font-primary); font-size: 1.5rem; font-weight: 600; color: var(--clr-primary-green); }
.rivel-venue-guide-template .estate-stat-label {
    font-family: var(--font-primary); font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    color: var(--clr-text-muted); font-weight: 400; max-width: 220px; line-height: 1.4;
}
.rivel-venue-guide-template .complete-estate-fine-print { font-size: 0.8125rem; color: var(--clr-text-muted); line-height: 1.6; }
.rivel-venue-guide-template .complete-estate-image-wrap { border-radius: 18px; overflow: hidden; }
.rivel-venue-guide-template .complete-estate-image { width: 100%; display: block; }
@media (min-width: 1024px) {
    .rivel-venue-guide-template .complete-estate-section { padding: 7rem 2rem; }
    .rivel-venue-guide-template .complete-estate-container { flex-direction: row; align-items: center; gap: 4rem; }
    .rivel-venue-guide-template .complete-estate-left,
    .rivel-venue-guide-template .complete-estate-right { flex: 1; }
}


/* ============================================================
   SECTION: VENUE ZONE DIRECTORY
   A 6-card grid linking out to each individual estate-zone page.
   ============================================================ */
.rivel-venue-guide-template .venue-zones-section { background-color: var(--clr-soft-cream); }
.rivel-venue-guide-template .venue-zones-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.rivel-venue-guide-template .venue-zone-card {
    display: block; border-radius: 16px; overflow: hidden; background-color: #ffffff;
    border: 1px solid rgba(32,36,31,0.08); box-shadow: 0 8px 24px rgba(16,42,32,0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.rivel-venue-guide-template .venue-zone-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,42,32,0.1); }
.rivel-venue-guide-template .venue-zone-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.rivel-venue-guide-template .venue-zone-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rivel-venue-guide-template .venue-zone-card:hover .venue-zone-thumb img { transform: scale(1.06); }
.rivel-venue-guide-template .venue-zone-number {
    position: absolute; top: 1rem; left: 1rem; width: 34px; height: 34px; border-radius: 50%;
    background-color: rgba(16,42,32,0.8); backdrop-filter: blur(4px); color: var(--clr-warm-ivory);
    font-family: var(--font-primary); font-size: 0.8125rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rivel-venue-guide-template .venue-zone-body { padding: 1.5rem; }
.rivel-venue-guide-template .venue-zone-title { font-family: var(--font-editorial); font-size: 1.25rem; font-weight: 500; color: var(--clr-text-primary); margin-bottom: 0.3rem; }
.rivel-venue-guide-template .venue-zone-subtitle { display: block; font-family: var(--font-primary); font-size: 0.875rem; font-weight: 600; color: var(--clr-terracotta); margin-bottom: 0.6rem; }
.rivel-venue-guide-template .venue-zone-meta { font-size: 0.8125rem; color: var(--clr-text-muted); }
@media (min-width: 640px) {
    .rivel-venue-guide-template .venue-zones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rivel-venue-guide-template .venue-zones-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}


/* ============================================================
   SECTION: DOWNLOAD THE FULL GUIDE
   Single dark-green CTA banner offering the PDF version.
   ============================================================ */
.rivel-venue-guide-template .guide-download-section { background-color: var(--clr-warm-ivory); }
.rivel-venue-guide-template .guide-download-banner {
    background-color: var(--clr-deep-green); border-radius: 20px;
    padding: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem;
}
.rivel-venue-guide-template .guide-download-text .eyebrow-dark-bg { margin-bottom: 1rem; }
.rivel-venue-guide-template .guide-download-heading {
    font-family: var(--font-editorial); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 500;
    color: var(--clr-warm-ivory); margin-bottom: 0.75rem;
}
.rivel-venue-guide-template .guide-download-desc { font-size: 0.9375rem; line-height: 1.6; color: rgba(245,242,233,0.8); max-width: 520px; }
.rivel-venue-guide-template .guide-download-btn {
    display: inline-flex; align-items: center; gap: 0.6rem; align-self: flex-start;
    font-family: var(--font-primary); font-size: 0.875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--clr-primary-green);
    background-color: var(--clr-warm-ivory); padding: 0.85rem 1.5rem; border-radius: 50px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
}
.rivel-venue-guide-template .guide-download-btn:hover { background-color: #ffffff; transform: translateY(-2px); }
@media (min-width: 768px) {
    .rivel-venue-guide-template .guide-download-banner {
        flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem 3.5rem;
    }
}


/* ============================================================
   SECTION: CAPACITY OVERVIEW
   Quick-reference matrix table (full version lives on the
   Capacity & Floor Plans page).
   ============================================================ */
.rivel-venue-guide-template .capacity-overview-section { background-color: var(--clr-warm-ivory); }
.rivel-venue-guide-template .capacity-table-wrap {
    width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch;
    border-radius: 16px; border: 1px solid rgba(32,36,31,0.1);
    box-shadow: 0 8px 24px rgba(16,42,32,0.05);
}
.rivel-venue-guide-template .capacity-table {
    width: 100%; min-width: 640px; border-collapse: collapse;
    font-family: var(--font-primary); background-color: #ffffff;
}
.rivel-venue-guide-template .capacity-table thead th {
    text-align: left; padding: 1rem 1.25rem; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-warm-ivory);
    background-color: var(--clr-primary-green); white-space: nowrap;
}
.rivel-venue-guide-template .capacity-table thead th:first-child { border-top-left-radius: 16px; }
.rivel-venue-guide-template .capacity-table thead th:last-child { border-top-right-radius: 16px; }
.rivel-venue-guide-template .capacity-table tbody th,
.rivel-venue-guide-template .capacity-table tbody td {
    padding: 1rem 1.25rem; font-size: 0.9375rem; border-top: 1px solid rgba(32,36,31,0.08);
    white-space: nowrap;
}
.rivel-venue-guide-template .capacity-table tbody th { text-align: left; font-weight: 600; color: var(--clr-text-primary); }
.rivel-venue-guide-template .capacity-table tbody td { color: var(--clr-text-secondary); }
.rivel-venue-guide-template .capacity-table tbody tr:nth-child(even) { background-color: var(--clr-soft-cream); }


/* ============================================================
   SECTION: FAQ
   Standard sitewide accordion component.
   ============================================================ */
.rivel-venue-guide-template .faq-section { background-color: var(--clr-soft-cream); }
.rivel-venue-guide-template .faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 100%; }
.rivel-venue-guide-template .faq-item { background-color: #ffffff; border-radius: 14px; overflow: hidden; border: 1px solid rgba(32,36,31,0.08); }
.rivel-venue-guide-template .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.25rem 1.5rem; text-align: left;
    font-family: var(--font-primary); font-size: 1rem; font-weight: 600; color: var(--clr-text-primary);
}
.rivel-venue-guide-template .faq-plus { font-size: 1.25rem; color: var(--clr-terracotta); transition: transform var(--transition-fast); flex-shrink: 0; }
.rivel-venue-guide-template .faq-item.active .faq-plus { transform: rotate(45deg); }
.rivel-venue-guide-template .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.rivel-venue-guide-template .faq-item.active .faq-answer { max-height: 260px; }
.rivel-venue-guide-template .faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; line-height: 1.65; color: var(--clr-text-secondary); }


/* ============================================================
   SECTION: GROUP PROPOSAL CTA
   Matches the sitewide proposal component used at the bottom of
   every page.
   ============================================================ */
.rivel-venue-guide-template .rivel-proposal-section { background-color: var(--clr-soft-cream); padding: 5rem 1.5rem; }
.rivel-venue-guide-template .rivel-proposal-container { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }
.rivel-venue-guide-template .proposal-title { font-family: var(--font-primary); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.15; }
.rivel-venue-guide-template .proposal-italic { display: block; font-family: var(--font-editorial); font-style: italic; color: var(--clr-terracotta); }
.rivel-venue-guide-template .proposal-subtext { font-size: 1rem; line-height: 1.7; color: var(--clr-text-secondary); max-width: 420px; margin-top: 1.25rem; }
.rivel-venue-guide-template .proposal-form-box { background-color: #ffffff; border-radius: 18px; padding: 2rem; box-shadow: 0 16px 40px rgba(16,42,32,0.08); }
.rivel-venue-guide-template .form-box-header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(32,36,31,0.1); }
.rivel-venue-guide-template .form-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--clr-terracotta); text-transform: uppercase; }
.rivel-venue-guide-template .form-title { font-family: var(--font-primary); font-size: 1.375rem; font-weight: 600; }
.rivel-venue-guide-template .form-header-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
@media (min-width: 1024px) {
    .rivel-venue-guide-template .rivel-proposal-container { flex-direction: row; gap: 4rem; }
    .rivel-venue-guide-template .rivel-proposal-left, .rivel-venue-guide-template .rivel-proposal-right { flex: 1; }
    .rivel-venue-guide-template .form-box-header { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
