/* ===================================================
   GIO'S GALAXY — Styles
   =================================================== */

/* --- TOKENS --- */
:root {
  --neon-orange: #FF6B00;
  --magenta: #FF2D7B;
  --purple: #7B2FBE;
  --yellow-glow: #FFD700;
  --deep-black: #0A0A0A;
  --dark-surface: #121212;
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;

  --font-display: 'Press Start 2P', monospace;
  --font-body: 'Exo 2', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/GioBackround.png') center top / cover no-repeat;
  background-attachment: scroll;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.6) 70%,
    var(--deep-black) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

/* --- LOGO --- */
.hero__logo {
  width: clamp(180px, 40vw, 400px);
  height: auto;
  animation: float 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(123, 47, 190, 0.5)) drop-shadow(0 0 6px rgba(80, 140, 255, 0.3)); }
  50%      { filter: drop-shadow(0 0 30px rgba(123, 47, 190, 0.8)) drop-shadow(0 0 14px rgba(80, 140, 255, 0.5)); }
}

/* --- TAGLINE --- */
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 2.5vw, 1.25rem);
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.35);
}

/* --- SCROLL HINT --- */
.hero__scroll-hint {
  color: var(--text-secondary);
  opacity: 0.5;
  animation: nudge 2.5s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow-glow);
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-orange), var(--magenta));
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.btn--primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(255, 107, 0, 0.55);
}

.btn--social {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn--social:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.3);
  transform: scale(1.04);
}

.btn__icon {
  flex-shrink: 0;
}

/* ===================================================
   CONTENT BLOCK (consolidated section below hero)
   =================================================== */
.content {
  background: var(--deep-black);
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content__card {
  width: 100%;
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 107, 0, 0.12);
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.content__heading {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2.8vw, 1.3rem);
  background: linear-gradient(135deg, var(--neon-orange), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content__description {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.content__highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.content__highlight-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 600;
  color: var(--text-primary);
  width: 240px;
}

.highlight-star {
  color: var(--yellow-glow);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

/* --- DIVIDER --- */
.content__divider {
  width: 60%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.25),
    transparent
  );
}

/* --- SCHEDULE --- */
.content__schedule {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 2vw, 0.9rem);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content__underline {
  display: block;
  margin-top: 0.5rem;
  height: 2px;
  width: 140px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-orange), var(--magenta));
  animation: pulseWidth 3s ease-in-out infinite;
}

@keyframes pulseWidth {
  0%, 100% { width: 140px; opacity: 1; }
  50%      { width: 100px; opacity: 0.65; }
}

/* --- SOCIAL --- */
.content__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.content__email {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1px;
}

.content__email:hover {
  color: var(--neon-orange);
  border-bottom-color: var(--neon-orange);
}

.content__email:focus-visible {
  outline: 2px solid var(--yellow-glow);
  outline-offset: 3px;
}

/* --- COPYRIGHT --- */
.content__copyright {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ===================================================
   RESPONSIVE — TABLET (768px+)
   =================================================== */
@media (min-width: 768px) {
  .hero__content {
    gap: 2rem;
  }

  .content__card {
    padding: 3rem 3rem;
    gap: 1.5rem;
  }

  .content__social {
    gap: 1rem;
  }
}

/* ===================================================
   RESPONSIVE — DESKTOP (1024px+)
   =================================================== */
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }

  .content__card {
    padding: 3.5rem 4rem;
  }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .hero__logo {
    animation: none;
  }

  .hero__scroll-hint {
    animation: none;
  }

  .content__underline {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
