/* ------------------------------
   BASE / TOKENS
--------------------------------*/
:root{
    --red: #c91c1b;         /* topbar red */
    --red-dark: #8f0f10;
    --bg: #05060a;
    --text: #f3f3f3;
    --muted: rgba(255,255,255,0.72);
  
    --max: 1200px;
    --topbar-h: 86px;
  
    --radius: 10px;
    --stroke: rgba(255,255,255,0.85);
    --shadow: 0 20px 60px rgba(0,0,0,0.55);
  }
  
  *{ box-sizing: border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #000;
  }
  
  /* ------------------------------
     TOP BAR
  --------------------------------*/
  .topbar{
    height: var(--topbar-h);
    background: var(--red);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }
  
  .topbar__inner{
    height: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
    display:flex;
    align-items:center;
    gap: 14px;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap: 10px;
    text-decoration:none;
    color: white;
    min-width: 150px;
  }
  .brand__logo{
    height: 180px;
    width: auto;
    display:block;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
  }
  
  /* Nav */
  .nav{
    flex: 1;
    display:flex;
    justify-content:center;
  }
  
  .nav__links{
    list-style:none;
    display:flex;
    gap: 12px;
    padding:0;
    margin:0;
    align-items:center;
  }
  
  .nav__link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 44px;
    padding: 0 18px;
    border: 2px solid var(--stroke);
    border-radius: 8px;
    text-decoration:none;
    color: white;
    font-weight: 800;
    letter-spacing: 1.2px;
    font-size: 14px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.06);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
    transition: transform 140ms ease, background 140ms ease;
  }
  .nav__link:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); }
  
  .nav__link--active{
    background: #fff;
    color: var(--red);
    border-color: #fff;
  }
  
  /* Right badge */
  .merch{
    text-decoration:none;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 14px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.18);
    white-space: nowrap;
  }
  
  /* ------------------------------
     MOBILE MENU (CSS-only)
  --------------------------------*/
  .nav-toggle{ display:none; }
  
  .hamburger{
    display:none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.12);
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 4px;
    cursor:pointer;
  }
  .hamburger span{
    display:block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background:#fff;
    margin: 0;
  }
  
  /* ------------------------------
     HERO BACKGROUND
  --------------------------------*/
  .hero{
    position: relative;
    min-height: calc(100vh - var(--topbar-h));
    display:grid;
    place-items:center;
    overflow:hidden;
  
    /* Layered background to mimic the screenshot vibe */
    background:
      radial-gradient(800px 420px at 50% 45%, rgba(255,0,0,0.25), transparent 65%),
      radial-gradient(900px 520px at 75% 20%, rgba(255,80,80,0.22), transparent 70%),
      radial-gradient(900px 520px at 25% 70%, rgba(255,60,60,0.12), transparent 70%),
      linear-gradient(180deg, #05060a 0%, #020207 100%);
  }
  
  .hero__overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    /* subtle diagonal red lines + light beam */
    background:
      linear-gradient(135deg, transparent 0%, rgba(255,40,40,0.12) 20%, transparent 45%) ,
      repeating-linear-gradient(
        135deg,
        rgba(255,60,60,0.18) 0px,
        rgba(255,60,60,0.18) 2px,
        transparent 2px,
        transparent 70px
      );
    opacity: 0.35;
    mix-blend-mode: screen;
    filter: blur(0.2px);
  }
  
  .hero__content{
    position:relative;
    z-index: 2;
    width: min(1000px, 100vw);
    text-align:center;
    padding: 64px 16px 90px;
  }
  
  /* Kicker text */
  .hero__kicker{
    margin: 20px 0 18px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(30px, 5vw, 56px);
    letter-spacing: 2px;
    color: #d51f1f;
    text-shadow: 0 10px 30px rgba(0,0,0,0.55);
  }
  
  /* ------------------------------
     ANIMATED LOGO
  --------------------------------*/
  .logo{
    width: min(580px, 78vw);
    margin: 0 auto 0;
    position:relative;
    filter: drop-shadow(0 22px 35px rgba(0,0,0,0.55));
  }
  .logo::before{
    content:"";
    position:absolute;
    inset:-18px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(255,60,60,0.35), transparent 62%);
    animation: glow 2.4s ease-in-out infinite;
    z-index: -1;
  }
  
  .logo__img{
    width: 100%;
    height: auto;
    display:block;
    animation: floaty 3.2s ease-in-out infinite;
    transform-origin: 50% 55%;
  }
  
  /* Animation keyframes */
  @keyframes floaty{
    0%   { transform: translateY(0) scale(1) rotate(0deg); }
    50%  { transform: translateY(-8px) scale(1.04) rotate(-1.2deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); }
  }
  @keyframes glow{
    0%,100% { opacity: 0.55; transform: scale(0.98); }
    50%     { opacity: 0.9;  transform: scale(1.03); }
  }
  
  /* Headline */
  .hero__headline{
    margin: 6px 0 14px;
    margin-top: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: clamp(20px, 3vw, 35px);
    text-transform: uppercase;
    text-shadow: 0 16px 40px rgba(0,0,0,0.65);
  }
  .hero__headline em{
    font-style: italic;
    opacity: 0.92;
  }

  /* Scroll-triggered fade in */
  .fade-in{
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 900ms ease, transform 900ms ease;
    will-change: opacity, transform;
  }

  .fade-in.is-visible{
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce){
    .fade-in{
      transition: none;
      transform: none;
      opacity: 1;
    }
  }
  
  /* CTA button */
  .cta{
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers buttons */
    justify-content:center;
    text-align: center;
    height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    background: #e01414;
    color: #fff;
    text-decoration:none;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    transition: transform 140ms ease, filter 140ms ease;
  }
  .cta:hover{ transform: translateY(-1px); filter: brightness(1.05); }

  .cta-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers buttons */
    gap: 12px;
    margin-top: 20px;
  }
  
  /* Bottom grass */
  .hero__grass{
    position:absolute;
    left:0; right:0; bottom:-1px;
    height: 90px;
    z-index: 3;
    opacity: 0.95;
  }
  .hero__grass svg{
    width:100%;
    height:100%;
    display:block;
  }
  .hero__grass path{
    fill: #000;
  }

  /* Hero variant: keep content near the top (used on inner pages) */
  .hero--top{
    place-items: start center;
    min-height: auto;
    padding-top: 22px;
  }

  .hero--top .hero__content{
    padding-top: 28px;
  }

  /* ------------------------------
     SECTION SPACER (blank filler)
  --------------------------------*/
  .section-spacer{
    height: 80px;
  }

  /* ------------------------------
     EAT / COMPETE / CELEBRATE
  --------------------------------*/
  .trio{
    padding: 90px 16px 110px;
    background:
      radial-gradient(600px 300px at 15% 10%, rgba(255,50,50,0.18), transparent 70%),
      radial-gradient(700px 380px at 85% 20%, rgba(255,60,60,0.16), transparent 72%),
      linear-gradient(180deg, #05060a 0%, #05060a 100%);
  }

  .trio__inner{
    max-width: var(--max);
    margin: 0 auto;
  }

  .trio__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .trio-card{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    background: #111;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .trio-card__bg{
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 78%),
      var(--bg-image, none) center/cover no-repeat;
    transform: scale(1.02);
    transition: transform 220ms ease, filter 220ms ease;
  }

  .trio-card__content{
    position: relative;
    z-index: 1;
    padding: 26px 22px 28px;
    display: grid;
    align-content: end;
    gap: 10px;
    min-height: 380px;
  }

  .trio-card__title{
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: 2px;
    color: #ff1b1b;
    text-shadow: 0 10px 20px rgba(0,0,0,0.6);
  }

  .trio-card__text{
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 14px 16px;
    backdrop-filter: blur(2px);
  }

  .trio-card__text p{
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .trio-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
  }

  .trio-card:hover .trio-card__bg{
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.05);
  }
  
  /* ------------------------------
     RESPONSIVE BEHAVIOR
  --------------------------------*/
  @media (max-width: 860px){
    .nav{
      position: absolute;
      top: var(--topbar-h);
      left: 0;
      right: 0;
      display:block;
      background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
      transform: translateY(-10px);
      opacity: 0;
      pointer-events:none;
      transition: opacity 160ms ease, transform 160ms ease;
      box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    }
  
    .nav__links{
      flex-direction: column;
      gap: 10px;
      padding: 14px 16px 18px;
    }
  
    .hamburger{ display:flex; margin-left:auto; }
  
    /* hide merch on very small screens to keep it clean */
    .merch{ display:none; }
  
    /* checkbox hack: open menu */
    .nav-toggle:checked ~ .nav{
      opacity: 1;
      transform: translateY(0);
      pointer-events:auto;
    }

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

  @media (max-width: 420px){
    .brand{ min-width: auto; }
    .brand__logo{ height: clamp(56px, 16vw, 68px); }
    .hero__content{ padding-top: 46px; }
    .trio{ padding-top: 70px; padding-bottom: 90px; }
  }

  /* ==========================
   FOOTER (matches screenshot)
   ========================== */

.mega-footer{
  position: relative;
  color: #fff;
  overflow: hidden;
}

.mega-footer__bg{
  position:absolute;
  inset:0;
  background:
    url("assets/footer-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.mega-footer__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.62);
}

.mega-footer__inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 18px 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.mega-footer__col{
  min-height: 170px;
}

.mega-footer__col--left{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

.mega-footer__logo{
  width: clamp(120px, 18vw, 180px);
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.45));
}

/* Titles (red, italic-ish look) */
.mega-footer__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff1b1b;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
}

.mega-footer__title--spaced{
  margin-top: 22px;
}

/* Center links */
.mega-footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mega-footer__links a{
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.3px;
  font-size: 18px;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
  opacity: 0.95;
  transition: opacity 150ms ease, transform 150ms ease;
}

.mega-footer__links a:hover{
  opacity: 1;
  transform: translateX(2px);
}

/* Contact email */
.mega-footer__email{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  margin-top: 4px;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
}

/* Social buttons: white circles with black icon */
.mega-footer__social{
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.mega-footer__social--center{
  justify-content: center;
}

.social-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(0,0,0,0.45);
  transition: transform 150ms ease, filter 150ms ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.social-btn svg{
  width: 28px;
  height: 28px;
  fill: #000;
}

/* Bottom copyright line */
.mega-footer__bottom{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 14px 16px 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.95;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
}

/* Responsive: stack columns */
@media (max-width: 900px){
  .mega-footer__inner{
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 34px;
  }

  .mega-footer__col--left{
    justify-content:center;
  }

  .mega-footer__social{
    justify-content:center;
  }

  .mega-footer__links{
    justify-items: center;
  }
}


/* Section background like your screenshot */
.events-strip{
  background: transparent;
  padding:48px 24px 64px;
}

/* 3-up layout that collapses nicely */
.events-grid{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:56px;
  align-items:start;
}

.event-card{
  color:#fff;
  text-align:center;
}

/* Image area */
.event-image{
  width:100%;
  aspect-ratio: 16 / 25;       /* wide banner feel */
  background:#111;
  overflow:hidden;
}

.event-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Text block spacing */
.event-body{
  margin-top:22px;
}

.event-title{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.25;
  font-weight:700;
  font-style:italic;
}

.event-meta{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.6;
  opacity:.92;
  font-weight:600;
}

.event-more{
  margin:6px 0 22px;
}

.event-more summary{
  list-style:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:underline;
  font-weight:700;
  font-style:italic;
  font-size:14px;
}

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

.event-more summary::after{
  content:" ";
  font-weight:900;
}

.event-more[open] summary::after{
  content:" ";
}

.event-more__content{
  margin-top:10px;
  padding:10px 12px;
  border-radius:10px;
  background: transparent;
  border:1px solid transparent;
  font-size:13px;
  line-height:1.5;
  opacity:0.9;
}

/* Responsive behavior */
@media (max-width: 1100px){
  .events-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px){
  .events-grid{ grid-template-columns:1fr; gap:40px; }
  .event-title{ font-size:18px; }
  .event-image{
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }
  .event-image img{
    height: auto;
    object-fit: contain;
  }
}
