:root {
  --navy: #100e24;
  --gold: #D4AF37;
  --light: #F2F2F2;
  --card: #19163a;
}

/* Global */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:var(--navy); color:var(--light); line-height:1.6; }
.container { width:90%; max-width:1400px; margin:auto; }

/* Header */
header {
  position: relative;
  overflow: hidden;
  height: 400px; /* adjust height as you like */
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  text-align: center;
}

/* Header text */
.header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
   background: linear-gradient(90deg, #D4AF37, #FFD966, #D4AF37);
  background-size: 200% 100%;
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  animation: gradientMove 4s linear infinite;
  line-height: 0.95;
  margin-bottom: 1px;
}

.header-content p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;

}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Button styling */
.header-content .button {
  margin-top: 30px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-content .button:hover {
  background-color: var(--gold);
  color: #100e24;
  box-shadow: 0 0 25px var(--gold), 0 0 50px var(--gold);
  transform: scale(1.05);
}

/* Particles */
.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
  animation: float 8s linear infinite;
}

/* Random starting positions & delays */
.particles span:nth-child(1) { top:10%; left:20%; animation-delay:0s; }
.particles span:nth-child(2) { top:40%; left:80%; animation-delay:2s; }
.particles span:nth-child(3) { top:70%; left:10%; animation-delay:4s; }
.particles span:nth-child(4) { top:20%; left:60%; animation-delay:6s; }
.particles span:nth-child(5) { top:50%; left:40%; animation-delay:1s; }
.particles span:nth-child(6) { top:15%; left:75%; animation-delay:3s; }
.particles span:nth-child(7) { top:60%; left:25%; animation-delay:5s; }
.particles span:nth-child(8) { top:35%; left:50%; animation-delay:7s; }
.particles span:nth-child(9) { top:80%; left:70%; animation-delay:2s; }
.particles span:nth-child(10){ top:25%; left:30%; animation-delay:4s; }
.particles span:nth-child(11){ top:55%; left:85%; animation-delay:6s; }

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0) translateX(0) scale(1); opacity:0.8; }
  50% { transform: translateY(-50px) translateX(20px) scale(1.2); opacity:1; }
  100% { transform: translateY(0) translateX(-20px) scale(1); opacity:0.8; }
}
.button { display:inline-block; padding:12px 28px; border:2px solid var(--gold); color:var(--gold); text-decoration:none; font-weight:600; transition:0.3s ease; margin-top:5px; }
.button:hover { background-color:var(--gold); color:var(--navy); }

/* Disabled button state */
.button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
}

.sub-proof {
  font-size: 0.95rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 25px;
}

/* Navbar */
.navbar { width:100%; padding:1px 0; background:transparent; border-bottom:1px solid rgba(212,175,55,0.2); }
.nav-container { width:95%; max-width:1400px; margin:auto; display:flex; align-items:center; }
.logo { height:170px; object-fit:contain; }

/* Sections */
.section { padding:70px 0; }
.section-title { font-family:'Playfair Display', serif; font-size:2rem; margin-bottom:20px; border-bottom:1px solid var(--gold); display:inline-block; padding-bottom:8px; }
.featured img { width:100%; max-width:750px; height:auto; border-radius:14px; display:block; margin:0 auto 25px; border:1px solid rgba(212,175,55,0.3); box-shadow:0 15px 40px rgba(0,0,0,0.4); }
.featured { display:flex; flex-direction:column; align-items:center; }

.featured-logos {
  text-align: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.logo-row img {
  height: 120px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Cards */
.card-wrapper { position:relative; flex:0 0 auto; z-index: 1; }
.card-wrapper:hover {
  z-index: 999;
}
.card { position:relative; background-color:var(--card); border-radius:12px; padding:20px; transition: transform 0.3s ease, box-shadow 0.3s ease; min-width:520px; max-width:560px; }
.card img { width:100%; border-radius:10px; margin-bottom:15px; }
.card h3 { margin-bottom:10px; font-size:1.2rem; }
.card p { font-size:0.9rem; opacity:0.8; margin-bottom:15px;}
.card:hover {
  transform: translateY(-15px);
  box-shadow:
  0 15px 30px rgba(0,0,0,0.6),
  0 0 30px rgba(212,175,55,0.8),
  0 0 60px rgba(212,175,55,0.5);
}

/* Episode Row */
.episode-row-wrapper {
  position: relative;
  overflow: visible; /* important so buttons show above the row */
}
.episode-row { display:flex; gap:25px; overflow-x:auto; overflow-y:visible; padding:75px 0; scroll-behavior:smooth; scrollbar-width:none; -ms-overflow-style:none; }
.episode-row::-webkit-scrollbar { display: none; }
.episode-row::-webkit-scrollbar-thumb { background:var(--gold); border-radius:10px; }

/* Upcoming Shows — allow left overflow and hide scrollbars */
.upcoming .episode-row {
  margin-left: -65px;     /* lets first card spill left */
  padding-left: 65px;     /* keeps first card content aligned */
  overflow-x: auto;       /* enable horizontal scroll if needed */
  overflow-y: visible;    /* allow glow to extend vertically */
  gap: 50px;
  display: flex;
  scroll-behavior: smooth;
}

/* Hide scrollbars for clean look */
.upcoming .episode-row::-webkit-scrollbar {
  display: none;
}
.upcoming .episode-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.episode-row.completed {
  display: flex;
  gap: 25px;
  overflow-x: auto;  /* horizontal scroll lives here */
  overflow-y: visible; /* allow card glow to extend vertically */
  padding: 75px 0;
  scroll-behavior: smooth;
}

/* Hide scrollbars */
.episode-row.completed::-webkit-scrollbar { display: none; }
.episode-row.completed { scrollbar-width: none; -ms-overflow-style: none; }

/* Scroll Buttons */
.scroll-btn { position:absolute; top:50%; transform:translateY(-50%); z-index:20; background:rgba(0,0,0,0.5); border:none; color:var(--gold); font-size:2rem; padding:10px; cursor:pointer; border-radius:50%; }
.scroll-btn.left { left:-50px; }
.scroll-btn.right { right:-50px; }

/* About Section */
.about { max-width:800px; margin:auto; text-align:center; }

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 20px;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Social buttons */
footer .socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

footer .social-btn {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease, box-shadow 0.3s ease;
}

footer .social-btn:hover {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow:
    0 0 10px var(--gold),
    0 0 20px var(--gold),
    0 0 30px var(--gold);
  transform: scale(1.1);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================= */
/* Mobile Responsive          */
/* ========================= */
@media (max-width: 768px) {

  /* Navbar */
  .logo {
    height: 90px;
  }

  /* Header */
  header {
    padding: 100px 20px 60px;
  }

  .header-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .tagline {
    font-size: 1rem;
  }

  .sub-proof {
    font-size: 0.8rem;
  }

  .header-content .button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Cards */
  .card {
    min-width: 260px;
    max-width: 280px;
    padding: 15px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.85rem;
  }

  /* Episode rows */
  .episode-row, .episode-row.completed {
    gap: 15px;
    padding: 50px 10px;
  }

  /* Scroll buttons */
  .scroll-btn {
    display: none;
  }

  /* Footer Contact Me buttons */
  footer .social-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Reveal — don't delay on mobile */
  .reveal {
    transition-duration: 0.5s;
  }

}