/* ==========================================================
   RAIDER NATION UNITED 2026 — BASE STYLES (mobile-first)
   Palette: black background, white text, deep red accents,
   silver borders/secondary details. Matches approved mockup.
   Breakpoint overrides live in responsive.css.
   ========================================================== */

/* -----------------------------
   1. ROOT VARIABLES
------------------------------ */
:root {
  --color-black: #0d0d0d;
  --color-black-soft: #1a1a1a;
  --color-white: #ffffff;
  --color-red: #d81324;       /* deep red accent, matches mockup CTAs/highlights */
  --color-red-dark: #a80f1c;  /* hover/active state */
  --color-silver: #c7c7c7;
  --color-silver-dim: #565656;

  --font-display: 'Bebas Neue', 'Helvetica Neue', Arial, sans-serif; /* section headings, strong display text */
  --font-base: 'Oswald', 'Helvetica Neue', Arial, sans-serif;        /* body text and buttons */

  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;

  --radius: 6px;
}

/* -----------------------------
   2. RESET / BASE
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-base);
  line-height: 1.5;
  overflow-x: hidden; /* guard against any accidental horizontal scroll */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 0;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -----------------------------
   3. ACCESSIBILITY UTILITIES
------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

/* -----------------------------
   4. BUTTONS
------------------------------ */
.btn {
  display: inline-block;
  min-height: 52px; /* large, easy-to-tap */
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid var(--color-silver);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

/* -----------------------------
   5. SECTION TITLES (shared)
------------------------------ */
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  position: relative;
}

/* -----------------------------
   6. HERO + HIGHLIGHTS + TICKETS
   One approved artwork image with three responsive purchase
   hotspots positioned over the Buy Now graphics.
------------------------------ */
.hero-tickets {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  background: #000;
  line-height: 0;
}

.hero-tickets__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.ticket-hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 6px;
  cursor: pointer;
  line-height: normal;
  background: transparent;
}

.ticket-hotspot:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: 3px;
}

.ticket-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Percentage coordinates are based on the approved 1024 × 990 artwork. */
.ticket-hotspot--general {
  left: 10.55%;
  top: 90.82%;
  width: 20.15%;
  height: 5.45%;
}

.ticket-hotspot--flag {
  left: 39.35%;
  top: 90.82%;
  width: 20.75%;
  height: 5.45%;
}

.ticket-hotspot--jersey {
  left: 68.85%;
  top: 90.82%;
  width: 20.20%;
  height: 5.45%;
}

/* -----------------------------
   9. LIVE PERFORMANCES
   Approved compact strip using real artist images.
------------------------------ */
.performances-art {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  background: #080808;
  line-height: 0;
}

.performances-art__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* -----------------------------
   10. HOTEL + SOCIAL HEADING ARTWORK
   Approved image crop with a single responsive hotel button hotspot.
------------------------------ */
.bottom-art {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  background: #000;
  line-height: 0;
}

.bottom-art__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.hotel-hotspot {
  position: absolute;
  left: 73.9%;
  top: 18.7%;
  width: 16.8%;
  height: 28.4%;
  display: block;
  z-index: 5;
  border-radius: 6px;
  background: transparent;
}

.hotel-hotspot:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hotel-hotspot:focus-visible {
  outline: 4px solid #111111;
  outline-offset: 3px;
}

/* -----------------------------
   11. FOLLOW / SOCIAL
   Large readable heading and recognizable brand-style links.
------------------------------ */
.social {
  padding: 1.6rem 1rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,19,36,0.14), transparent 42%),
    #080808;
  border-top: 1px solid #2a2a2a;
}

.social__heading {
  margin: 0 0 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #ffffff;
}

.social__heading::before,
.social__heading::after {
  content: "";
  display: inline-block;
  width: clamp(28px, 8vw, 90px);
  height: 4px;
  margin: 0 0.55rem 0.28em;
  background: var(--color-red);
}

.social__icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 1.35rem;
  flex-wrap: wrap;
}

.social__link {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social__link:hover,
.social__link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social__link--facebook {
  background: #1877f2;
}

.social__link--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
}

.social__brand-icon {
  width: 40px;
  height: 40px;
  fill: currentColor;
  color: #ffffff;
  flex: 0 0 auto;
}

.social__label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.social__hashtag {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  letter-spacing: 0.075em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(216,19,36,0.32);
}

.social__hashtag span {
  color: var(--color-red);
}

.social__copyright {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: #707070;
}
/* -----------------------------
   12. SCROLL FADE-IN (progressive enhancement)
   Applied only via script.js; if JS doesn't run, sections
   simply have no .fade-in class and remain fully visible.
------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


.door-ticket-note {
  margin: 0 auto;
  padding: 1rem 1rem 0.7rem;
  max-width: 1024px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: #080808;
}

.door-ticket-note span {
  color: var(--color-red);
}


.social__heading {
  white-space: nowrap;
}

.social__heading::before,
.social__heading::after {
  vertical-align: middle;
}
