/* =============================================
   LAYOUT.CSS — Nav, Hero, About, Footer, Player
   ============================================= */

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(10,10,11,0.95) 0%, transparent 100%);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--red);
  transition: right 0.3s ease;
}

.nav-links a:hover           { color: var(--text); }
.nav-links a:hover::after    { right: 0; }

.mobile-menu-overlay {
  display: none;
}

.mobile-menu-overlay.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: fixed;
  inset: 0;
  background: #0a0a0b;
  z-index: 995;
}

.mobile-menu-overlay a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-overlay a:hover { color: var(--text); }

.nav-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  display: none;
  padding: 8px;
  transition: color 0.2s;
}
.nav-menu-close:hover { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192,57,43,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,75,0.06) 0%, transparent 60%),
    var(--bg);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.parallax-layer {
  position: absolute;
  left: 0; right: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
}

.parallax-back {
  top: -15%;
  bottom: -15%;
  background-size: cover;
}

.parallax-mid {
  top: 15%;
  bottom: -15%;
  background-size: 100%;
  background-position: center center;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.8s forwards;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo glow behind logo */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(192,57,43,0.18) 0%, rgba(192,57,43,0.06) 50%, transparent 75%);
  border-radius: 50%;
  animation: haloPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes haloPulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.12); opacity: 1; }
}

#hero-logo {
  position: relative;
  z-index: 1;
  height: 160px !important;
  filter: drop-shadow(0 0 32px rgba(255,255,255,0.2));
  animation: logoReveal 3s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}

@keyframes logoReveal {
  0%   { opacity: 0; filter: blur(16px) drop-shadow(0 0 32px rgba(255,255,255,0.2)); transform: scale(0.96); }
  60%  { filter: blur(2px) drop-shadow(0 0 32px rgba(255,255,255,0.2)); }
  100% { opacity: 1; filter: blur(0) drop-shadow(0 0 32px rgba(255,255,255,0.2)); transform: scale(1); }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s ease 4.0s forwards;
  position: relative;
  z-index: 1;
}
.hero-name .italic { font-style: italic; color: var(--red); }

/* Hero quote — below sub */
.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 24px);
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  font-weight: 500;
  color: #F5F5DC;
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
  min-height: 1.5em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 14px;
  text-shadow: 0 0 16px rgba(0,0,0,0.8);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 4.2s forwards;
}
.hero-sub-word {
  color: var(--gold);
  opacity: 0.7;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 4.6s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- ABOUT / PLATFORMS STRIP ---- */
#acerca {
  background: var(--surface);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
}
.about-quote span { color: var(--red); }

.about-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 10px 16px;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
  min-width: 160px;
}
.platform-link:hover          { border-color: var(--red); color: var(--text); }
.platform-link i              { font-size: 15px; width: 18px; text-align: center; }
.platform-link .sp            { color: #1DB954; }
.platform-link .yt            { color: #FF0000; }
.platform-link .am            { color: #FC3C44; }
.platform-link .az            { color: #00A8E0; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  padding: 60px 40px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
}
.footer-logo span  { color: var(--red); }
.footer-tagline    { font-size: 12px; color: var(--text-muted); margin-top: 6px; letter-spacing: 0.1em; }

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 15px;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--red); color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span  { font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; }
.footer-credit a     { color: var(--red); }



@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .parallax-mid {
    background-size: 300%;
    background-position: center center;
    top: 1%;
  }
}