/* ═══════════════════════════════════════════
   GoddessTara — Cinematic Dark Alternative
   Theme: Southern Gothic, Ritual, Immersion
   ═══════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --black:       #06050a;
  --ink:         #0d0b12;
  --charcoal:    #181420;
  --ash:         #2a2435;
  --muted:       #5c5570;
  --silver:      #a098b8;
  --cream:       #c8bdb5;
  --gold:        #c4a882;
  --gold-dim:    #8a7358;
  --burgundy:    #6b1a2a;
  --rose:        #8b2f45;
  --rust:        #7a3520;
  --dust:        #d4a88a;

  --ff-display:  'Cinzel Decorative', 'Cinzel', serif;
  --ff-heading:  'Cinzel', serif;
  --ff-body:     'Crimson Pro', Georgia, serif;

  --ease-ritual: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-dramatic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Section Inner Wrapper ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.section-sub {
  text-align: center;
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.6) brightness(0.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, var(--black) 100%),
    linear-gradient(to bottom, rgba(6,5,10,0.3) 0%, rgba(6,5,10,0.7) 70%, var(--black) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 1.2s var(--ease-dramatic) 0.3s forwards;
}

.hero__name {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.9;
  color: var(--cream);
  text-shadow:
    0 0 80px rgba(196, 168, 130, 0.3),
    0 4px 40px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeSlideUp 1.4s var(--ease-dramatic) 0.6s forwards;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeIn 1s var(--ease-ritual) 1.2s forwards;
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-dramatic) 1.4s forwards;
}

.hero__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-dramatic) 1.7s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease-ritual) 2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-ritual);
  position: relative;
}

.btn--primary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(196, 168, 130, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--ash);
}

.btn--ghost:hover {
  border-color: var(--muted);
  color: var(--cream);
}

/* ══════════════════════════════
   SPOTIFY SECTION
   ══════════════════════════════ */
.spotify-section {
  padding: 7rem 0;
  background: var(--ink);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.spotify-embed {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--charcoal), 0 20px 60px rgba(0,0,0,0.6);
}

.spotify-embed iframe {
  display: block;
  border-radius: 4px;
}

/* ══════════════════════════════
   MYTHOS (ABOUT)
   ══════════════════════════════ */
.mythos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--black);
}

.mythos__image-pane {
  position: relative;
  overflow: hidden;
}

.mythos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.7) sepia(0.3);
  transition: transform 8s ease;
}

.mythos__image-pane:hover .mythos__img {
  transform: scale(1.04);
}

.mythos__text-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--black);
}

.mythos__kicker {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}

.mythos__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.mythos__body p {
  color: var(--silver);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.mythos__body p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════
   ATMOSPHERE BREAK
   ══════════════════════════════ */
.atmosphere-break {
  position: relative;
  overflow: hidden;
}

.atmosphere-break__img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
}

.atmosphere-break__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  font-style: italic;
  white-space: nowrap;
}

/* ══════════════════════════════
   MUSIC SECTION
   ══════════════════════════════ */
.music-section {
  padding: 7rem 0;
  background: var(--ink);
}

.spotify-track-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.spotify-track-card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--charcoal), 0 20px 60px rgba(0,0,0,0.6);
}

.spotify-track-card iframe {
  display: block;
  border-radius: 4px;
}

/* ══════════════════════════════
   PRESS
   ══════════════════════════════ */
.press-section {
  padding: 7rem 0;
  background: var(--charcoal);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.press-card {
  background: var(--ink);
  border: 1px solid var(--ash);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
}

.press-card::before {
  content: '\u201C';
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--gold-dim);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  opacity: 0.4;
}

.press-card__quote {
  color: var(--cream);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.press-card__source {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ══════════════════════════════
   CONNECT
   ══════════════════════════════ */
.connect-section {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--charcoal);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ash);
  color: var(--silver);
  background: var(--charcoal);
  transition: all 0.35s var(--ease-ritual);
}

.social-link:hover {
  border-color: var(--muted);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.social-link--spotify:hover  { border-color: #1DB954; color: #1DB954; }
.social-link--instagram:hover { border-color: #c13584; color: #c13584; }
.social-link--youtube:hover   { border-color: #ff4444; color: #ff4444; }
.social-link--soundcloud:hover { border-color: #ff5500; color: #ff5500; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.8rem;
  color: var(--ash);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ── Scroll-reveal (via IntersectionObserver) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-dramatic), transform 0.8s var(--ease-dramatic);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .mythos {
    grid-template-columns: 1fr;
  }
  .mythos__image-pane {
    height: 50vw;
    min-height: 280px;
  }
  .mythos__text-pane {
    padding: 3rem 1.75rem;
  }
  .hero__cta-row {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 220px;
    text-align: center;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .social-link {
    width: 240px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__name {
    letter-spacing: 0.06em;
  }
  .section-inner {
    padding: 0 1.25rem;
  }
}