@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;800&family=Playfair+Display:wght@900&display=swap');

:root {
  --neon-yellow: #e4ff00; /* Lando uses neon yellow, Mike uses gold, but user asked for 1:1 replica so we'll adjust the hex slightly towards gold while keeping it high-vis */
  --brand-yellow: #D4A827; 
  --black: #000000;
  --dark-grey: #111111;
  --cream: #f4f4f4;
  --white: #ffffff;
  --transition-cubic: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-yellow);
  color: var(--black);
}

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

ul { list-style: none; }

h1, h2, h3, h4, .bebas {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Custom Cursor (Lando Style) */
body {
  cursor: none;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--brand-yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: var(--white);
}

/* Background Noise (Lando uses grainy texture) */
.bg-noise {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.05;
  pointer-events: none;
  z-index: 900;
}

/* -- PRELOADER -- */
.loader-wrapper {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--brand-yellow);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 5vh;
}
.loader-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  opacity: 0;
}
.loader-logo img { width: 100%; height: auto; }
.loader-text h1 {
  font-size: clamp(60px, 15vw, 200px);
  color: var(--black);
  line-height: 0.8;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transform: translateY(100%);
}

/* -- HEADER -- */
.header {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: var(--header-h);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.header.blur {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-left a.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-center {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  height: 24px;
}
.nav-link.active {
  color: var(--brand-yellow);
}

.nav-link .char-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.nav-link .char {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--char-index) * 0.02s);
}
.nav-link .char::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--brand-yellow);
}
.nav-link:hover .char {
  transform: translateY(-100%);
}
/* Wavy drawn line below active/hovered link */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btn-store {
  border: 1px solid var(--white);
  padding: 8px 24px;
  border-radius: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: var(--transition-cubic);
}
.btn-store:hover {
  background: var(--white);
  color: var(--black);
}

.nav-right .btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  white-space: nowrap;
}

.hamburger {
  width: 30px; height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}
.hamburger .line {
  position: absolute;
  height: 2px; width: 100%;
  background: var(--white);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.hamburger .line-1 { top: 0; }
.hamburger .line-2 { top: 8px; }
.hamburger .line-3 { top: 16px; }
/* X state when menu is open */
.hamburger.active .line-1 { transform: translateY(8px) rotate(45deg); }
.hamburger.active .line-2 { opacity: 0; transform: scaleX(0); }
.hamburger.active .line-3 { transform: translateY(-8px) rotate(-45deg); }

/* -- PAGE TRANSITION CURTAIN -- */
.page-curtain {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--brand-yellow);
  z-index: 99999;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.page-curtain-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  color: var(--black);
  letter-spacing: 0.05em;
}

/* -- MOBILE NAV OVERLAY -- */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--black);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 10vw 60px;
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
}
.mob-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 12vw, 100px);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mob-nav-link:hover { color: var(--brand-yellow); }
.mob-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 3px;
  background: var(--brand-yellow);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mob-nav-link:hover::after { width: 100%; }
.mobile-nav-socials {
  margin-top: 60px;
  display: flex;
  gap: 30px;
}
.mobile-nav-socials a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}
.mobile-nav-socials a:hover { color: var(--brand-yellow); }


/* -- HERO SECTION (EXACT 1:1) -- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* The Lando Norris massive split background */
.hero-image-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(120%);
}

.hero-split-mask {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 100vh;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
/* Mask elements (simulating the helmet split with geometric borders) */
.split-left, .split-right {
  width: 50vw; height: 100vh;
  background: var(--black);
  position: absolute;
  top: 0;
  transition: transform 0.1s linear; /* Scrubbed by GSAP */
}
.split-left { left: 0; transform-origin: left center; }
.split-right { right: 0; transform-origin: right center; }

/* Hero Typography Overlaid */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 15vh;
}
.hero-title {
  font-size: clamp(80px, 20vw, 300px);
  line-height: 0.8;
  color: var(--white);
  margin-bottom: 2rem;
  mix-blend-mode: difference;
}
.hero-subtitle {
  font-size: clamp(20px, 4vw, 40px);
  color: var(--brand-yellow);
  mix-blend-mode: normal;
}

/* -- MARQUEE ROW (DUAL OPPOSING) -- */
.marquee-wrapper {
  padding: 40px 0;
  background: var(--dark-grey);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
}
.marquee-top { animation: scrollLeft 30s linear infinite; margin-bottom: 10px; color: var(--brand-yellow); }
.marquee-bottom { animation: scrollRight 30s linear infinite; color: var(--white); }
.marquee-track h2 {
  font-size: 80px;
  line-height: 1;
  padding-right: 50px;
}

@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* -- ON STAGE / SECTION BLOCKS -- */
.content-section {
  padding: 150px 5vw;
  position: relative;
  z-index: 5;
  background: var(--black);
}
.section-header {
  margin-bottom: 60px;
}
.section-header .bebas-sm {
  font-size: 24px;
  color: var(--brand-yellow);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 120px;
  line-height: 0.9;
}
.section-desc {
  max-width: 500px;
  font-size: 18px;
  font-weight: 400;
  color: #aaaaaa;
  margin-top: 20px;
}

/* Layout blocks - Grid like Lando's */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark-grey);
}
.card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-info {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.card-info h3 {
  font-size: 40px;
  color: var(--white);
}

/* Background Huge Typography Parallax */
.bg-typo {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  color: rgba(255,255,255,0.03);
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 0.8;
}

/* -- FOOTER EXACT -- */
.footer {
  position: relative;
  background: var(--brand-yellow);
  color: var(--black);
  padding: 150px 5vw 50px;
  overflow: hidden;
}
.footer-massive-text {
  position: absolute;
  bottom: -5vw; left: -2vw;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28vw;
  line-height: 0.75;
  color: var(--black);
  opacity: 0.1;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  padding-bottom: 100px;
}
.footer-col h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.footer-col ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--black);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
}
.footer-col ul li a:hover::after {
  transform: scaleX(1); transform-origin: left;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Reusable layout classes (used in HTML inline styles) */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.bio-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE — Mobile first breakpoints
   ============================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  /* Header */
  .header { padding: 0 24px; }
  .nav-center { gap: 20px; }
  .nav-link { font-size: 16px; }

  /* Sections */
  .content-section { padding: 80px 5vw; }
  .section-header h2 { font-size: 80px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Stats grids used inline */
  .stats-mega-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .collab-feature { grid-template-columns: 1fr; }
  .collab-feature-img { aspect-ratio: 16/9; }
  .collab-feature-text { padding: 60px 40px; }

  /* Marquee */
  .marquee-track h2 { font-size: 50px; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .contact-form-wrap { padding: 60px 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .socials-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  /* Header - hide desktop nav, show hamburger only */
  .nav-center { display: none; }
  .header { padding: 0 20px; }
  .btn-store { padding: 6px 16px; font-size: 15px; }
  .nav-left a.logo { font-size: 22px; }

  /* Hero */
  .hero-content { margin-top: 0; padding: 0 20px; }
  .hero-title { font-size: clamp(60px, 18vw, 120px); margin-bottom: 1rem; }
  .hero-subtitle { font-size: clamp(14px, 4vw, 22px); }

  /* Sections */
  .content-section { padding: 60px 20px; }
  .section-header h2 { font-size: 56px; line-height: 1; }
  .section-desc { font-size: 16px; }

  /* Cards */
  .card-info h3 { font-size: 26px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats mega */
  .stats-mega-grid { grid-template-columns: 1fr 1fr; }

  /* Marquee */
  .marquee-track h2 { font-size: 36px; }
  .marquee-wrapper { padding: 20px 0; }

  /* Footer */
  .footer { padding: 80px 20px 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 18px; }

  /* Events calendar row */
  .calendar-row { grid-template-columns: 100px 1fr; gap: 16px; padding: 24px 20px; }
  .calendar-row > div:last-child { display: none; }
  .cal-date { font-size: 40px; }
  .cal-info h3 { font-size: 20px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .timeline-year { font-size: 36px; }
  .timeline-content h3 { font-size: 24px; }

  /* Record label block */
  .record-label-block { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }

  /* Contact */
  .contact-info { padding: 40px 20px; }
  .contact-form-wrap { padding: 40px 20px; }
  .socials-grid { grid-template-columns: 1fr 1fr; }

  /* Bio section two-col */
  section > div[style*='grid-template-columns:1fr 1fr'] {
    grid-template-columns: 1fr !important;
  }

  /* Awards section */
  section > div[style*='repeat(3,1fr)'] {
    grid-template-columns: 1fr !important;
  }

  /* Stats bar */
  section > div[style*='repeat(4,1fr)'] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Page hero */
  .page-hero { padding: 130px 20px 60px; }
  .page-hero h1 { font-size: clamp(60px, 16vw, 120px); }
  .page-hero-desc { font-size: clamp(18px, 4vw, 28px); }

  /* Song rows */
  .song-row { grid-template-columns: 40px 60px 1fr; gap: 12px; padding: 14px 20px; }
  .song-row .song-platform { display: none; }
  .song-thumb { width: 60px; height: 60px; }
  .song-info h4 { font-size: 16px; }

  /* Horizontal album scroll */
  section div[style*='overflow-x:auto'] > a,
  section div[style*='overflow-x: auto'] > a {
    min-width: 180px !important;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .section-header h2 { font-size: 44px; }
  .hero-title { font-size: 56px; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .stats-mega-grid { grid-template-columns: 1fr; }
  .partner-box { padding: 24px 14px; }
  .partner-box h3 { font-size: 20px; }
}
