/* ============================================================
   COWFEST 2026 – Main Stylesheet
   Aesthetic: Bold festival poster meets English countryside
   ============================================================ */

/* ----- VARIABLES ----- */
:root {
  --green:    #0a5c2e;
  --green-lt: #0d8040;
  --yellow:   #f5c518;
  --yellow-dk:#d4a10a;
  --red:      #e02020;
  --black:    #0f0f0f;
  --off-white:#faf6ee;
  --cream:    #fff8e7;
  --brown:    #5c3d11;
  --pink:     #e84393;
  --blue:     #1a6bcc;
  --nav-h:    70px;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.22);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----- TYPOGRAPHY ----- */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26,122,46,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-label.light { color: var(--yellow); background: rgba(245,197,24,0.18); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
}
.section-title.light { color: var(--off-white); }

/* ----- CONTAINER ----- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--yellow);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--off-white);
  letter-spacing: 0.05em;
}
.logo-accent { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--yellow-dk) !important; }
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--black));
  border: 2px solid var(--off-white);
}
.btn-outline:hover {
  background: var(--off-white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-vip {
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-vip:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* =====================
   HERO (HOME)
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a3d1a 0%, #1a7a2e 55%, #4caf70 80%, #6ecf8e 100%);
  z-index: 0;
}
.grass-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 40px,
    transparent 40px,
    transparent 80px
  );
}
.spots-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60px 40px at 10% 20%, rgba(0,0,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 80px 50px at 75% 35%, rgba(0,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50px 30px at 45% 60%, rgba(0,0,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70px 45px at 90% 70%, rgba(0,0,0,0.1) 0%, transparent 60%);
}
.sun {
  position: absolute;
  top: 8%; right: 8%;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe066 40%, #f5c518 70%, rgba(245,197,24,0) 100%);
  box-shadow: 0 0 60px 20px rgba(245,197,24,0.35);
  animation: pulse-sun 4s ease-in-out infinite;
}
@keyframes pulse-sun {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.07); opacity:0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--off-white);
  padding: 20px;
}
.hero-pre {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  line-height: 0.9;
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.title-cow {
  font-family: 'CosmedRetro', 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--off-white);
  display: block;
  text-shadow: 6px 6px 0 rgba(0,0,0,0.25);
}
.title-fest {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  color: var(--yellow);
  display: block;
  letter-spacing: 0.15em;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 2px solid var(--yellow);
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.date-day { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:var(--yellow); }
.date-month { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:var(--off-white); }
.date-year { font-family:'DM Sans',sans-serif; font-weight:700; color:rgba(255,255,255,0.7); }

.hero-location {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 30px;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-cows {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 1;
  pointer-events: none;
}
.cow {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.cow1 { animation-delay: 0s; }
.cow2 { animation-delay: 0.8s; }
.cow3 { animation-delay: 1.6s; }

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(2deg); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   MARQUEE STRIP
   ===================== */
.about-strip {
  background: var(--yellow);
  color: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--yellow-dk);
  border-bottom: 3px solid var(--yellow-dk);
}
.strip-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.strip-marquee span {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  padding-right: 40px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section {
  padding: 90px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2rem; margin-bottom: 6px; }
.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.card-lbl { font-size: 0.85rem; font-weight: 600; opacity: 0.8; margin-top: 4px; }
.card-green  { background: #e8f7ec; color: var(--green); }
.card-yellow { background: #fff9e0; color: var(--brown); }
.card-pink   { background: #fce4f3; color: #c0186a; }
.card-blue   { background: #deeeff; color: var(--blue); }

/* =====================
   HIGHLIGHTS SECTION
   ===================== */
.highlights-section {
  padding: 90px 0;
  background: var(--green);
  text-align: center;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.highlight-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  color: var(--off-white);
  transition: all 0.25s;
  position: relative;
}
.highlight-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
}
.highlight-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.hl-icon { font-size: 2.4rem; margin-bottom: 12px; }
.highlight-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.highlight-card p { font-size: 0.9rem; line-height: 1.6; opacity: 0.85; }
.badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* =====================
   HEADLINERS SECTION
   ===================== */
.headliner-section {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}
.headliner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .headliner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .headliner-grid { grid-template-columns: 1fr 1fr; }
}
.headliner-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.25s;
}
.headliner-card:hover { transform: translateY(-6px); }
.day1 { background: #1a3a2a; color: var(--off-white); }
.day2 { background: var(--black); color: var(--off-white); border: 3px solid var(--yellow); }
.day3 { background: #1a3a2a; color: var(--off-white); }
.day-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.main-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}
.act-name {
  font-family: 'CosmedRetro', 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
  line-height: 1.1;
	font-weight: 100;
}
.act-genre { font-size: 0.85rem; opacity: 0.65; }
.center-btn { display: block; width: fit-content; margin: 0 auto; }

/* =====================
   COUNTDOWN
   ===================== */
.countdown-section {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}
.countdown-label {
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 90px;
}
.count-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--yellow);
  line-height: 1;
}
.count-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.count-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  opacity: 0.5;
  margin-bottom: 16px;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lineup-hero {
  background: linear-gradient(160deg, #0a3d1a 0%, #1a7a2e 100%);
  color: var(--off-white);
}
.tickets-hero {
  background: linear-gradient(160deg, #0f0f0f 0%, #1a3a2a 100%);
  color: var(--off-white);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  margin-bottom: 10px;
}
.page-hero-sub { font-size: 1rem; opacity: 0.75; color:white;}
.hero-deco-cows {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 3rem;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* =====================
   FULL SCHEDULE (lineup page)
   ===================== */
.lineup-section {
  padding: 60px 0 90px;
}
.full-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-item {
  display: grid;
  grid-template-columns: 72px 52px 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: filter 0.15s;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { filter: brightness(0.97); }

.sch-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #999;
  padding: 16px 0 16px 20px;
  white-space: nowrap;
}
.sch-icon {
  font-size: 1.4rem;
  text-align: center;
  padding: 16px 8px;
}
.sch-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 16px 0;
  flex-wrap: wrap;
}
.sch-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.tag-music   { background: #e8f7ec; color: var(--green); }
.tag-sport   { background: #deeeff; color: var(--blue); }
.tag-fun     { background: #fff3cc; color: #7a5500; }
.tag-event   { background: #f3f3f3; color: #555; }
.tag-headline{ background: var(--yellow); color: var(--black); }

.sch-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.sch-sub {
  font-size: 0.82rem;
  color: #888;
}

/* Row type colours */
.type-music  { background: #fafffe; border-left: 4px solid var(--green); }
.type-sport  { background: #f7fbff; border-left: 4px solid var(--blue); }
.type-fun    { background: #fffdf0; border-left: 4px solid var(--yellow); }
.type-open   { background: #f0faf4; border-left: 4px solid var(--green); }
.type-close  { background: #fafafa; border-left: 4px solid #ccc; }

.headline-act {
  background: #fffbea !important;
  border-left: 4px solid var(--yellow) !important;
}
.headline-act .sch-time { color: var(--black); font-size: 1.2rem; }
.headline-act .sch-title { font-size: 1.15rem; }

/* Act spotlight cards */
.acts-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.acts-spotlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.act-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s;
  border-top: 4px solid var(--green);
}
.act-card:hover { transform: translateY(-5px); }
.act-card-headline {
  grid-column: span 4;
  background: var(--black);
  color: var(--off-white);
  border-top-color: var(--yellow);
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 4px 16px;
}
.act-card-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 6px;
}
.act-card-headline .act-card-time { color: var(--yellow); }
.act-card-icon { font-size: 2rem; margin-bottom: 8px; }
.act-card-headline .act-card-icon { font-size: 2.5rem; grid-row: span 3; align-self: center; }
.act-card-name {
  font-family: 'CosmedRetro', 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 6px;
  line-height: 1.1;
	font-weight:100
}
.act-card-headline .act-card-name { font-size: 2rem; color: var(--yellow); }
.act-headline-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.act-card-desc {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.6;
}
.act-card-headline .act-card-desc { color: rgba(255,255,255,0.7); grid-column: 2 / -1; }

@media (max-width: 900px) {
  .acts-spotlight { grid-template-columns: 1fr 1fr; }
  .act-card-headline { grid-column: span 2; grid-template-columns: auto 1fr; }
  .act-card-headline .act-card-desc { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .acts-spotlight { grid-template-columns: 1fr; }
  .act-card-headline { grid-column: span 1; grid-template-columns: 1fr; }
  .act-card-headline .act-card-icon { grid-row: auto; }
  .schedule-item { grid-template-columns: 64px 40px 1fr; }
  .sch-time { font-size: 0.95rem; padding-left: 12px; }
  .sch-title { font-size: 0.9rem; }
}

/* Schedule note */
.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #e8f7ec;
  border: 1px solid rgba(10,92,46,0.2);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 16px;
  color: #2a5c3a;
  font-size: 0.9rem;
  line-height: 1.6;
}
.note-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

/* =====================
   CTA STRIP
   ===================== */
.cta-strip {
  background: var(--yellow);
  padding: 36px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-inner p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--black);
}
.cta-inner .btn-primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.cta-inner .btn-primary:hover { background: #222; }

/* =====================
   TICKETS PAGE
   ===================== */
.urgency-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.tickets-section {
  padding: 70px 0;
  background: var(--off-white);
  text-align: center;
}
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}
.ticket-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.featured-ticket {
  border: 3px solid var(--yellow);
  transform: scale(1.02);
}
.featured-ticket:hover { transform: scale(1.02) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}
.ticket-header {
  padding: 28px 24px 20px;
  color: white;
  text-align: center;
}
.tc-day     { background: linear-gradient(135deg, #1a7a2e, #2db84a); }
.tc-weekend { background: linear-gradient(135deg, #0f2a1a, #1a7a2e); }
.tc-camping { background: linear-gradient(135deg, #5c3d11, #a0692f); }
.tc-family  { background: linear-gradient(135deg, #1a6bcc, #4a9cef); }
.tc-vip     { background: linear-gradient(135deg, #0f0f0f, #333); }
.tc-free    { background: linear-gradient(135deg, #e84393, #f0729d); }
.ticket-emoji { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.ticket-type {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ticket-tagline { font-size: 0.82rem; opacity: 0.8; }
.ticket-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-old {
  font-size: 1rem;
  color: #bbb;
  text-decoration: line-through;
}
.price-now {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
}
.free-price { color: var(--pink) !important; }
.price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #e8f7ec;
  color: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
}
.price-label.per-person {
  background: #f2f2f2;
  color: #666;
}
.ticket-perks { margin-bottom: 20px; flex: 1; }
.ticket-perks li {
  font-size: 0.88rem;
  padding: 5px 0;
  border-bottom: 1px solid #f2f2f2;
  color: #444;
}
.ticket-perks li:last-child { border-bottom: none; }
.ticket-btn { width: 100%; text-align: center; margin-top: auto; }

/* Day selector */
.day-selector { margin-bottom: 16px; }
.day-selector label { font-size: 0.82rem; font-weight: 600; color: #555; display: block; margin-bottom: 8px; }
.day-btns { display: flex; gap: 8px; }
.day-pick {
  flex: 1;
  padding: 8px 4px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
  transition: all 0.15s;
}
.day-pick.selected, .day-pick:hover {
  border-color: var(--green);
  color: var(--green);
  background: #e8f7ec;
}

/* Cart */
.cart-bar {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  background: var(--black);
  z-index: 50;
  padding: 14px 20px;
  transition: bottom 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 3px solid var(--yellow);
}
.cart-bar.visible { bottom: 0; }
.cart-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-icon { font-size: 1.4rem; }
.cart-text { color: white; flex: 1; font-weight: 500; }
.cart-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--yellow);
}
.cart-checkout-btn { padding: 10px 28px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes popIn {
  from { opacity:0; transform:scale(0.85); }
  to   { opacity:1; transform:scale(1); }
}
.modal-icon { font-size: 3rem; margin-bottom: 12px; }
.modal-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}
.modal-box p { color: #555; margin-bottom: 24px; font-size: 0.95rem; }
.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.modal-actions .btn-outline { color: var(--black); border-color: var(--black); }

.tickets-intro {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: -8px;
}
.tickets-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .tickets-grid-3 { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* Qty selector */
.qty-selector { margin-bottom: 16px; }
.qty-selector label { font-size: 0.82rem; font-weight: 600; color: #555; display: block; margin-bottom: 8px; }
.qty-controls { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  line-height: 1;
}
.qty-btn:hover { background: var(--green); color: white; }
.qty-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; min-width: 24px; text-align: center; }

/* Free note */
.free-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff8e0;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 30px;
  font-size: 0.92rem;
  color: #5c3d11;
  line-height: 1.6;
}
.free-note span { font-size: 2rem; flex-shrink: 0; }

/* =====================
   INFO SECTION
   ===================== */
.info-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.info-block {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.info-icon { font-size: 2rem; margin-bottom: 10px; }
.info-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.info-block p { font-size: 0.88rem; color: #555; line-height: 1.7; }

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}
.faq-list {
  margin-top: 36px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-q {
  width: 100%;
  padding: 18px 0;
  text-align: left;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-q.open { color: var(--green); }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; }
.faq-a p { color: #555; font-size: 0.9rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--black);
  color: var(--off-white);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand p { font-size: 0.82rem; opacity: 0.5; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

/* =====================
   RESPONSIVE
   ===================== */

/* TABLET */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .headliner-grid { grid-template-columns: 1fr; max-width: 480px; margin: 40px auto 36px; }
  .tickets-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-copy { grid-column: 1/-1; }
}

/* MOBILE */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(15,15,15,0.98);
    flex-direction: column;
    align-items: center;
    padding: 24px 20px 30px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-bottom: 3px solid var(--yellow);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.1rem; }

  .hero-cows { bottom: 30px; }
  .cow { font-size: 2.2rem; }

  .about-cards { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }


  .count-unit { padding: 16px 16px; min-width: 70px; }
  .count-sep { font-size: 2rem; }

  .cta-inner { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 260px; text-align: center; }

  .cart-inner { flex-wrap: wrap; gap: 10px; }
  .cart-text { font-size: 0.85rem; }
}

@media (max-width: 400px) {
}

/* =====================
   GALLERY PAGE
   ===================== */
.gallery-hero {
  background: linear-gradient(160deg, #0a3d1a 0%, #0a5c2e 100%);
  color: var(--off-white);
}

.gallery-section {
  padding: 60px 0 90px;
  background: #111;
}

/* Masonry grid using CSS columns */
.masonry-grid {
  column-count: 3;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #222;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 92, 46, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.masonry-item:hover .img-overlay {
  background: rgba(10, 92, 46, 0.45);
}

.zoom-icon {
  font-size: 2.2rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.masonry-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
  animation: lbFadeIn 0.25s ease both;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  font-size: 2.5rem;
  color: white;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
  padding-bottom: 3px;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.4);
  padding: 6px 16px;
  border-radius: 100px;
}

/* Gallery responsive */
@media (max-width: 900px) {
  .masonry-grid { column-count: 2; }
}
@media (max-width: 500px) {
  .masonry-grid { column-count: 1; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

/* =====================
   HERO WITH PHOTO BG (home page)
   ===================== */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/DJI_0333-edit.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,30,12,0.72) 0%,
    rgba(10,92,46,0.55) 50%,
    rgba(5,40,15,0.80) 100%
  );
}

/* =====================
   PHOTO STRIP (home page)
   ===================== */
.photo-strip-section {
  padding: 70px 0 0;
  background: var(--cream);
}
.photo-strip {
  display: flex;
  height: 300px;
  margin-top: 32px;
  gap: 4px;
  overflow: hidden;
}
.strip-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.4s ease;
  min-width: 0;
  cursor: pointer;
}
.strip-photo:hover { flex: 2.5; }

/* =====================
   ATMOSPHERE BANNER (tickets)
   ===================== */
.atmos-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.atmos-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.atmos-banner:hover .atmos-img {
  transform: scale(1);
}
.atmos-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,25,12,0.85) 0%, rgba(5,25,12,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 20px;
  text-align: center;
}
.atmos-quote {
  font-family: 'CosmedRetro', 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 100;
  color: var(--yellow);
  margin-bottom: 8px;
  max-width: 600px;
  line-height: 1.3;
}
.atmos-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .photo-strip { height: 200px; }
  .atmos-banner { height: 260px; }
  .strip-photo:hover { flex: 1; }
}

/* =====================
   LOGO STYLES
   ===================== */

/* Navbar logo image */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* Banner has black bg – mix-blend-mode makes black transparent */
  mix-blend-mode: screen;
  filter: brightness(1.1);
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.85; }

/* Hero main logo (cool cow) */
.hero-main-logo {
  margin: 0 auto 16px;
  max-width: min(480px, 85vw);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-main-logo img {
  width: 100%;
  height: auto;
  display: block;
  /* Remove black background from the PNG */
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
}

/* Inner page hero banner logo */
.inner-hero-logo {
  max-width: min(360px, 80vw);
  margin: 0 auto 8px;
}
.inner-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}

/* Footer logo */
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .nav-logo-img { height: 32px; }
  .hero-main-logo { max-width: 70vw; }
  .footer-logo-img { height: 38px; }
}

/* =====================
   COSMED RETRO FONT
   ===================== */
@font-face {
  font-family: 'CosmedRetro';
  src: url('CosmedRetro-eZ6Vl.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Apply CosmedRetro to all act/band names site-wide */
.act-name,
.act-card-name,
.headliner-card .act-name {
  font-family: 'CosmedRetro', 'Bebas Neue', sans-serif !important;
  letter-spacing: 0.03em;
}

/* =====================
   FOOTER LOGO FIX
   ===================== */
.footer-logo-img {
  height: auto !important;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
}

/* =====================
   ABOUT SECTION - PHOTO CARDS
   ===================== */
.about-cards-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-photo-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-photo-card:hover img {
  transform: scale(1.06);
}
.apc-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 18px 10px 8px;
  text-align: center;
}

/* =====================
   HIGHLIGHTS - PHOTO CARDS
   ===================== */
.highlight-card.hc-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hc-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.highlight-card.hc-photo:hover .hc-img {
  transform: scale(1.04);
}
.hc-body {
  padding: 20px;
  flex: 1;
}
.hc-body h3 {
  margin-top: 0;
}

/* =====================
   ACT CARDS - ARTIST PHOTOS
   ===================== */
.act-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
.act-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.act-card:hover .act-card-img img {
  transform: scale(1.05);
}
.act-card-img-headline {
  height: 260px;
}

/* =====================
   HOME PAGE ACTS - WITH PHOTOS
   ===================== */
.acts-with-photos .headliner-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.act-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.act-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.acts-with-photos .headliner-card:hover .act-photo img {
  transform: scale(1.05);
}
.acts-with-photos .headliner-card .day-tag,
.acts-with-photos .headliner-card .act-name,
.acts-with-photos .headliner-card .act-genre,
.acts-with-photos .headliner-card .main-badge {
  padding-left: 16px;
  padding-right: 16px;
}
.acts-with-photos .headliner-card .day-tag {
  display: block;
  margin-top: 14px;
}
.acts-with-photos .headliner-card .act-name {
  margin: 6px 0 2px;
}
.acts-with-photos .headliner-card .act-genre {
  margin-bottom: 14px;
}
.act-photo-headline {
  height: 240px;
}

/* =====================
   TICKETS - TICKETTAILOR STYLE
   ===================== */
.ticket-btn.tt-link {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}
/* Remove old price-old strikethrough since no early bird */
.price-now {
  font-size: 2.4rem;
}

@media (max-width: 700px) {
  .about-cards-photos { grid-template-columns: 1fr 1fr; }
  .act-card-img { height: 160px; }
  .act-photo { height: 160px; }
  .hc-img { height: 150px; }
}


/* =====================
   UK/DC HEADLINE CARD FIX
   ===================== */
.act-card-headline {
  display: flex;
  flex-direction: column;
}
.act-card-headline .act-card-img {
  order: 0;
}
.act-card-headline .act-card-time {
  order: 1;
}
.act-card-headline .act-card-name {
  order: 2;
  margin-bottom: 6px;
}
.act-card-headline .act-headline-badge {
  order: 3;
  margin-bottom: 10px;
}
.act-card-headline .act-card-desc {
  order: 4;
  margin-top: 0;
}
/* =====================
   SPONSORS PAGE
   ===================== */

.sponsors-hero {
  background: linear-gradient(160deg, #0a3d1a 0%, #0a5c2e 100%);
}

.sponsors-intro {
  background: var(--yellow, #f5c518);
  padding: 28px 0;
}
.sponsors-intro-inner {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  max-width: 680px;
  margin: 0 auto;
}

/* Section wrappers */
.sponsors-section {
  padding: 70px 0;
}
.main-sponsor-section  { background: #fff; }
.band-sponsor-section  { background: #f7f7f2; }
.zone-sponsor-section  { background: #fff; }
.bar-sponsor-section   { background: #f7f7f2; }

.sponsor-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.sponsor-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green, #0a5c2e);
  margin: 8px 0 6px;
}
.sponsor-section-sub {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

/* Tier badges */
.sponsor-tier-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.badge-main { background: var(--yellow, #f5c518); color: #1a1a1a; }
.badge-band { background: var(--green, #0a5c2e); color: #fff; }
.badge-zone { background: #1a1a8c; color: #fff; }
.badge-bar  { background: #8c1a1a; color: #fff; }

/* Grids */
.sponsor-grid {
  display: grid;
  gap: 24px;
}
.sponsor-grid-main  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
.sponsor-grid-bands { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.sponsor-grid-zones { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.sponsor-grid-bar   { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* Sponsor card */
.sponsor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10,92,46,0.15);
  border-color: var(--green, #0a5c2e);
}
.sponsor-card-nolink {
  cursor: default;
}
.sponsor-card-nolink:hover {
  transform: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-color: transparent;
}

/* Main sponsor card — bigger */
.sponsor-card-main {
  flex-direction: row;
  align-items: center;
  padding: 24px;
  gap: 28px;
  border: 3px solid var(--yellow, #f5c518);
}
.sponsor-card-main .sponsor-logo-wrap {
  width: 160px;
  height: 100px;
  flex-shrink: 0;
}
.sponsor-card-main .sponsor-info {
  padding: 0;
}
.sponsor-card-main .sponsor-name {
  font-size: 1.6rem;
}

/* Logo area */
.sponsor-logo-wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.sponsor-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Fallback name shown when logo is missing */
.sponsor-name-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--green, #0a5c2e);
  letter-spacing: 0.05em;
  padding: 8px;
  box-sizing: border-box;
}

/* Card info */
.sponsor-info {
  padding: 16px 18px 18px;
  flex: 1;
}
.sponsor-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0 0 2px;
  letter-spacing: 0.04em;
}
.sponsor-role {
  font-size: 0.8rem;
  color: var(--green, #0a5c2e);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.sponsor-link-label {
  font-size: 0.78rem;
  color: #999;
}

@media (max-width: 600px) {
  .sponsor-card-main { flex-direction: column; }
  .sponsor-card-main .sponsor-logo-wrap { width: 100%; }
  .sponsor-grid-bands,
  .sponsor-grid-zones,
  .sponsor-grid-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .sponsor-grid-bands,
  .sponsor-grid-zones,
  .sponsor-grid-bar { grid-template-columns: 1fr; }
}

/* Logos with dark backgrounds — give the wrap a matching dark bg */
.sponsor-logo-wrap.dark-bg {
  background: #1a1a1a;
}
.sponsor-logo-wrap.dark-bg-blue {
  background: #002947;
}



/* =====================
   SPONSORS MARQUEE STRIP (home page)
   ===================== */
.sponsors-strip-section {
  background: #fff;
  padding: 50px 0 40px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.sponsors-strip-header {
  text-align: center;
  margin-bottom: 32px;
}
.sponsors-marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.sponsors-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sponsorScroll 36s linear infinite;
}
.sponsors-marquee:hover {
  animation-play-state: paused;
}
@keyframes sponsorScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Each logo — no box, just the image */
.sm-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 70px;
  margin: 0 28px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.sm-logo:hover {
  opacity: 1;
}
.sm-logo img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* Uniform visual weight: all logos rendered at the same perceived height */
}
.sponsors-strip-footer {
  text-align: center;
  margin-top: 32px;
}
.sponsors-strip-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .sm-logo { width: 120px; height: 54px; margin: 0 18px; }
  .sm-logo img { max-width: 110px; max-height: 46px; }
}
