:root{
--ink:#1b1b1b;
--accent:#BE0050;
--paper:#F0DCBE;

--max: 1100px;
--radius: 16px;
--shadow: 0 10px 24px rgba(20,30,30,.12);
}
.map-embed{
  margin: 16px 0;
  overflow: hidden;
  border-radius: 16px;
}
.next-event-full .next-event-grid{
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.next-event-full .next-event-text{
  padding-right: 10px;
}

@media (max-width: 900px){
  .next-event-full .next-event-grid{
    grid-template-columns: 1fr;
  }
}

.card-media{
  margin: 0 0 12px 0;
}

.card-media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

@media (max-width: 900px){
  .card-media img{
    height: 200px;
  }
}

.pill {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

.pill:hover {
  color: inherit;
  text-decoration: none;
}

.event-list{
  display:grid;
  gap:14px;
}

.event-item{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(20,30,30,.18);
}

.event-date{
  font-weight:900;
}

.event-time{
  margin-top:4px;
  font-size:.95rem;
  opacity:.85;
}

.event-title{
  margin:0;
  font-weight:900;
}

.event-desc{
  margin:6px 0 0 0;
}

.event-location{
  margin-top:8px;
  font-size:.95rem;
  opacity:.85;
}

@media (max-width: 700px){
  .event-item{
    grid-template-columns: 1fr;
    gap:8px;
  }
}



.pill-alert{
  animation: pillPulse 2.6s ease-in-out infinite;
}

@keyframes pillPulse{
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(190,0,80,.45);
  }

  60%{
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(190,0,80,0);
  }

  100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(190,0,80,0);
  }
}











/* Banner (make it match cards) */
.banner{
  margin-top: 8px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: rgba(240,220,190,.7);
}

.banner img{
  width: 100%;
  height: clamp(220px, 30vw, 360px); /* consistent size */
  object-fit: cover;
  display: block;
}

/* Overlay spacing + readability */
.banner-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px; /* matches card padding feel */
  background: linear-gradient(to top, rgba(20,30,30,.80), rgba(20,30,30,0) 65%);
  color: var(--paper);
}

.banner-overlay h2{
  margin: 0;
}

.banner-overlay p{
  margin: 0;
  max-width: 60ch;
}

/* Make it a true positioned overlay */
.banner{ position: relative; }
.split-image{
  display:flex;
  justify-content:center; /* keeps it neat */
}

.split-image img{
  width: 100%;
  max-width: 320px;   /* ← hard cap size */
  height: auto;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.float-right{
  float:right;
  width:300px;
  max-width:45%;
  margin: 6px 0 16px 24px;
  border-radius:16px;
  border:2px solid var(--ink);
  box-shadow: var(--shadow);
}

.float-left{
  float:left;
  width:300px;
  max-width:45%;
  margin: 6px 24px 16px 0;
  border-radius:16px;
  border:2px solid var(--ink);
  box-shadow: var(--shadow);
}

/* Small square thumbnails row */
.thumb-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.thumb{
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}

.thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

/* Prevent layout collapse */
.card::after{
  content:"";
  display:block;
  clear:both;
}

/* Make the mobile drawer scrollable */
.mobile-menu{
  max-height: calc(100vh - 78px); /* 78px approx header height */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


/* Mobile behaviour */
@media (max-width: 700px){
  .float-right,
  .float-left{
    float:none;
    width:100%;
    max-width:100%;
    margin: 0 0 16px 0;
  }
}

.mobile-sub a{
  padding-left: 22px;
  border-style: dashed;
  opacity: .95;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

/* Mobile dropdown inside the drawer */
.mobile-details{
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

.mobile-details summary{
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 750;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.mobile-details summary::-webkit-details-marker{ display:none; }

.mobile-details summary::after{
  content:"▾";
  color: var(--accent);
  transition: transform .15s ease;
}

.mobile-details[open] summary::after{
  transform: rotate(180deg);
}

.mobile-subnav{
  display:grid;
  gap: 10px;
  padding: 0 14px 14px 14px;
  border-top: 1px solid rgba(20,30,30,.2);
}

.mobile-subnav a{
  display:block;
  text-decoration:none;
  padding: 12px 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-weight: 700;
}

.mobile-subnav a:hover{
  border-color: var(--accent);
  color: var(--accent);
}

body{
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
color: var(--ink);
background: var(--paper);
line-height: 1.5;
}

img{ max-width:100%; height:auto; display:block; }

a{ color: var(--ink); }
a:hover{ color: var(--accent); }

:focus-visible{
outline: 3px solid var(--accent);
outline-offset: 3px;
}

.container{
max-width: var(--max);
margin: 0 auto;
padding: 0 18px;
}

/* Skip link */
.skip-link{
position:absolute;
left:-999px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
.skip-link:focus{
left: 18px;
top: 10px;
width:auto;
height:auto;
background: var(--paper);
border: 2px solid var(--ink);
padding: 10px 12px;
border-radius: 10px;
z-index: 9999;
}

/* Header */
.site-header{
position: sticky;
top: 0;
z-index: 100;
background: rgba(240,220,190,.92);
backdrop-filter: blur(8px);
border-bottom: 2px solid var(--ink);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap: 16px;
padding: 16px 0;
}

.brand{
display:flex;
align-items:center;
gap: 10px;
text-decoration:none;
white-space:nowrap;
}
.brand-logo{
width: 56px;
height: 56px;
object-fit: contain;
}
.brand-text{
font-weight: 800;
letter-spacing: .2px;
}

/* Desktop nav */
.nav{
flex: 1;
display:flex;
justify-content:center;
}

.nav-list{
list-style:none;
display:flex;
gap: 4px;
margin:0;
padding:0;
align-items:center;
}

.nav-item{ position:relative; }

.nav-link{
display:inline-block;
padding: 8px 10px;
text-decoration:none;
border-radius: 12px;
border: 2px solid transparent;
font-weight: 700;
letter-spacing: -0.2px;
}
.nav-link:hover{
border-color: var(--ink);
color: var(--accent);
}

/* Dropdown placeholder */
.has-dropdown .dropdown-panel{
  position:absolute;
  top: 100%;          /* remove the gap */
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  display:none;
}
.has-dropdown .dropdown-panel a{
display:block;
padding: 10px 10px;
border-radius: 10px;
text-decoration:none;
border: 1px solid transparent;
font-weight: 650;
}
.has-dropdown .dropdown-panel a:hover{
border-color: var(--ink);
color: var(--accent);
}
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown:hover .dropdown-panel{
display:block;
}
.has-dropdown .dropdown-panel{
  margin-top: -2px;   /* overlaps slightly */
}
/* Header right actions */
.header-actions{
display:flex;
align-items:center;
gap: 12px;
}

.social-icons{
display:flex;
gap:12px;
align-items:center;
}
.social-icons a{
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
border: 2px solid var(--ink);
border-radius: 12px;
transition: background .15s ease, transform .12s ease, border-color .15s ease;
}
.social-icons a:hover{
border-color: var(--accent);
background: rgba(190,0,80,.1);
transform: translateY(-2px);
}
.social-icons svg{
width:18px;
height:18px;
fill: var(--ink);
transition: fill .15s ease;
}
.social-icons a:hover svg{ fill: var(--accent); }

/* Mobile menu button */
.nav-toggle{
display:none;
border: 2px solid var(--ink);
background: transparent;
border-radius: 14px;
width: 48px;
height: 44px;
padding: 0;
cursor:pointer;
}
.nav-toggle:hover{ border-color: var(--accent); }
.nav-toggle-lines{
display:block;
width: 22px;
height: 2px;
background: var(--ink);
margin: 0 auto;
position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
content:"";
position:absolute;
left:0;
width: 22px;
height: 2px;
background: var(--ink);
}
.nav-toggle-lines::before{ top:-7px; }
.nav-toggle-lines::after{ top:7px; }

.sr-only{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
white-space:nowrap;
border:0;
}

/* Mobile menu drawer */
.mobile-menu{
border-bottom: 2px solid var(--ink);
background: var(--paper);
}
.mobile-menu-inner{ padding: 10px 0 16px; }
.mobile-nav{
list-style:none;
margin:0;
padding: 0;
display:grid;
gap: 10px;
}
.mobile-nav a{
display:block;
text-decoration:none;
padding: 14px 14px;
border: 2px solid var(--ink);
border-radius: 14px;
font-weight: 750;
}
.mobile-nav a:hover{
border-color: var(--accent);
color: var(--accent);
}

/* Hero */
.hero{
position:relative;
border-bottom: 2px solid var(--ink);
}
.hero-img{
width:100%;
height: clamp(340px, 48vw, 560px);
object-fit: cover;
filter: saturate(1.12) contrast(1.08);
transform: scale(1.01);
}
.hero-overlay{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
padding: 24px 0;
background: radial-gradient(
circle at center,
rgba(20,30,30,.55) 0%,
rgba(20,30,30,.65) 55%,
rgba(20,30,30,.78) 100%
);
}
.hero-center{
display:flex;
justify-content:center;
}
.hero-panel{
width: min(760px, 92vw);
text-align:center;
padding: clamp(18px, 2.4vw, 28px);
border-radius: 22px;
border: 2px solid rgba(240,220,190,.55);
background: rgba(240,220,190,.12);
box-shadow: 0 18px 40px rgba(0,0,0,.25);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.hero-title{
color: var(--paper);
margin: 0 0 10px 0;
font-size: clamp(30px, 3.6vw, 52px);
font-weight: 900;
letter-spacing: .3px;
line-height: 1.05;
}
.hero-subtitle{
color: rgba(240,220,190,.95);
margin: 0 auto 18px auto;
font-weight: 650;
font-size: clamp(15px, 1.35vw, 18px);
max-width: 52ch;
}
.hero-actions{
display:flex;
gap: 12px;
justify-content:center;
flex-wrap: wrap;
}

@media (prefers-reduced-motion: no-preference){
.hero-panel{ animation: heroPop .35s ease-out both; }
@keyframes heroPop{
from{ transform: translateY(10px); opacity: 0; }
to{ transform: translateY(0); opacity: 1; }
}
}

/* Sections + cards */
.section{ padding: 26px 0; }

.grid-2{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}

.card{
border: 2px solid var(--ink);
border-radius: var(--radius);
background: rgba(240,220,190,.7);
padding: 18px;
box-shadow: var(--shadow);
}
.card h2{ margin: 0 0 10px 0; }
.lead{ font-size: 1.05rem; font-weight: 600; margin-top: 0; }
.hint{ opacity: .85; margin-bottom: 0; }

.highlight{ border-color: var(--accent); }

.divider{
height: 1px;
background: rgba(20,30,30,.25);
margin: 14px 0;
}
.small{ font-size: .95rem; opacity: .9; margin: 0; }

.contact-list{
list-style:none;
padding:0;
margin: 12px 0 0 0;
}
.contact-list li{ padding: 6px 0; }

/* Two-up layout */
.two-up{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
align-items:start;
}
@media (max-width: 900px){
.two-up{ grid-template-columns: 1fr; }
.grid-2{ grid-template-columns: 1fr; }
}

/* Next event */
.next-event-grid{
display:grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 22px;
align-items:center;
}
.next-event-image img{
width:100%;
min-height: 180px;
object-fit: cover;
border-radius: 18px;
border: 2px solid var(--ink);
box-shadow: var(--shadow);
}
@media (max-width: 900px){
.next-event-grid{ grid-template-columns: 1fr; }
}

/* FAQ */
.faq{
margin-top: 14px;
display: grid;
gap: 10px;
}
.faq-item{
border: 2px solid var(--ink);
border-radius: 14px;
background: rgba(240,220,190,.55);
overflow: hidden;
}
.faq-item summary{
list-style: none;
cursor: pointer;
padding: 14px 14px;
font-weight: 900;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
content: "▾";
font-size: 1.1rem;
line-height: 1;
transform: rotate(0deg);
transition: transform .15s ease;
color: var(--accent);
}
.faq-item[open] summary::after{ transform: rotate(180deg); }
.faq-answer{
padding: 0 14px 14px 14px;
border-top: 1px solid rgba(20,30,30,.20);
}
.faq-answer p{ margin: 10px 0 0 0; }

/* What's on */
.whats-on-grid{
display: grid;
grid-template-columns: 1.3fr 0.9fr;
gap: 28px;
align-items: center;
}
@media (max-width: 900px){
.whats-on-grid{ grid-template-columns: 1fr; }
}

.whats-on-image{
display:flex;
justify-content:flex-end;
}
.whats-on-image img{
width: clamp(110px, 18vw, 180px);
height: clamp(110px, 18vw, 180px);
object-fit: cover;
border-radius: 14px;
border: 2px solid var(--ink);
box-shadow: var(--shadow);
}

/* Pills */
.pill-row{
display:flex;
flex-wrap:wrap;
gap: 8px;
align-items:center;
}
.pill{
display:inline-flex;
align-items:center;
justify-content:center;
white-space:nowrap;
border: 2px solid var(--accent);
border-radius: 999px;
padding: 6px 12px;
font-weight: 800;
font-size: 0.9rem;
line-height: 1.2;
background: var(--accent);
color: var(--paper);
}
.pill:hover{
transform: translateY(-2px);
box-shadow: 0 8px 18px rgba(190,0,80,.35);
}
@media (max-width: 480px){
.pill{ font-size: 0.82rem; padding: 6px 10px; }
.pill:hover{ transform:none; box-shadow:none; }
}

/* Buttons */
.btn{
display:inline-block;
text-decoration:none;
border-radius: 16px;
border: 2px solid var(--ink);
padding: 11px 16px;
font-weight: 900;
transform: translateY(0);
transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{
transform: translateY(-1px);
border-color: var(--accent);
}

.btn-primary{
background: var(--accent);
color: var(--paper);
border-color: var(--accent);
box-shadow: 0 12px 26px rgba(190,0,80,.25);
}
.btn-primary:hover{
background: #a80046;
border-color: #a80046;
color: var(--paper);
}

.btn-secondary{
background: transparent;
color: var(--ink);
}

.btn-ghost{
background: rgba(240,220,190,.10);
border-color: rgba(240,220,190,.70);
color: var(--paper);
}
.btn-ghost:hover{
background: rgba(240,220,190,.18);
border-color: rgba(240,220,190,.95);
color: var(--paper);
}

.inline-link{
font-weight: 900;
color: var(--accent);
text-decoration: none;
}
.inline-link:hover{ text-decoration: underline; }

/* Footer */
.site-footer{
border-top: 2px solid var(--ink);
padding: 18px 0;
}
.footer-inner{
display:flex;
justify-content:space-between;
gap: 12px;
flex-wrap: wrap;
align-items:center;
}

/* Responsive header */
@media (max-width: 860px){
.nav{ display:none; }
.nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
}