/**
 * 404 Day Weekend 2026 Recap Page Styles
 *
 * @package 404DayWeekend
 * @since 1.0.0
 */

/* BRAND TOKENS */
:root {
  --color-primary: #1b3b36;
  --color-secondary: #d4b982;
  --color-background: #ffffff;
  --color-foreground: #1b3b36;
  --color-muted: #f0f2f1;
  --color-muted-foreground: #5a6765;
  --color-border: #e0e4e3;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-sans);
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 900px;
}

/* HEADER */
.site-header {
  background-color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1440px;
  margin: 0 auto;
}
.site-logo img {
  height: 4rem;
  width: auto;
}
@media (min-width: 768px) {
  .site-logo img {
    height: 5.5rem;
  }
}
.main-navigation {
  display: none;
}
@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
#primary-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.main-navigation a {
  color: var(--color-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.main-navigation a:hover {
  color: #ffffff;
}
.menu-item-cta a {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-item-cta a:hover {
  background-color: #c9a462;
  transform: translateY(-2px);
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 59, 54, 0.75),
    rgba(27, 59, 54, 0.6) 50%,
    rgba(27, 59, 54, 0.85)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
.hero-logo-block img {
  width: clamp(12rem, 32vw, 18rem);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.35));
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
  color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  text-transform: none;
}
.btn {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  border: 3px solid var(--color-secondary);
  transition: all 0.2s;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.btn-primary:hover {
  background: #c9a462;
}

/* SECTIONS */
.section {
  padding: 5rem 0;
}
.section-muted {
  background: var(--color-muted);
}
.section-label {
  display: inline-block;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.section-intro {
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* STATEMENT */
.statement {
  background: var(--color-primary);
  color: #fff;
  padding: 5rem 0;
  position: relative;
}
.statement::before,
.statement::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-secondary);
}
.statement::before {
  top: 0;
}
.statement::after {
  bottom: 0;
}
.statement h2 {
  color: var(--color-secondary);
  margin-bottom: 2rem;
}
.statement-body {
  font-size: clamp(1.125rem, 1.75vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-transform: none;
}
.statement-body p {
  margin-bottom: 1.25rem;
}
.statement-body p:last-of-type {
  margin-bottom: 0;
}

.safety-callout {
  margin-top: 2.5rem;
  padding: 2rem;
  border-left: 6px solid var(--color-secondary);
  background: rgba(212, 185, 130, 0.08);
}
.safety-callout p {
  font-size: clamp(1.25rem, 2.25vw, 1.625rem);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.safety-callout p strong {
  color: var(--color-secondary);
}

/* PRESS CAROUSEL */
.press-section {
  padding: 5rem 0 4rem;
  background: #fff;
}
.press-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.press-carousel-outer {
  position: relative;
}
.press-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 1.5rem 2.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-muted);
}
.press-carousel::-webkit-scrollbar {
  height: 10px;
}
.press-carousel::-webkit-scrollbar-track {
  background: var(--color-muted);
}
.press-carousel::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
}
.press-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 59, 54, 0.15);
}
.press-thumb {
  aspect-ratio: 16/9;
  background-color: #1b3b36;
  background-size: cover;
  background-position: center;
}
.press-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.press-outlet {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-secondary);
  background: var(--color-primary);
  display: inline-block;
  padding: 0.25rem 0.6rem;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}
.press-headline {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0.5rem 0 0.75rem;
}
.press-excerpt {
  color: var(--color-muted-foreground);
  font-size: 0.85rem;
  line-height: 1.5;
  text-transform: none;
  flex: 1;
  margin-bottom: 1rem;
}
.press-meta {
  font-size: 0.7rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}
.scroll-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 1.5rem 0;
}

/* VIDEO */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.play-btn {
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid var(--color-primary);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 8px;
}
.video-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 700;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.plugin-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(212, 185, 130, 0.15);
  border-left: 4px solid var(--color-secondary);
  font-size: 0.875rem;
  color: var(--color-primary);
}
.plugin-note strong {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-card {
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 59, 54, 0.15);
}
.event-flyer {
  aspect-ratio: 4/5;
  background: #eee;
  overflow: hidden;
}
.event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-title {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.2;
}
.event-time {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.event-location {
  color: var(--color-muted-foreground);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.event-description {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
  text-transform: none;
  line-height: 1.5;
  flex: 1;
}

/* THANK YOU / SPONSOR GRID */
.thanks {
  text-align: center;
  padding: 5rem 0;
  background: var(--color-muted);
}
.thanks h2 {
  margin-bottom: 2.5rem;
}
.collective-block {
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.collective-block img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.collective-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-top: 1rem;
}
.sponsors-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin: 3rem 0 1.5rem;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
@media (min-width: 600px) {
  .sponsor-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }
}
@media (min-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1100px) {
  .sponsor-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.sponsor-cell {
  background: #fff;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
}
@media (min-width: 600px) {
  .sponsor-cell {
    padding: 0.75rem;
  }
}
.sponsor-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* SIGNUP */
.signup {
  background: var(--color-primary);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.signup h2 {
  color: var(--color-secondary);
}
.signup p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 1rem auto 2.5rem;
  text-transform: none;
}
.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.signup-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(212, 185, 130, 0.4);
  color: #fff;
  font-family: inherit;
}
.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.signup-form input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.15);
}
.signup-form button {
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}
.signup-form button:hover {
  background: #c9a462;
}

/* FOOTER */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 4rem 1rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-section h4 {
  color: var(--color-secondary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-section p {
  opacity: 0.8;
  line-height: 1.6;
  color: var(--color-secondary);
  text-transform: none;
}
.footer-section a {
  color: rgba(212, 185, 130, 0.8);
  transition: color 0.2s;
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.footer-section a:hover {
  color: var(--color-secondary);
}
.footer-logo img {
  width: 8rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-links a {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.footer-bottom {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 185, 130, 0.1);
  text-align: center;
  opacity: 0.5;
  font-size: 0.875rem;
}
