/* css/festival-2026.css */

/* =========================
   Festival 2026 — Rates-aligned shell
   Menu + Hero + Red bar + Family footer
   ========================= */

:root{
  --bg: #ffffff;
  --text: #151515;
  --muted: #5d5d5d;

  --red: #A71E22;
  --dark: #1b1b1b;

  --rule: #EEEEEE;
  --wrap: 1100px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }

body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
}

/* Links */
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

/* Layout container */
.wrap{
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

/* Media reset */
img{
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

/* =========================
   Topbar (Matches Rates)
   ========================= */
.topbar{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  color: #fff;
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
}

.topbar__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.topbar__logo{
  display: block;
  height: 80px;
  width: auto;
}

/* Desktop nav */
.topbar__nav{
  margin-left: auto;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  justify-content: flex-end;
}

.topbar__nav a{
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  opacity: .95;
  white-space: nowrap;
  font-size: 16px;
}

.topbar__nav a:hover{
  opacity: 1;
  border-bottom: 2px solid rgba(255,255,255,.75);
  padding-bottom: 2px;
  text-decoration: none;
}

/* Mobile Menu (Hamburger) */
.topbar__toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: .4rem;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

.topbar__toggle:focus-visible{
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 2px;
}

.topbar__hamburger{
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.topbar__hamburger::before{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 2px;
  background: rgba(255,255,255,.95);
  border-radius: 2px;
  box-shadow: 0 6px 0 rgba(255,255,255,.95), 0 12px 0 rgba(255,255,255,.95);
}

/* Mobile menu panel — red background */
.topbar__mobile{
  background: var(--red);
  border-top: 1px solid rgba(255,255,255,.18);
}

.topbar__mobileNav{
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
  padding: .75rem 0 1rem;
  display: grid;
  gap: .35rem;
}

.topbar__mobileNav a{
  display: block;
  padding: .75rem .25rem;
  font-weight: 700;
  opacity: .98;
  text-decoration: none;
  color: #fff;
}

.topbar__mobileNav a:hover{
  text-decoration: none;
  opacity: 1;
}

/* When mobile menu is open: make header row red too */
body.menu-open .topbar{ background: var(--red); }
body.menu-open .topbar__mobile{ background: var(--red); }

/* Responsive header behavior */
@media (max-width: 780px){
  .topbar__nav{ display: none; }
  .topbar__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .topbar__logo{ height: 60px; }
}

/* =========================
   Hero (Match Rates height)
   ========================= */
.hero{
  background: #000 center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

/* Festival overlay (keeps the same hero height) */
.hero--festival::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.50) 0%,
    rgba(0,0,0,.22) 55%,
    rgba(0,0,0,.28) 100%
  );
  pointer-events: none;
}

.hero__inner{
  text-align: center;
  padding: 10rem 0 6rem;  /* Rates spacing */
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__logo{
  display: block;
  margin: 0 auto 1.25rem;
  width: min(620px, 90vw);
  height: auto;
}

.hero__note{
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
}

/* Red bar under hero (Rates) */
.home-redbar{
  height: 60px;
  background: var(--red);
  margin: 0;
}

/* Responsive hero sizing (Rates) */
@media (max-width: 900px){
  .hero__inner{ padding: 10rem 0 7.5rem; }
  .hero__note{ font-size: 18px; }
}

@media (max-width: 780px){
  .hero__inner{ padding: 8.5rem 0 6.5rem; }
}

/* =========================
   Section scaffolding
   ========================= */
.section{ padding: 3.2rem 0; }
.section--tight{ padding: 2.4rem 0; }

.section-divider{
  height: 4px;
  background: var(--rule);
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto;
}

/* 40px red divider between schedule and tickets */
.section-divider--red{
  height: 40px;
  width: 100%;
  background: var(--red);
}

/* =========================
   Typography (Festival sections)
   ========================= */
h2{
  font-size: clamp(2rem, 2.1vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 .6em;
}

h3{
  font-size: clamp(1.4rem, 1.5vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

h4{
  font-size: clamp(1.15rem, 1.25vw, 1.5rem);
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

p{
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  line-height: 1.65;
  font-weight: 500;
}

/* Underlined headings */
.section__head{ margin-bottom: 1.4rem; }
.section__head p{ margin: 0; color: var(--muted); max-width: 70ch; }

.section__head--underline h3{
  position: relative;
  display: inline-block;
  padding-bottom: .55rem;
}

.section__head--underline h3::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
}

/* Intro split */
.split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}
.split__text p{ margin: .75rem 0; color: var(--muted); }

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

/* Welcome */
.welcome .split__text{ max-width: 58ch; }
.welcome h4{ margin-top: .5em; color: var(--red); text-transform: none; }
.welcome h4 a{ text-decoration: underline; }

/* =========================
   Kickoff
   ========================= */
.kickoff{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.kickoff__col-divider{
  width: 1px;
  background: var(--rule);
  align-self: stretch;
}

.kickoff__item{
  display: grid;
  grid-template-columns: 181px 1px 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: .25rem 0;
}

.kickoff__img{
  width: 181px;
  height: 202px;
  object-fit: cover;
}

.kickoff__divider{
  width: 1px;
  height: 170px;
  background: var(--rule);
}

.kickoff__title{
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

.kickoff__meta{
  margin: .35rem 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 780px){
  .kickoff{ grid-template-columns: 1fr; row-gap: 1.25rem; }
  .kickoff__col-divider{ display: none; }
}

/* =========================
   Headliners
   ========================= */
.cards{ display: grid; gap: 1rem; }
.cards--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }

@media (max-width: 860px){
  .cards--2{ grid-template-columns: 1fr; }
}

.poster{ position: relative; overflow: hidden; background:#000; }

.poster img{
  width: 100%;
  aspect-ratio: 548 / 691;
  object-fit: cover;
  object-position: center top;
}

.poster__label{
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem 1.4rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.poster__title{
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 2.1vw, 2.5rem);
  line-height: 1.1;
}

.poster__meta{
  opacity: .9;
  font-weight: 600;
  font-size: 1rem;
  margin-top: .35rem;
}

.poster__song{
  display: inline-flex;
  margin-top: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
  color: #fff;
}
.poster__song:hover{ text-decoration: underline; }

/* =========================
   Weekend Lineup
   ========================= */
.lineup-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .9rem;
}

.lineup img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lineup__text{ padding: .65rem .75rem .8rem; }

.lineup__name{
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #202020;
  line-height: 1.2;
}

.lineup__meta{
  margin-top: .25rem;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #626262;
  line-height: 1.2;
}

@media (max-width: 980px){
  .lineup-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 720px){
  .lineup-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* =========================
   Feature
   ========================= */
.feature{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.feature__media img{
  width: 100%;
  aspect-ratio: 548 / 691;
  object-fit: cover;
}

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

.feature__times{ margin-top: .75rem; }

.feature__time{
  margin: .25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--text);
}

/* =========================
   Dark Schedule
   ========================= */
.dark{
  background: var(--dark);
  color: #fff;
  padding: 3.2rem 0;
}

.section__head--dark p{ color: rgba(255,255,255,.78); }

.schedule{
  margin-top: 1.2rem;
  display: grid;
  gap: 2.25rem;
}

.schedule__day{ margin-bottom: 2.5rem; }

.schedule__day h4{
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.schedule__note{ margin: 0; color: rgba(255,255,255,.78); }

.schedule__table{
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 1rem;
}

.row{
  display: grid;
  grid-template-columns: 110px 1fr 1.2fr;
  gap: .75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.cell.time,
.cell.stage,
.cell.act{
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 720px){
  .row{ grid-template-columns: 90px 1fr; }
  .cell.act{ grid-column: 1 / -1; }
}

/* =========================
   Tickets
   ========================= */
.tickets{
  position: relative;
  color: #fff;
  background: url("../assets/images/festival2026/ticket-banner.jpg") center / cover no-repeat;
  overflow: visible;
}

.tickets::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 0;
}

.tickets__inner{
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 2.75rem;
}

.tickets__header{
  text-align: center;
  max-width: 78ch;
  margin: 0 auto 2.2rem;
}

.ticket-cards{
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.ticket-card{
  background: #2C2C2C;
  border-radius: 10px;
  padding: 2.1rem 1.8rem 2rem;
  text-align: center;
  box-shadow: 0 16px 26px rgba(0,0,0,.25);
}

.ticket-card--featured{ background: var(--red); }

.ticket-card__rule{
  height: 1px;
  background: rgba(255,255,255,.35);
  margin: 1.25rem 0;
}

.ticket-card__price{
  margin: 0;
  font-family: "Anton", system-ui, sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.ticket-card__price .currency{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  vertical-align: top;
  margin-right: .2rem;
}

.tickets__after{
  background: transparent;
  padding: 1.4rem 0 2.2rem;
  position: relative;
  z-index: 1;
}

.tickets__fineprint{
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 900px){
  .tickets__inner{ padding: 2.6rem 0 2.4rem; }
  .ticket-cards{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* =========================
   Info list
   ========================= */
.info-list{
  margin-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.14);
}

.info-item{
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.info-item h4{
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: none;
}

.info-item p{
  margin: 0;
  color: #666;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 92ch;
}

.info-item a{
  color: var(--red);
  text-decoration: underline;
  font-weight: 700;
}

/* =========================
   Footer (Centered “Family” version)
   ========================= */
.footer--family{
  background: #2b2b2b;
  color: #fff;
  padding: 4.25rem 0 3.75rem;
}

.footer--family a{
  color: #fff;
  text-decoration: none;
}
.footer--family a:hover{
  text-decoration: underline;
}

.footer__familyInner{ text-align: center; }

.footer__familyLogo{
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto 2.25rem;
}

.footer__familyHeadline{
  margin: 0 0 1rem;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.footer__familyPhone{
  margin: 0 0 2.25rem;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  opacity: .95;
}

.footer__familyAddress{
  margin: 0 0 .6rem;
  font-size: 16px;
  font-weight: 600;
  opacity: .92;
}

.footer__familyFacebook{
  margin: 0 0 3rem;
  font-size: 16px;
  font-weight: 600;
  opacity: .92;
}

.footer__familyCopyright{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  opacity: .9;
}

@media (max-width: 640px){
  .footer--family{ padding: 3.5rem 0 3.25rem; }
  .footer__familyLogo{
    width: 200px;
    margin-bottom: 1.75rem;
  }
  .footer__familyFacebook{ margin-bottom: 2.25rem; }
}

.home-rule{
  width: 100px;
  height: 4px;
  background: var(--red);
  margin: clamp(22px, 3vw, 30px) 0;
}

.home-rule--center{
  margin: clamp(22px, 3vw, 30px) auto;
}

.home-h2{
  margin: 1rem 0 1rem;
  font-size: 40px;
  font-weight: 700;
  color: #202020;
  line-height: 1.2;
}

.home-h2-white{
  margin: 1rem 0 1rem;
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.home-subhead{
  margin: 0 0 1.25rem;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text);
  max-width: 34ch;
}