.placeholder .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.dancing-script-bold {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  
}


.gradient-underline {
  position: relative;
}

.gradient-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -2%;
  transform: translateX(-50%);
  width: 0;
  height: 3px; /* underline thickness */
  background: linear-gradient(to right, #ffd700, #ff6b6b);
  transition: width 0.3s ease;
}

span {
  z-index: 17 !important;
}
.gradient-underline:hover::after {
  width: 50%;
}

/* On desktop and above (≥ 780px) */
@media (min-width: 780px) {
  h1 {
    font-size: 8rem;
  }
}
@media (max-width: 780px) {
  h1 {
    font-size: 2.5rem !important;
  }
  .hero-p{
  font-size: 2rem !important;
  }
}
.grad {
  background: radial-gradient(circle at 20% 30%, #fdf6ec, transparent 60%),
    radial-gradient(circle at 80% 20%, #f4e4c8, transparent 50%),
    radial-gradient(circle at 60% 80%, #d4b36d, transparent 50%),
    radial-gradient(circle at 10% 80%, #f9e9d8, transparent 60%), #fffdf9;
  background-size: cover;
}

/* Make h2 use the darker golden color for consistency */
h2,
h2.text-text-dark {
  color: #b8860b !important; /* golden-dark */
}

/* Mobile menu open state */
#mobile-menu[data-open="true"] {
  transform: scaleY(1);
}
#mobile-menu {
  transform-origin: top center;
}

/* Section reveal animation (slide + fade) */
.nav-active {
  background: #d4af37; /* golden-main */
  color: #fff !important;
  padding: 0.375rem 1rem; /* match Watch Now padding */
  border-radius: 0.5rem; /* rounded-lg equivalent */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-active:hover {
  background: #b8860b; /* golden-dark on hover */
}

/* Make sure mobile menu link doesn't stretch oddly */
@media (max-width: 767px) {
  .nav-active {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    padding-left: 0.75rem;
    border-radius: 0.5rem;
  }
  .hero-img{
  left: 0% !important;
}
}
.hero-img{
  left: 20%;
}
.hero-p{
  font-size: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms cubic-bezier(0.22, 0.9, 0.3, 1),
    transform 450ms cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Children can animate in with a small stagger */
.reveal .reveal-child {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms ease-out, transform 380ms ease-out;
}
.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.link-a{
  text-decoration: underline !important;
}
/* All Episodes section background styling (dark gold) */
section#episodes.all-episodes {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.18),
    rgba(184, 134, 11, 0.12)
  );
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.03);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

/* Keep inner container transparent so cards keep their own background */
section#episodes.all-episodes .mx-auto {
  background: transparent;
}

/* Intro/Outro overlay styles */
.site-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.22, 0.9, 0.3, 1);
}
.site-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.overlay-content {
  background: linear-gradient(180deg, #fff, #fffdf8);
  border-radius: 14px;
  padding: 28px;
  max-width: 520px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.2);
  transform: translateY(12px);
  transition: transform 360ms cubic-bezier(0.22, 0.9, 0.3, 1);
}
.site-overlay[aria-hidden="false"] .overlay-content {
  transform: translateY(0);
}
.overlay-content .logo-wrap img {
  width: 88px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}
.intro-title {
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: #1c1917;
}
.intro-sub {
  color: #4b453f;
  margin-bottom: 14px;
}
.btn-overlay {
  background: #d4af37;
  color: #111;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.btn-overlay:hover {
  background: #b8860b;
}
.outro-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

/* Subtle intro animation */
@keyframes intro-pop {
  0% {
    transform: scale(0.98);
    opacity: 0;
  }
  60% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-overlay,
  .overlay-content {
    transition: none;
    animation: none;
  }
}
