@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F5D573;
  --gold-dark: #A8860C;
  --deep-blue: #0A1628;
  --mid-blue: #1A3A6B;
  --soft-blue: #2E6DB4;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo-text { font-family: 'Playfair Display', serif; }

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-blue);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep-blue);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}
.btn-white {
  background: white;
  color: var(--deep-blue);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
  color: var(--deep-blue);
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── CARDS ── */
.card-hover {
  transition: all 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.12);
}

/* ── HERO ── */
.hero-gradient {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 50%, #0D2B5E 100%);
}
.hero-pattern {
  background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(46,109,180,0.15) 0%, transparent 50%);
}

/* ── GOLD GRADIENT TEXT ── */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px auto 24px;
}
.gold-divider-left {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid rgba(212,175,55,0.2); }
.faq-question {
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  font-weight: 600;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--gold);
  font-size: 1.2rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--gold-dark); }

/* ── MOBILE MENU ── */
#mobile-menu {
  display: none;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(12px);
}
#mobile-menu.open { display: block; }

/* ── FORM ── */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

/* ── STAT COUNTER ── */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LIVE BADGE ── */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #DC2626;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.live-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── PROGRAM CARD ── */
.program-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.35s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.12);
  border-color: rgba(212,175,55,0.4);
}
.program-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ── FOOTER ── */
footer { background: var(--deep-blue); }
.footer-link {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  font-size: 0.88rem;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-link:hover { color: var(--gold); }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WAVE DIVIDER ── */
.wave-divider svg { display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stat-number { font-size: 2rem; }
}

/* ── HERO BG IMAGE ── */
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(26,58,107,0.75) 50%,
    rgba(10,22,40,0.85) 100%);
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn-en, .lang-btn-ti {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: none;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.lang-btn-en:hover, .lang-btn-ti:hover { color: white; }
.active-lang {
  background: var(--gold) !important;
  color: var(--deep-blue) !important;
}

/* ── LIVE PLAYER ── */
.player-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.player-container iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 16px;
}

/* ── RADIO PLAYER ── */
.radio-wave {
  display: flex; align-items: center; gap: 4px;
  height: 40px;
}
.radio-wave span {
  display: block;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.radio-wave span:nth-child(1) { height: 15px; animation-delay: 0s; }
.radio-wave span:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.radio-wave span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.radio-wave span:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.radio-wave span:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.radio-wave span:nth-child(6) { height: 15px; animation-delay: 0.5s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

