/* ============================================
   The Great British Curry Festival 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --green: #1A442E;
  --green-dark: #194017;
  --gold: #F0B12B;
  --orange: #E0551F;
  --pink: #E6427A;
  --teal: #2D9296;
  --purple: #6B2F7C;

  /* UI */
  --white: #FFFFFF;
  --grey-50: #FAFAF9;
  --grey-100: #F3F3F1;
  --grey-200: #E8E8E4;
  --grey-300: #D4D4CF;
  --grey-400: #A3A39E;
  --grey-500: #737370;
  --grey-600: #545452;
  --grey-700: #3D3D3B;
  --grey-800: #272725;
  --black: #141413;

  /* Tokens */
  --text-primary: var(--grey-800);
  --text-secondary: var(--grey-500);
  --text-on-dark: rgba(255,255,255,0.92);
  --text-on-dark-muted: rgba(255,255,255,0.6);
  --surface: var(--white);
  --surface-tinted: var(--grey-50);
  --border: var(--grey-200);
  --border-light: var(--grey-100);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --max-w: 1140px;
  --max-w-narrow: 740px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--grey-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange); }

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--grey-800);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-500); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---- Colour Stripe ---- */
.stripe {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green) 0%, var(--green) 16.66%,
    var(--gold) 16.66%, var(--gold) 33.33%,
    var(--orange) 33.33%, var(--orange) 50%,
    var(--pink) 50%, var(--pink) 66.66%,
    var(--teal) 66.66%, var(--teal) 83.33%,
    var(--purple) 83.33%, var(--purple) 100%
  );
}

/* ---- Navigation ---- */
.nav {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: #f5c24e;
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 1px;
}

/* ---- Hero ---- */
.hero {
  background: var(--green);
  color: var(--text-on-dark);
  padding: 80px 28px 72px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(25,64,23,0.25), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero--center { text-align: center; }
.hero--center .hero-inner { max-width: var(--max-w-narrow); }

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  max-width: 600px;
}
.hero--center .lead { margin-left: auto; margin-right: auto; }

.hero .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: #f5c24e; color: var(--black); }

.btn--white {
  background: var(--white);
  color: var(--green);
}
.btn--white:hover { background: var(--grey-100); color: var(--green); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }

.btn--large {
  padding: 14px 36px;
  font-size: 1rem;
}

/* ---- Sections ---- */
.section {
  padding: 80px 28px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section--white { background: var(--white); }

.section-header {
  margin-bottom: 48px;
}

.section-header--center { text-align: center; }

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
}
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ---- Cards ---- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.card__label--green { color: var(--green); }
.card__label--orange { color: var(--orange); }
.card__label--teal { color: var(--teal); }
.card__label--pink { color: var(--pink); }
.card__label--purple { color: var(--purple); }
.card__label--gold { color: #b8860b; }

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---- Venue Features ---- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.venue-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.venue-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.venue-item p { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- Ticket Cards ---- */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ticket-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.ticket-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ticket-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

.ticket-card__head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.ticket-card--featured .ticket-card__head {
  background: var(--green);
  border-bottom: none;
}

.ticket-card--featured .ticket-card__head h3,
.ticket-card--featured .ticket-card__head .ticket-price {
  color: var(--white);
}

.ticket-card__head h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.ticket-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green);
}

.ticket-card--featured .ticket-price {
  color: var(--gold);
}

.ticket-card__body {
  padding: 20px 24px 28px;
}

.ticket-card__body ul {
  list-style: none;
}

.ticket-card__body li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.ticket-card__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
}

.ticket-card--featured .ticket-card__body li::before {
  background: var(--gold);
  opacity: 1;
}

/* ---- Combo Banner ---- */
.combo-banner {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.combo-banner__text { max-width: 480px; }
.combo-banner__text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.combo-banner__text p { color: var(--text-on-dark-muted); font-size: 0.95rem; }

.combo-banner__price {
  text-align: center;
  flex-shrink: 0;
}

.combo-banner__price .price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.combo-banner__price .price-sub {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
}

/* ---- Callout (CTA strip) ---- */
.callout {
  background: var(--green);
  padding: 56px 28px;
  text-align: center;
}

.callout-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.callout h2 { color: var(--white); margin-bottom: 12px; }
.callout p { color: var(--text-on-dark-muted); font-size: 1rem; margin-bottom: 24px; }

/* ---- FAQ ---- */
.faq-list {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--green); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--grey-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { content: '\2212'; color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Placeholder ---- */
.placeholder {
  border: 1.5px dashed var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  background: var(--grey-50);
}

.placeholder h3 { color: var(--grey-500); font-size: 1.1rem; margin-bottom: 8px; }
.placeholder p { color: var(--grey-400); font-size: 0.9rem; }

/* ---- Notice ---- */
.notice {
  background: var(--grey-100);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 0.95rem;
}

.notice strong { color: var(--text-primary); }
.notice p { color: var(--text-secondary); }

/* ---- Policy Pages ---- */
.policy {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.policy h3 {
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  font-size: 1.15rem;
}
.policy h3:first-child { margin-top: 0; }

.policy p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: var(--text-on-dark-muted);
  padding: 48px 28px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer p { font-size: 0.875rem; margin-bottom: 4px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: var(--text-on-dark-muted); font-size: 0.875rem; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 12px 20px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }

  .combo-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .combo-banner__text { max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .section { padding: 56px 20px; }
  .hero { padding: 56px 20px 48px; }
}

@media (max-width: 480px) {
  .ticket-grid { grid-template-columns: 1fr; }
}
