/* ============================================
   NOVA SCOTIA FINGERBOARD EVENT — dedicated page
   ============================================ */

/* ---------- GHOST BUTTON VARIANT ---------- */
.btn--ghost {
  background: transparent;
  color: #f0ebe1;
  border-color: #f0ebe1;
  box-shadow: 5px 5px 0 #e63946;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #f0ebe1;
  color: #1a1a1a;
  box-shadow: 7px 7px 0 #e63946;
}

/* ============================================
   HERO
   ============================================ */
.ev-hero {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.ev-hero__tape {
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  background: repeating-linear-gradient(
    -45deg,
    #ffd000 0,
    #ffd000 14px,
    #1a1a1a 14px,
    #1a1a1a 28px
  );
  top: 0;
}

.ev-hero__tape--bottom {
  top: auto;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    #ffd000 0,
    #ffd000 14px,
    #1a1a1a 14px,
    #1a1a1a 28px
  );
}

.ev-hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ev-hero__eyebrow {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffd000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transform: rotate(-1deg);
  display: inline-block;
}

.ev-hero__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #f0ebe1;
  margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0 #e63946;
}

.ev-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.ev-hero__date,
.ev-hero__time {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border: 3px solid #1a1a1a;
}

.ev-hero__date {
  background: #ffd000;
  color: #1a1a1a;
}

.ev-hero__time {
  background: #e63946;
  color: #f0ebe1;
}

.ev-hero__venue {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: #d4c9a8;
  padding-left: 1rem;
  border-left: 4px solid #ffd000;
  margin-bottom: 2rem;
}

.ev-hero__venue strong {
  color: #f0ebe1;
}

.ev-hero__venue em {
  color: #d4c9a8;
  font-style: italic;
}

.ev-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ev-hero__poster {
  background: #f0ebe1;
  padding: 1rem;
  border: 4px solid #ffd000;
  box-shadow: 12px 12px 0 #e63946;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
  justify-self: center;
  max-width: 460px;
}

.ev-hero__poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.ev-hero__poster img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #1a1a1a;
}

/* ============================================
   WHAT GOES DOWN
   ============================================ */
.ev-features {
  background: #f0ebe1;
  border-bottom: 6px solid #1a1a1a;
}

.ev-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ev-feature {
  background: #f0ebe1;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 #1a1a1a;
  padding: 1.5rem 1.5rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ev-feature:nth-child(even) {
  box-shadow: 6px 6px 0 #e63946;
}

.ev-feature:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #ffd000;
}

.ev-feature__tag {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ebe1;
  background: #e63946;
  display: inline-block;
  padding: 0.1rem 0.6rem;
  margin-bottom: 0.75rem;
}

.ev-feature__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}

.ev-feature__desc {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
}

/* ============================================
   THE CONTESTS
   ============================================ */
.ev-contests {
  background: #e63946;
  border-bottom: 6px solid #1a1a1a;
}

.ev-contests .section__headline {
  color: #f0ebe1;
  background-image: linear-gradient(180deg, transparent 55%, #1a1a1a 55%, #1a1a1a 92%, transparent 92%);
}

.ev-contests .section__body {
  color: #f0ebe1;
}

.ev-contests__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ev-contest {
  background: #1a1a1a;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 #ffd000;
  padding: 1.75rem 1.5rem;
  transform: rotate(-0.6deg);
}

.ev-contest:nth-child(even) {
  transform: rotate(0.6deg);
}

.ev-contest__badge {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.95rem;
  color: #ffd000;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.ev-contest__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #f0ebe1;
  margin-bottom: 0.6rem;
}

.ev-contest__desc {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #d4c9a8;
}

/* ============================================
   THE RUNDOWN
   ============================================ */
.ev-rundown {
  background: #d4c9a8;
  border-bottom: 6px solid #1a1a1a;
}

.ev-rundown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.ev-rundown__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: #f0ebe1;
  border: 3px solid #1a1a1a;
  box-shadow: 5px 5px 0 #1a1a1a;
  margin-bottom: 1rem;
  transform: rotate(-0.3deg);
}

.ev-rundown__item:nth-child(even) {
  transform: rotate(0.3deg);
  box-shadow: 5px 5px 0 #e63946;
}

.ev-rundown__time {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #f0ebe1;
  background: #1a1a1a;
  padding: 0.15rem 0.7rem;
  white-space: nowrap;
  min-width: 6.5rem;
  text-align: center;
}

.ev-rundown__what {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ============================================
   THE VENUE
   ============================================ */
.ev-venue {
  background: #1a1a1a;
  border-bottom: 6px solid #1a1a1a;
}

.ev-venue .section__headline {
  color: #f0ebe1;
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
}

.ev-venue__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.ev-venue__name {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #ffd000;
  margin-bottom: 0.75rem;
  transform: rotate(-1deg);
  display: inline-block;
}

.ev-venue__addr {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: #f0ebe1;
  margin-bottom: 1.25rem;
}

.ev-venue__note {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d4c9a8;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.ev-venue__map {
  border: 4px solid #f0ebe1;
  box-shadow: 10px 10px 0 #e63946;
  transform: rotate(-1deg);
  overflow: hidden;
  line-height: 0;
}

.ev-venue__map iframe {
  width: 100%;
  height: 380px;
  display: block;
}

/* ============================================
   GET INVOLVED
   ============================================ */
.ev-involved {
  background: #ffd000;
  border-bottom: 6px solid #1a1a1a;
}

.ev-involved__card {
  background: #1a1a1a;
  border: 4px solid #1a1a1a;
  box-shadow: 12px 12px 0 #e63946;
  padding: 2.5rem 2.5rem 2.75rem;
  max-width: 720px;
  transform: rotate(-0.6deg);
}

.ev-involved__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffd000;
  line-height: 1;
  margin-bottom: 1rem;
}

.ev-involved__text {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.75;
  color: #f0ebe1;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.ev-involved__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   PRESENTED BY
   ============================================ */
.ev-presented {
  background: #f0ebe1;
  text-align: center;
}

.ev-presented__label {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 1rem;
}

.ev-presented__names {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  line-height: 1.3;
}

.ev-presented__names strong {
  font-weight: 400;
}

.ev-presented__more {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.8em;
  color: #e63946;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .ev-hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ev-hero__poster {
    transform: rotate(0deg);
    order: -1;
  }

  .ev-features__grid,
  .ev-contests__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ev-venue__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .ev-hero {
    padding: 7rem 0 4rem;
  }

  .ev-features__grid,
  .ev-contests__grid {
    grid-template-columns: 1fr;
  }

  .ev-hero__cta-row .btn,
  .ev-involved__cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .ev-rundown__item {
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .ev-rundown__time {
    min-width: 5.5rem;
    font-size: 1.2rem;
  }

  .ev-involved__card {
    padding: 1.75rem 1.5rem 2rem;
  }
}
