/* =========================================================
  Good Game Con! — Modern Editorial CSS (recreated)
========================================================= */

/* =========================
  1) BRAND TOKENS (EDIT HERE)
========================= */
:root {
  /* Brand palette */
  --key: #0131ac;
  --cyan: #07d9ea;
  --yellow: #fed107;
  --red: #ff3132;

  /* Neutrals */
  --bg: #060816;          /* deep ink background */
  --bg2: #070a18;         /* slight variation */
  --text: #f3f5ff;        /* primary text */
  --muted: #c2ccff;       /* secondary text */
  --faint: #ffffff14;     /* thin divider */
  --fainter: #ffffff0a;   /* hover bg */
  --focus: #07d9ea99;     /* focus ring */

  /* Layout */
  --max: 1160px;
  --pad: 28px;

  /* Type scale */
  --font-display: 'Changa', roboto, sans-serif;
  --font-body: 'Roboto', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --h1: clamp(72px, 9vw, 150px);
  --h2: clamp(48px, 6vw, 96px);
  --lead: 18px;
  --body: 16px;

  /* Rounding (keep subtle) */
  --r: 14px;
}

/* =========================
  2) BASE RESET
========================= */
* { box-sizing: border-box; }
html, body { 
  height: 100%; 
}

html {
  /* Modern feel when clicking nav anchors */
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* match navbar height */
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);

  background: #060816;
}

/* =========================
  3) OPTIONAL KEY VISUAL BACKDROP
========================= */
.bg {
  background-image: none !important;
  opacity: 0 !important;
}

/* Subtle “sheen” motion (optional; modern + gentle) */
.bg::after {
  display: none !important;
}

@keyframes sweep {
  0% { transform: translateX(-35%) rotate(10deg); }
  100% { transform: translateX(35%) rotate(10deg); }
}

/* =========================
  4) HEADER / TOPBAR
  - Sticky, translucent, readable
========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 16px var(--pad);

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Scrolled state */
.topbar--solid {
  background: #060816f2;
  border-bottom: 1px solid #ffffff1a;
  box-shadow: 0 10px 40px #00000088;
}

/* Accent line */
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;

  background: linear-gradient(
    90deg,
    #07d9ea,
    #fed107,
    #ff3132
  );

  transition: width 0.6s ease;
}

.topbar--solid::after {
  width: 100%;
}

/* Brand (logo + text) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  min-width: auto;
}

.brand__logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand__text {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
  opacity: 0.92;
}

/* Nav links */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
}


.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__link {
  text-decoration: none;
  color: #e9edff;
  font-weight: 800;
  font-size: 13px;

  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid #00000000;
  opacity: 0.92;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.nav__link:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: var(--fainter);
  border-color: #07d9ea;
}

/* Header CTA group */
.topbar__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* =========================
  5) BUTTONS
========================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 999px;

  font-weight: 600;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.1;

  background: #0d1535;
  color: #ffffff;

  border: 1px solid #1e2a5e;

  transition: all 0.35s ease;
  overflow: hidden;
}

/* Animated cyan border */

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    #07d9ea,
    #fed107,
    #ff3132,
    #07d9ea
  );

  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.35s ease;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn:hover::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--cyan);
  color: #001026;
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: #06c6d6; /* slightly darker cyan */
}

.btn--primary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--ghost:hover {
  background: #ffffff12;
  border-color: #ffffff33;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 999px;
}

/* Topbar CTA uses display font */
.topbar .btn--primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: 0.04em;
}

.topbar .btn {
  text-decoration: none;
}

/* ========================================
   FULL-WIDTH TICKETS STRIPE BUTTON
======================================== */

.hero-cta-bar {
  width: 100vw;
  position: relative;

  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: linear-gradient(
    90deg,
    #fed107,
    #ffd93b,
    #fed107
  );

  box-shadow: 0 0 40px #fed10744, inset 0 -2px 0 #00000030;

  padding: 10px 10px;

  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;

  border: none;
  cursor: pointer;

  transition: transform 0.25s ease, opacity 0.3s ease;
}

/* Hover (only when enabled) */
.hero-cta-bar:not(:disabled):hover {
  transform: scale(1.015);
}

/* Active press */
.hero-cta-bar:not(:disabled):active {
  transform: scale(0.99);
}

/* Disabled state */
.hero-cta-bar:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* =========================
  6) MAIN + SECTION SEPARATION
========================= */
.main {
  padding: 80px 0 0;
}

.accent {
  color: #ff3132; /* red accent */
}

/* Each section has its own “moment” */
.section {
  padding: 100px 0;

  min-height: 100vh;           /* makes the section a full “panel” */
  display: flex;
  align-items: center;  
}

.section--hero {
  padding-top: 0px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: #060816;

}

/* KV layer */
.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("./assets/ggcon-bg-notext-1080p.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 1;           /* more visible KV */
  /* filter: saturate(1.12) contrast(1.08); */
}

/* Hero readability overlay + retro glow */
.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(900px 520px at 22% 38%, #07d9ea22 0%, #00000000 60%),
    radial-gradient(900px 520px at 78% 24%, #fed10716 0%, #00000000 62%),
    radial-gradient(900px 520px at 62% 70%, #0131ac3a 0%, #00000000 62%),
    linear-gradient(180deg, #06081622 0%, #06081610 45%, #06081622 100%);
}

/* Inner container */
.section__inner {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  text-align: center;
  margin: 0 auto;
}

/* Ensure hero content sits above the KV layers */
.section--hero .section__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* 5) ABOUT section: clean navy block */
#about.section {

  background:
    radial-gradient(900px 520px at 22% 38%, #07d9ea22 0%, #00000000 60%),
    radial-gradient(900px 520px at 78% 24%, #fed10716 0%, #00000000 62%),
    radial-gradient(900px 520px at 62% 70%, #0131ac3a 0%, #00000000 62%),
    linear-gradient(180deg, #06081622 0%, #06081610 45%, #06081622 100%);
}

/* 6) EXPERIENCE section: CYAN-ACCENT esports block */
#experience.section {
  position: relative;
  background: #050716; /* deeper to make cyan pop */
  overflow: hidden;
}

/* Cyan glow + subtle “retro grid” vibe (no visible hard lines) */
#experience.section::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(900px 520px at 25% 35%, #07d9ea26 0%, #00000000 55%),
    radial-gradient(700px 480px at 75% 65%, #07d9ea14 0%, #00000000 60%),
    linear-gradient(180deg, #00000000 0%, #00000022 100%);
}

/* Ultra-subtle grid texture (retro) */
#experience.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(#07d9ea10 1px, #00000000 1px),
    linear-gradient(90deg, #07d9ea10 1px, #00000000 1px);
  background-size: 80px 80px;
  background-position: center;
  opacity: 0.08; /* keep it VERY subtle */
}

/* Keep experience content above glows */
#experience.section .section__inner {
  position: relative;
  z-index: 1;
}

/* Make the “tag pills” in Experience feel more esports */
#experience .tag {
  background: #07d9ea;
  color: #001026;
}

/* 7) HIGHLIGHTS: yellow accent (retro pop) */
#highlights.section {
  position: relative;
  background: #070a18;
  overflow: hidden;
}
#highlights.section::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(900px 520px at 70% 30%, #fed10718 0%, #00000000 62%);
}
#highlights.section .section__inner {
  position: relative;
  z-index: 1;
}

/* 8) PARTNERS: calmer block */
#partners.section {
  background: #060816;
  min-height: 100vh;           /* makes the section a full “panel” */
  display: flex;
  align-items: center;  
}

/* 9) SOCIALS: slightly brighter for emphasis */
#socials.section {
  background: #070a18;
  min-height: 100vh;           /* makes the section a full “panel” */
  display: flex;
  align-items: center;  
}

/* 10) CONTACT: darker closing block */
#contact.section {
  background: #050615;
  min-height: 100vh;           /* makes the section a full “panel” */
  display: flex;
  align-items: center;  
}

/* Section headings */
.section__head {
  position: relative;
  display: grid;

  gap: 10px;
  padding-top: 22px;
  margin-bottom: 28px;

  justify-items: center;
  text-align: center;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--h2);
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-shadow: 0 22px 70px #00000088;
}

.section__sub {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.75;
  max-width: 70ch;
}


/* =========================
  7) HERO TYPOGRAPHY
========================= */
.eyebrow {
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 16px;
  color: #d6ddff;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: clamp(64px, 8vw, 140px);
  text-transform: uppercase;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  /* text-shadow:
    0 30px 100px #000000cc,
    0 8px 24px #000000aa; */ /* They told me the shadows are too ugly :( */

  max-width: 900px;

  -webkit-text-stroke: 1px #ffffff12;
}

.hero__lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--lead);
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
}

/* ========================================
   HERO LOGO REPLACEMENT
======================================== */

.hero__logo {
  margin-top: -40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero__logo-img {
  width: clamp(200px, 30vw, 520px);
  max-width: 90%;
  height: auto;
  display: block;
}


/* Meta chips (Venue/Date) */
.hero__meta {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 22px;
  border-radius: 14px;
  border: 1px solid #ffffff26;

  position: relative;
  overflow: hidden;

  background: #2a2b39;
  backdrop-filter: blur(10px);

  transition: 0.35s ease;
}

/* Cyan top accent */
.meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px; /* thicker for impact */

  background: linear-gradient(
    90deg,
    #07d9ea 0%,
    #07d9ea 60%,
    transparent 100%
  );

  opacity: 0.9;
}

.meta__label {
  color: #dfe5ff;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;

  box-shadow: 0 0 10px #07d9ea88;
}

.meta__value {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}

.meta:hover {
  transform: translateY(-2px);
  border-color: #07d9ea;
}

/* Hero buttons */
.hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero__note {
  margin: 18px 0 0;
  color: #d2dbff;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
}

.eyebrow,
.hero__lead,
.hero__note {
  text-align: center;
}

.hero__actions,
.contact {
  justify-content: center;
}

/* =========================
  8) ABOUT COLUMNS (editorial)
========================= */
.columns {
  display: grid;
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
  gap: 22px;
  align-items: start;
}

.bigcopy {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: #e8ecff;
  text-align: center;
  max-width: 80ch;
}

.bigcopy strong { color: var(--text); }

.bullets {
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto;
  max-width: 70ch;
  text-align: left; /* keeps bullet text readable */
}

.bullets strong { color: var(--text); }

/* ===== About Grid Layout ===== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.about-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    #0a1330,
    #070d22
  );
  border: 1px solid #1b2550;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.about-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  font-family: var(--font-body);
  opacity: 0.85;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: #07d9ea;
}

/* =========================
  9) EXPERIENCE LIST 
========================= */
.featurelist {
  display: grid;
  gap: 0;
}

.feature {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: center;

  padding: 22px 0;
  border-top: 1px solid var(--faint);
}

.feature:last-child {
  border-bottom: 1px solid var(--faint);
}

.feature__label { 
  display: flex; 
}

.tag {
  display: inline-flex;
  align-items: center;

  padding: 10px 12px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.01em;

  /* “white pill” but clean */
  background: #f7f9ff;
  color: #061029;
}

.feature__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.feature__text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;

  width: min(88ch, 100%);
}

.feature__arrow {
  color: #dbe3ff;
  font-weight: 900;
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
  10) HIGHLIGHTS TILES
========================= */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tile {
  border: 1px solid #ffffff12;
  background: #ffffff07;
  border-radius: var(--r);
  padding: 16px;
  min-height: 120px;

  position: relative;
  overflow: hidden;
  border: 1px solid #1e2a5e;
  transition: transform 0.35s ease, background 0.35s ease;
}


.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;

  background: linear-gradient(
    120deg,
    #07d9ea,
    #fed107,
    #ff3132,
    #07d9ea
  );

  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.35s ease;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tile:hover::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}

.tile:hover {
  transform: translateY(-6px);
  background: #ffffff0d;
}

.tile__title {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.tile__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

/* Tickets status banner (clean strip) */
.banner {
  margin-top: 20px;

  border-radius: calc(var(--r) + 2px);
  border: 1px solid #ffffff1f;

  background:
    linear-gradient(90deg, #07d9ea14 0%, #fed10712 50%, #ff313214 100%);

  padding: 24px;

  display: flex;
  flex-direction: column;        /* stack items */
  align-items: center;           /* horizontal center */
  text-align: center;            /* center text */
  gap: 16px;
}

.banner__title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.banner__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* =========================
  11) PARTNERS LOGO GRID
========================= */
/* Sponsors container */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
  margin-top: 30px;
}

/* Individual sponsor block */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;   /* reduced */
  min-height: 120px; /* smaller block */
}

.logo img {
  max-height: 180px;  /* much bigger */
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;

  transition: transform 0.35s ease;
}

.logo:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.logo--placeholder {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.logo-bg {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;

  width: 150px;
  aspect-ratio: 1 / 1;

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

  border: 1px solid #d9e0f0;
  overflow: hidden;
  transition: transform 0.35s ease;
}

/* animated gradient border */
.logo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    #07d9ea,
    #fed107,
    #ff3132,
    #07d9ea
  );

  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.35s ease;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.logo-bg:hover::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}

.logo-bg:hover {
  transform: translateY(-6px);
}

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

/* Co-presenter / featured sponsor */
.logo-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.logo--featured {
  width: min(900px, 70vw);  /* bigger container */
}

.logo--featured .logo-bg {
  aspect-ratio: auto;     /* remove square constraint */
  width: auto;
  padding: 30px 50px;
}

.logo--featured img {
  height: clamp(90px, 8vw, 160px);
  width: auto;
  max-width: 420px;
}

.logo-featured-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  opacity: 0.6;
}

.logo-featured-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #0131ac;
  margin: 10px auto 0;
}

.partner-block {
  margin-top: 36px;
}

.partner-block:first-of-type {
  margin-top: 40px;
}

.partner-block__title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
}

/* Compact grid for Media / Community / F&B partners only */
.logos--compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Slightly smaller cards for the compact partner groups */
.logos--compact .logo {
  min-height: auto;
  padding: 0;
}

.logos--compact .logo-bg {
  width: 180px;
  height: 120px;
  aspect-ratio: auto;
  padding: 16px 18px;
  border-radius: 16px;
}

.logos--compact .logo img {
  max-height: 70px;
  max-width: 100%;
}

/* =========================
  12) SOCIAL LINKS GRID
========================= */
.socialgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social {
  border: 1px solid #ffffff12;
  background: #ffffff07;
  border-radius: calc(var(--r) + 2px);
  padding: 18px;

  text-decoration: none;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  justify-items: stretch;

  transition: background 0.35s ease, border-color 0.35s ease;
}

.social:hover {
  background: #ffffff10;
  border-color: #ffffff22;
}

.social__name {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
}


.social__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social__handle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.social__arrow {
  color: #dbe3ff;
  font-weight: 900;
  font-size: 16px;
}

/* Social icon layout */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Icon button container */
.social-icon {
  width: 80px;
  height: 80px;

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

  border-radius: 20px;
  background: #ffffff0a;
  border: 1px solid #ffffff1f;

  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Make SVG white */
.social-icon img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

/* Hover effect */
.social-icon:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #07d9ea;
  background: #ffffff14;
}

/* =========================
  13) CONTACT ROW
========================= */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   LIGHT SECTION THEME
========================= */

#experience.section--light { background: #f6f0e4; }
#sponsors.section--light { background: #eef2ff; }
#partners.section--light { background: #f6f0e4; }
#contact.section--light { background: #f6f0e4; }

.section--light {
  background: #eef2ff;
  color: #0b1020;
}

.section--light .section__title {
  text-shadow: none;
}

.section--light .section__title,
.section--light .bigcopy,
.section--light .tile__title,
.section--light .feature__text,
.section--light .meta__value,
.section--light .banner__title,
.section--light .social,
.section--light .contact,
.section--light .logo--placeholder {
  color: #0b1020;
}

.section--light .section__sub,
.section--light .tile__text,
.section--light .banner__text,
.section--light .hero__note {
  color: #4a556f;
}

/* Cards / grids / pills */
.section--light .about-card,
.section--light .tile,
.section--light .social,
.section--light .meta,
.section--light .logo-bg,
.section--light .mobile-nav__link {
  background: #ffffff;
  border-color: #d9e0f0;
  color: #0b1020;
}

/* Experience rows */
#experience .feature {
  border-top: 1px solid #0131ac;
}

#experience .feature:last-child {
  border-bottom: 1px solid #0131ac;
}

#experience .feature__arrow {
  color: #0b1020;
}

/* Tags */
.section--light .tag {
  background: #07d9ea;
  color: #061029;
}

/* Buttons */
.section--light .btn {
  background: #ffffff;
  color: #0b1020;
  border-color: #d9e0f0;
}

.section--light .btn--ghost:hover {
  background: #eef3ff;
  border-color: #b8c7e8;
}

.section--light .btn--primary {
  background: var(--cyan);
  color: #061029;
}

/* Banner */
.section--light .banner {
  background: linear-gradient(90deg, #07d9ea22 0%, #fed10718 50%, #ff313218 100%);
  border-color: #d9e0f0;
}

/* Social icons */
.section--light .social-icon {
  background: #ffffff;
  border-color: #d9e0f0;
}

.section--light .social-icon img {
  filter: none;
}

/* Logos */
.section--light .logo-bg {
  background: #ffffff;
}

.logo-bg.logo-bg--dark {
  background: #000;
}


/* =========================
  14) FOOTER
========================= */
.footer {
  padding: 26px var(--pad);
  color: #c9d3ff;
  font-size: 13px;
  border-top: 1px solid var(--faint);
  background: #060816cc;
  backdrop-filter: blur(10px);
  text-align: center;
}