/* =========================================================
   GGCon! Under Construction — styles.css
   Notes:
   - HEX colors only (as requested)
   - Responsive layout
   - Easy to edit: change the CSS variables below
   ========================================================= */

/* ===== Theme / Brand Tokens ===== */
:root {
  /* Background + text */
  --bg: #0b0b12;
  --bg-2: #0f1020;
  --text: #f2f3ff;
  --muted: #b7b9d6;

  /* Brand accents (edit to your GGCon palette) */
  --accent: #7c3aed;      /* primary accent */
  --accent-2: #22c55e;    /* secondary accent (optional) */
  --card: #14152a;        /* card background */
  --border: #2a2c4a;      /* borders */

  /* Buttons */
  --btn: #7c3aed;
  --btn-hover: #6d28d9;
  --btn-text: #ffffff;

  /* Shadows */
  --shadow: #000000;
}

/* ===== Base Reset ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ===== Background Glow Decoration ===== */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 20% 20%, #7c3aed33 0%, #00000000 60%),
    radial-gradient(900px 600px at 80% 30%, #22c55e22 0%, #00000000 65%),
    radial-gradient(700px 500px at 50% 90%, #ffffff0f 0%, #00000000 70%);
  filter: blur(0px);
  opacity: 1;
}

/* ===== Page Layout Wrapper ===== */
.page {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
  position: relative;
}

/* ===== Header ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  height: 44px; /* adjust logo height here */
  width: auto;
  display: block;
}

.status {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #0b0b1233;
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ===== Hero Section ===== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 6px;
}

.hero__content {
  border: 1px solid var(--border);
  background: #14152acc;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 40px #00000055;
  backdrop-filter: blur(10px);
}

.hero__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__meta {
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  background: #0b0b1233;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero__lead {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.hero__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ===== Hero Panel (image) ===== */
.hero__panel {
  border: 1px solid var(--border);
  background: #14152a99;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 14px 40px #00000055;
  backdrop-filter: blur(10px);
}

.panel__image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

/* ===== Buttons / Actions ===== */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  will-change: transform;
}

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

.btn--primary {
  background: var(--btn);
  border-color: #00000000;
  color: var(--btn-text);
}

.btn--primary:hover {
  background: var(--btn-hover);
}

.btn--ghost {
  background: #0b0b1233;
  color: var(--text);
}

.btn--ghost:hover {
  border-color: #3a3d63;
}

/* ===== About Grid ===== */
.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  background: #14152acc;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px #00000033;
  backdrop-filter: blur(10px);
}

.card__title {
  margin: 0 0 10px;
  font-size: 18px;
}

.card__text {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.card__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
  font-size: 14px;
}

/* ===== Section Titles ===== */
.section-title {
  margin: 0 0 6px;
  font-size: 18px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Sponsors ===== */
.sponsors {
  margin-top: 18px;
  border: 1px solid var(--border);
  background: #14152a99;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px #00000033;
  backdrop-filter: blur(10px);
}

.sponsors__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sponsor {
  border: 1px solid var(--border);
  background: #0b0b1233;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
}

.sponsor img {
  max-width: 100%;
  max-height: 34px;
  height: auto;
  width: auto;
  display: block;
}

/* Placeholder for unrevealed sponsors */
.sponsor--placeholder {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
}

/* ===== Contact ===== */
.contact {
  margin-top: 18px;
  border: 1px solid var(--border);
  background: #14152a99;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px #00000033;
  backdrop-filter: blur(10px);
}

/* ===== Footer ===== */
.footer {
  margin-top: 18px;
  padding: 10px 0 0;
  text-align: center;
}

.footer__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .hero__title {
    font-size: 28px;
  }

  .brand__logo {
    height: 38px;
  }

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