/* =============================================
   TRANSFORMED TO LEAD — Virtuous Life TV
   Core Styles
   ============================================= */

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #9a7a32;
  --black: #0a0a0a;
  --deep-dark: #0f0f0f;
  --dark: #141414;
}

/* Fonts */
.font-cinzel { font-family: 'Cinzel', serif; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* =============================================
   COLORS & UTILITIES
   ============================================= */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.bg-deep-dark { background-color: var(--deep-dark); }
.border-gold { border-color: var(--gold); }

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.logo-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.3s ease;
}

.logo-icon:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #000;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(201, 168, 76, 0.5);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-red {
  background: #cc0000;
  color: #fff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-red:hover {
  background: #ee0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 0, 0, 0.4);
}

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}

.divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  display: block;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: #000;
}

.hero-bg {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #000 0%, #0a0806 50%, #000 100%);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
}

/* =============================================
   PARTICLES
   ============================================= */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 0.5s; animation-duration: 7.5s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 1.5s; animation-duration: 10s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; animation-duration: 8.5s; }
.particle:nth-child(8) { left: 80%; top: 85%; animation-delay: 4s; animation-duration: 6.5s; }

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.8; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  min-height: 50vh;
}

.page-hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.about-hero-bg {
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #000 0%, #0a0806 100%);
}

.episodes-hero-bg {
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(204, 0, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #000 0%, #0a0806 100%);
}

.apply-hero-bg {
  background: 
    radial-gradient(ellipse at 60% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #000 0%, #0a0806 100%);
}

/* =============================================
   CARDS
   ============================================= */
.journey-card {
  background: rgba(255,255,255,0.02);
  cursor: default;
}

.journey-card:hover {
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}

.pillar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  transition: all 0.4s ease;
}

.pillar-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
}

.pillar-icon {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

/* =============================================
   PILLARS SECTION BG
   ============================================= */
.pillars-bg {
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--deep-dark) 50%, var(--black) 100%);
}

/* =============================================
   STATS
   ============================================= */
.stats-bg {
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(0,0,0,1) 50%, rgba(201,168,76,0.05) 100%);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

/* =============================================
   STREAM CARDS
   ============================================= */
.stream-card {
  background: rgba(255,255,255,0.02);
  transition: all 0.4s ease;
}

.stream-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-bg {
  background: 
    radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%),
    linear-gradient(135deg, var(--black) 0%, #0a0806 100%);
}

.cta-overlay {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 60%);
}

/* =============================================
   EPISODE CARDS
   ============================================= */
.episode-card {
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}

.episode-card:hover {
  transform: translateY(-4px);
}

.episode-thumb {
  background: linear-gradient(135deg, #0a0806 0%, #1a1408 100%);
}

.episode-thumb-overlay {
  background: rgba(0,0,0,0.3);
}

/* =============================================
   ABOUT PAGE CARDS
   ============================================= */
.about-stat-card {
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.5);
}

.mission-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  transition: all 0.4s ease;
}

.mission-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.phase-card {
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.phase-card:hover {
  background: rgba(201,168,76,0.03);
}

.brand-showcase {
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(0,0,0,0) 100%);
  transition: all 0.3s ease;
}

/* =============================================
   APPLY PAGE
   ============================================= */
.req-card {
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.req-card:hover {
  background: rgba(201,168,76,0.05);
  transform: translateY(-2px);
}

.form-section {
  background: #ffffff;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: #f9f7f2;
  border: 1px solid rgba(201,168,76,0.4);
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  background: #fffdf5;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.form-input::placeholder {
  color: rgba(0,0,0,0.3);
}

.form-input option {
  background: #fff;
  color: #1a1a1a;
}

.form-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-bg {
  background: linear-gradient(180deg, #000 0%, #060604 100%);
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(201,168,76,0.1);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

.animate-bounce-slow {
  animation: bounceSlow 2.5s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

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

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

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 3rem; }
  .page-hero { min-height: 40vh; }
  .form-section { padding: 1.5rem; }
}

/* =============================================
   SPONSORS & PARTNERS PAGE
   ============================================= */
.sponsors-hero-bg {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.15) 0%, transparent 65%),
    linear-gradient(135deg, #000 0%, #0a0806 100%);
}

.sponsor-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}

.sponsor-tier-badge.gold    { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.6); color: var(--gold); }
.sponsor-tier-badge.silver  { background: rgba(192,192,192,0.12); border: 1px solid rgba(192,192,192,0.5); color: #d4d4d4; }
.sponsor-tier-badge.bronze  { background: rgba(180,120,80,0.12); border: 1px solid rgba(180,120,80,0.5); color: #c87941; }
.sponsor-tier-badge.partner { background: rgba(99,179,237,0.12); border: 1px solid rgba(99,179,237,0.5); color: #63b3ed; }

.sponsor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.sponsor-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}

.sponsor-logo-placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.06);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo-placeholder {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
}

.partner-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(99,179,237,0.15);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-card:hover {
  background: rgba(99,179,237,0.04);
  border-color: rgba(99,179,237,0.4);
  transform: translateY(-4px);
}

.become-sponsor-cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
