/* ==========================================================================
   Lion Hotel — light editorial event-page design system.
   Typography scale, palette and layout patterns matched to the reference
   site the owner asked us to follow (Playfair Display / Open Sans, warm
   gold accent, alternating image-text rows on a white ground).
   Scoped to .ev-page so the site header and footer are unaffected.
   ========================================================================== */

.ev-page{
    --gold:#ccae73;
    --gold-dark:#a38b5c;
    --heading:#4b4f58;
    --text:#3a3a3a;
    --muted:#777777;
    --bg:#ffffff;
    --bg-alt:#f5f5f5;
    --line:#e5e5e5;

    background:var(--bg);
    color:var(--text);
    font-family:'Open Sans', Arial, sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.65em;
}

.ev-page h1,.ev-page h2,.ev-page h3,.ev-page h4,.ev-page h5{
    font-family:'Playfair Display', Georgia, serif;
    font-weight:700;
    color:var(--heading);
    margin:0 0 .5em;
}
.ev-page h1{ font-size:54px; line-height:1.4em; }
.ev-page h2{ font-size:42px; line-height:1.3em; }
.ev-page h3{ font-size:36px; line-height:1.3em; }
.ev-page h4{ font-size:24px; line-height:1.4em; }
.ev-page p{ margin:0 0 1.3em; }
.ev-page a{ color:var(--gold-dark); }

.ev-wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }

/* ---------- Hero ---------------------------------------------------- */
.ev-hero{
    position:relative;
    min-height:62vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.ev-hero:after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
}
.ev-hero .ev-wrap{ position:relative; z-index:2; padding-top:140px; padding-bottom:70px; }
.ev-eyebrow{
    font-family:'Open Sans', Arial, sans-serif;
    font-size:14px; font-weight:400;
    letter-spacing:.22em; text-transform:uppercase;
    color:var(--gold); margin:0 0 14px;
}
.ev-hero h1{ color:#fff; margin:0; max-width:16em; }
.ev-hero .ev-hero-sub{ color:rgba(255,255,255,.9); font-size:19px; margin:18px 0 0; max-width:34em; }

/* ---------- Sections ------------------------------------------------ */
.ev-section{ padding:90px 0; }
.ev-section.is-alt{ background:var(--bg-alt); }
.ev-section-head{ max-width:44em; margin:0 0 50px; }
.ev-section-head.is-centre{ margin-left:auto; margin-right:auto; text-align:center; }
.ev-lead{ font-size:19px; line-height:1.7em; color:var(--text); }

/* ---------- Alternating image / text rows --------------------------- */
.ev-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}
.ev-row:last-child{ margin-bottom:0; }
.ev-row.is-reverse .ev-row-media{ order:2; }
.ev-row-media img{ width:100%; height:100%; max-height:460px; object-fit:cover; display:block; }
.ev-row-body h3{ margin-bottom:.4em; }

/* ---------- Detail lists -------------------------------------------- */
.ev-list{ list-style:none; margin:0 0 28px; padding:0; }
.ev-list li{
    padding:16px 0;
    border-bottom:1px solid var(--line);
    display:grid;
    grid-template-columns:190px 1fr;
    gap:24px;
}
.ev-list li:first-child{ border-top:1px solid var(--line); }
.ev-list .k{ font-weight:600; color:var(--heading); }
.ev-list .v{ color:var(--text); }
.ev-list.is-plain li{ grid-template-columns:1fr; }

/* ---------- Price line ---------------------------------------------- */
.ev-price{
    font-family:'Playfair Display', Georgia, serif;
    font-size:34px; font-weight:700; color:var(--gold-dark);
    margin:0 0 6px;
}
.ev-price small{ display:block; font-family:'Open Sans',Arial,sans-serif; font-size:15px; font-weight:400; color:var(--muted); margin-top:6px; }

/* ---------- Buttons -------------------------------------------------- */
.ev-btn{
    display:inline-block;
    font-family:'Open Sans', Arial, sans-serif;
    font-size:16px; font-weight:400; line-height:1.65em;
    padding:14px 34px;
    background:var(--gold); color:#fff !important;
    border:1px solid var(--gold);
    text-decoration:none;
    transition:background .2s ease, border-color .2s ease;
}
.ev-btn:hover{ background:var(--gold-dark); border-color:var(--gold-dark); color:#fff !important; text-decoration:none; }
.ev-btn.is-ghost{ background:transparent; color:var(--gold-dark) !important; }
.ev-btn.is-ghost:hover{ background:var(--gold); color:#fff !important; }
.ev-btn.is-light{ background:#fff; color:var(--gold-dark) !important; border-color:#fff; }
.ev-btn.is-light:hover{ background:rgba(255,255,255,.88); color:var(--gold-dark) !important; }
.ev-btns{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }

/* ---------- Gold call-to-action band --------------------------------- */
.ev-cta{ background:var(--gold); padding:70px 0; text-align:center; }
.ev-cta h2{ color:#fff; margin-bottom:.3em; }
.ev-cta p{ color:rgba(255,255,255,.92); font-size:19px; max-width:40em; margin:0 auto 28px; }
.ev-cta .ev-btns{ justify-content:center; }

/* ---------- Menu columns --------------------------------------------- */
.ev-menu{ display:grid; grid-template-columns:repeat(3,1fr); gap:50px; }
.ev-course h4{ padding-bottom:14px; border-bottom:2px solid var(--gold); margin-bottom:22px; }
.ev-dish{ margin-bottom:22px; }
.ev-dish strong{ display:block; color:var(--heading); font-weight:600; }
.ev-dish span{ color:var(--muted); font-size:15px; }

/* ---------- Card grid (other events) --------------------------------- */
.ev-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.ev-card{ background:#fff; border:1px solid var(--line); display:flex; flex-direction:column; }
.ev-card img{ width:100%; height:220px; object-fit:cover; display:block; }
.ev-card-body{ padding:28px 26px 32px; display:flex; flex-direction:column; flex:1; }
.ev-card-body h4{ margin-bottom:.5em; }
.ev-card-body p{ flex:1; color:var(--muted); font-size:15px; }

.ev-note{ color:var(--muted); font-size:14px; line-height:1.7em; }

/* ---------- Responsive ------------------------------------------------ */

/* Nothing may push the page sideways, whatever the content. Kept off the
   universal selector so it cannot outrank .ev-wrap's 1200px max-width. */
.ev-page{ overflow-x:hidden; }
.ev-page img{ max-width:100%; }
.ev-page h1,.ev-page h2,.ev-page h3,.ev-page h4,
.ev-page p,.ev-page li,.ev-page .ev-price{
    overflow-wrap:break-word;
}

/* Tablets and below. */
@media (max-width:921px){
    .ev-page h1{ font-size:40px; }
    .ev-page h2{ font-size:32px; }
    .ev-page h3{ font-size:27px; }
    .ev-section{ padding:64px 0; }
    .ev-section-head{ margin-bottom:38px; }
    .ev-row{ grid-template-columns:1fr; gap:28px; margin-bottom:56px; }
    /* Media always leads on a single column, whichever side it sat on. */
    .ev-row.is-reverse .ev-row-media{ order:0; }
    .ev-row-media img{ height:320px; max-height:none; }
    .ev-menu{ grid-template-columns:1fr; gap:38px; }
    .ev-cards{ grid-template-columns:repeat(2,1fr); gap:26px; }
    .ev-cta{ padding:56px 0; }
}

/* Large phones and small tablets — two cards no longer fit side by side,
   and the label/value grid is too narrow to hold two columns. */
@media (max-width:767px){
    .ev-cards{ grid-template-columns:1fr; gap:22px; }
    .ev-list li{ grid-template-columns:1fr; gap:4px; padding:14px 0; }
    .ev-list .k{ font-size:14px; letter-spacing:.02em; text-transform:uppercase; }
    .ev-lead{ font-size:17px; }
}

/* Phones. */
@media (max-width:544px){
    .ev-page{ font-size:15px; }
    .ev-page h1{ font-size:31px; line-height:1.25em; }
    .ev-page h2{ font-size:25px; }
    .ev-page h3{ font-size:22px; }
    .ev-page h4{ font-size:20px; }

    .ev-wrap{ padding:0 18px; }
    .ev-section{ padding:48px 0; }
    .ev-section-head{ margin-bottom:30px; }

    /* Enough headroom to clear the overlaid navbar. */
    .ev-hero{ min-height:0; }
    .ev-hero .ev-wrap{ padding-top:132px; padding-bottom:52px; }
    .ev-hero h1{ max-width:none; }
    .ev-hero .ev-hero-sub{ font-size:16px; margin-top:14px; }
    .ev-eyebrow{ font-size:12px; letter-spacing:.18em; }

    .ev-row{ gap:22px; margin-bottom:44px; }
    .ev-row-media img{ height:230px; }

    .ev-price{ font-size:27px; line-height:1.25em; }
    .ev-price small{ font-size:14px; }

    .ev-cta{ padding:48px 0; }
    .ev-cta p{ font-size:17px; }

    .ev-card img{ height:190px; }
    .ev-card-body{ padding:24px 20px 26px; }

    .ev-menu{ gap:30px; }
    .ev-dish{ margin-bottom:18px; }

    /* Stacked, full-width buttons with a real tap target. */
    .ev-btns{ gap:10px; }
    .ev-btn{ width:100%; text-align:center; padding:15px 20px; }
}
