/* ============================================================
   QUALIFIED FOR NOTHING - styles.css
   ============================================================ */

/* ---- Pain de Mie font ---- */
@font-face {
  font-family: 'Pain de Mie';
  src: url('assets/font/pain-de-mie.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #f5f0e8;
  --gold:    #d4a843;
  --gold-lt: #e8c56a;
  --dark:    #0d0b09;
  --dark2:   #1a1612;
  --glass:   rgba(255,255,255,0.06);
  --glass-border: rgba(212,168,67,0.25);
  --radius:  16px;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-img {
  position: absolute;
  inset: 0;
  background: url('assets/img/background.png') center / cover no-repeat;
  animation: bgPulse 14s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes bgPulse {
  0%   { transform: scale(1)    translateY(0px);   filter: brightness(0.55) saturate(1.1); }
  50%  { transform: scale(1.04) translateY(-8px);  filter: brightness(0.6)  saturate(1.3); }
  100% { transform: scale(1.02) translateY(4px);   filter: brightness(0.5)  saturate(1.0); }
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(13,11,9,0.3) 0%, rgba(13,11,9,0.75) 100%);
}

/* Floating particles */
.particles { position: absolute; inset: 0; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0)    rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.site-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0 60px;
  gap: 20px;
}

.logo-wrap {
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

.logo {
  max-width: min(340px, 65vw);
  width: 100%;
  filter: drop-shadow(0 0 32px rgba(212,168,67,0.45)) drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}

.site-title {
  font-family: 'Pain de Mie', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,67,0.25);
  margin-top: 4px;
}

.tagline {
  font-family: 'Pain de Mie', 'Georgia', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-lt);
  letter-spacing: 0.03em;
}

.description {
  max-width: 620px;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  color: rgba(245,240,232,0.8);
}

.description strong {
  color: var(--gold-lt);
  font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  margin-top: 70px;
}

.section-title {
  font-family: 'Pain de Mie', 'Georgia', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 10px auto 0;
}

/* ============================================================
   LISTEN CARDS
   ============================================================ */
.listen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.listen-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.listen-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,168,67,0.2);
}

.listen-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.listen-icon svg { width: 28px; height: 28px; }

.spotify-icon  { background: #1DB954; color: #fff; }
.apple-icon    { background: linear-gradient(135deg, #fa233b, #fb5c74); color: #fff; }
.yt-icon       { background: #FF0000; color: #fff; }
.amazon-icon   { background: #00A8E1; color: #fff; }

.listen-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Coming soon overlay */
.listen-card.coming-soon {
  position: relative;
  pointer-events: none;
  filter: grayscale(0.4);
}

.listen-card.coming-soon::after {
  content: 'coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(13,11,9,0.72);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.85);
}

.listen-card.coming-soon:hover {
  transform: none;
  background: var(--glass);
  border-color: var(--glass-border);
  box-shadow: none;
}

/* ============================================================
   HOST CARDS
   ============================================================ */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.host-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.host-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.host-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.host-card:hover::before { opacity: 1; }

.host-avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold));
  margin-bottom: 18px;
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}

.host-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--dark2) center / cover no-repeat;
}

.celaine-avatar { background-image: url('assets/img/portrait/celaine.jpg'); background-size: cover; background-position: center top; }
.ida-avatar     { background-image: url('assets/img/portrait/kim.png');     background-size: cover; background-position: center top; }
.hamish-avatar  { background-image: url('assets/img/portrait/hamish.png');  background-size: cover; background-position: center top; }

.host-name {
  font-family: 'Pain de Mie', 'Georgia', serif;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.host-title {
  font-size: 0.85rem;
  color: var(--gold-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Social icon row */
.host-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--sc, rgba(255,255,255,0.2));
  color: #fff;
  border-color: transparent;
  transform: scale(1.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,168,67,0.15);
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.04em;
}

.footer-copy a {
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: var(--gold-lt);
}

.footer-legal {
  margin-top: 10px;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.22);
  letter-spacing: 0.04em;
}

.footer-legal a {
  color: rgba(245,240,232,0.28);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold-lt);
}

.footer-legal-sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============================================================
   SUBMISSIONS
   ============================================================ */
.submit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  backdrop-filter: blur(14px);
  max-width: 680px;
  margin: 0 auto;
}

.submit-lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,168,67,0.35);
}

.submit-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.38);
  line-height: 1.7;
  max-width: 540px;
}

/* ============================================================
   BUSINESS
   ============================================================ */
.business-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.business-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.business-link {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.business-link:hover {
  color: var(--gold-lt);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-wrap {
    padding: 0 16px 48px;
  }

  /* Hero */
  .hero {
    padding: 48px 0 36px;
    gap: 16px;
  }

  .logo {
    max-width: min(280px, 80vw);
  }

  .site-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    letter-spacing: 0.04em;
  }

  .tagline {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .description {
    font-size: 0.95rem;
    padding: 0 4px;
  }

  /* Sections */
  .section {
    margin-top: 48px;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 24px;
  }

  /* Listen grid: 1 column on mobile */
  .listen-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .listen-card {
    padding: 14px 16px;
    justify-content: flex-start;
  }

  .listen-label {
    font-size: 0.95rem;
  }

  /* Host cards: 1 column, full width */
  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .host-card {
    padding: 28px 20px 24px;
  }

  /* Submit */
  .submit-card {
    padding: 28px 20px;
    gap: 18px;
  }

  .submit-btn {
    font-size: 0.85rem;
    padding: 12px 20px;
    word-break: break-all;
  }

  /* Footer */
  .footer {
    margin-top: 56px;
    padding-top: 24px;
  }

  .footer-copy {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
