/* =========================
   WJLG — Modern White Theme
   Clean. Bright. Neon Accents.
   ========================= */

/* -------------------------
   TOKENS / BASE
-------------------------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7fb;
  --panel: #ffffff;
  --border: #e9e9f2;

  --text: #0f0f1a;
  --muted: #5c5c72;

  --pink: #ff2bd6;
  --purple: #a855ff;
  --blue: #00e5ff;
  --gold: #ffdb05;

  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);
  --shadowSoft: 0 10px 30px rgba(0, 0, 0, .06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

/* Keep anchor jumps from hiding under fixed topbar */
section {
  scroll-margin-top: 90px;
}

/* ---------------------------
   STARBURST HERO BANNER
---------------------------- */
.hero-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
}



/* Background layer */
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/starburstbannerconsoles.png") center / cover no-repeat;
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 80px;
  /* ← shift everything downward */
}

/* ONE hero-banner-logo definition (removed duplicate) */
.hero-banner-logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
}

/* (Optional) if you ever use hero-banner-inner */
.hero-banner-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* ---------------------------
   TOPBAR / NAV
---------------------------- */
.topbar {
  position: fixed;
  top: 0;
  /* FIXED (was "top: 2" which is invalid) */
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e9e9f2;
  padding: 18px 0;
}

/* Clustered center nav */
.nav-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 24px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.2s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ff2dbb;
}

/* ---------------------------
   HERO (legacy bits you still use)
---------------------------- */
/* =========================
   HERO – Clean Banner Layout
   ========================= */

.hero {
  padding: 120px 0 100px;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
}

.heroModern {
  position: relative;
  overflow: hidden;
}

.hero-banner-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main logo – fixed size, no distortion */
.hero-banner-logo {
  width: 280px;
  max-width: 90%;
  height: auto;
}


/* NETWORK text */
.hero-network-text {
  margin-top: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  font-weight: 700;
  color: white;
}

/* Discord button – fixed size */
.discord-button {
  margin-top: 32px;
  display: inline-block;
}

.discord-button img {
  width: 220px;
  /* control size here */
  max-width: none;
  /* prevents stretching */
  height: auto;
  display: block;
  transition: transform .2s ease;
}

.discord-button img:hover {
  transform: translateY(-4px);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  /* prevents stacking */
}

.hero-cta {
  display: inline-flex;
}

.hero-cta img {
  height: 80px;
  /* SAME fixed height */
  width: auto;
  display: block;
}

.hero-cta:hover {
  transform: translateY(-4px);
  transition: transform .2s ease;
}

/* Headline (if still used below logo) */
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 30px 0 20px;
}

.neon-pink {
  color: var(--pink);
}

.neon-blue {
  color: var(--blue);
}

.neon-purple {
  color: var(--purple);
}

.hero-sub {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.15rem;
}

/* ---------------------------
   LISTEN BADGES
---------------------------- */
.listen-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.listen-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.listen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.listen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.listen-badge:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.listen-badge img {
  height: 48px;
  width: auto;
  display: block;
}

/* ---------------------------
   SECTIONS (global)
---------------------------- */
.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 30px;
}

/* About → Player spacing tweak (keep ONE rule) */
#about.section {
  padding-bottom: 10px;
}

#player.section-player {
  padding-top: 30px;
}

/* ---------------------------
   ABOUT (wider + funner)
---------------------------- */


.about-copy {
  max-width: 900px;
  margin: 0 auto 50px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text);
}

.about-copy p {
  margin-bottom: 24px;
}

/* Make Gamestack pop */
.about-copy strong {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
}

.about-link {
  color: #ff2bd6;
  font-weight: 600;
  text-decoration: none;
}

.about-link:hover {
  text-decoration: underline;
}

/* ---------------------------
   HOSTS
---------------------------- */
.hosts-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

.section-hosts{
  background: #ffffff;  /* match bottom of gradient */
  padding-top: 40px;
  margin-top: -1px;     /* removes hairline seam */
}

/* Optional subtle inner glow */
.section-hosts::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;                /* anchor inside the hosts section */
  height:90px;
  background: radial-gradient(circle at 50% 0%, rgba(168,85,255,.08), transparent 70%);
  pointer-events:none;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.host-card {
  text-align: center;
}

.host-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f2f2f5;
  border: 1px solid #e3e3ea;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 500;
  font-size: 14px;
}

.host-name {
  margin-top: 14px;
  font-weight: 700;
  font-size: 28px;
}

.host-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin: 0 auto;
  transition: transform .25s ease, box-shadow .25s ease;
}

.host-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* ---------------------------
   SHOWS
---------------------------- */
.shows-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  /* fixed left, flexible right */
  gap: 40px;
  align-items: start;
}

/* keep ONLY the final intended show-logo-link styles (removed duplicates) */
.show-logo-link {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform .2s ease;
}

.show-logo-link:hover {
  transform: translateY(-4px);
}

.show-logo-large {
  width: 220px;
  height: auto;
  display: block;
}

/* =============================
   SHOWS: Split layout + Community card
============================= */

.section-shows {
  padding: 70px 0;
  background: #fff;
}

.section-shows .container {
  width: min(1320px, calc(100% - 44px));
  /* wider than default to reduce right-side gap */
  margin: 0 auto;
}

/* Two-column layout */
.shows-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  /* left fixed, right fills */
  gap: 28px;
  align-items: start;
}

/* LEFT */
.shows-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shows-left .section-title {
  margin: 0 0 22px;
}

/* Gamestack logo link */
.show-logo-link {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: transform .2s ease;
}

.show-logo-link:hover {
  transform: translateY(-4px);
}

.show-logo-large {
  width: 260px;
  /* adjust as you like */
  height: auto;
  display: block;
}

/* RIGHT */
.shows-right {
  width: 100%;
}

/* Community card */
.community-card {
  width: 100%;
  max-width: none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadowSoft);
  padding: 26px 28px;
}

.community-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b80;
  margin-bottom: 10px;
}

.community-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--text);
}

.community-text {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 80ch;
}

/* Actions row */
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 6px 0 14px;
}

.community-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ececf6;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: var(--pink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.community-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  background: #fafafe;
}

/* Note */
.community-note {
  margin-top: 10px;
  color: #6b6b80;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
  .shows-split {
    grid-template-columns: 320px 1fr;
  }

  .show-logo-large {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .section-shows .container {
    width: min(1120px, calc(100% - 44px));
  }

  .shows-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shows-left {
    align-items: flex-start;
  }

  .show-logo-large {
    width: 240px;
  }
}

/* Align Community card with the Gamestack logo (not the "Shows" header) */
.shows-right {
  padding-top: 50px;
  /* tweak this until it lines up */
}

/* Mobile: remove the offset when stacked */
@media (max-width: 900px) {
  .shows-right {
    padding-top: 10;
  }
}

/* ---------------------------
   CARDS / PANELS
---------------------------- */
.panel,
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  padding: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-text {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ---------------------------
   PLAYER
---------------------------- */
.section-player{
  padding: 80px 0 10px;
  background:
    #ff6af5 100%;
  border-top: 1px solid #f2d2eb;
  border-bottom: 1px solid #f2d2eb;
}

.player-header {
  text-align: center;
  margin-bottom: 30px;
}

.player-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.player-embed iframe{
  box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
}

/* ---------------------------
   FOOTER
---------------------------- */
/* CONTACT BAND — FIXED */
.contact-band{
  padding: 44px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.contact-band-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;           /* centers all 3 columns vertically */
  column-gap: 48px;
}

/* Keep columns from drifting */
.contact-col{
  display: flex;
  flex-direction: column;
  justify-content: center;       /* vertical centering inside each column */
  min-height: 72px;              /* gives the row a consistent height */
}

.contact-left{ align-items: flex-start; text-align: left; }
.contact-center{ align-items: center; text-align: center; }
.contact-right{ align-items: flex-end; text-align: right; }

.contact-kicker{
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.contact-link{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.2;
}

.contact-link:hover{ color: var(--pink); }

.contact-logo{
  height: 44px;     /* smaller, consistent */
  width: auto;
  display: block;
}

/* FOLLOW row */
.follow-icons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.follow-link{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.follow-link:hover{ color: var(--pink); }

/* Mobile */
@media (max-width: 900px){
  .contact-band-inner{
    grid-template-columns: 1fr;
    row-gap: 18px;
    text-align: center;
  }
  .contact-left,
  .contact-right{
    align-items: center;
    text-align: center;
  }
  .follow-icons{ justify-content: center; }
}
/* ---------------------------
   RESPONSIVE
---------------------------- */


/* COPYRIGHT AREA */
.contact-copyright{
  text-align: center;
  margin-top: 48px;
  padding: 24px 0 48px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
  }
}