/* ═══════════════════════════════════════
   YOGA VEDANTA — CUSTOM STYLES
   File: /wp-content/yoga-vedanta/assets/css/yv-style.css
═══════════════════════════════════════ */

:root {
  --yv-saffron:    #E8650A;
  --yv-saffron-lt: #F5922A;
  --yv-green:      #0D1A12;
  --yv-green-mid:  #1A3329;
  --yv-sage:       #4A7C6A;
  --yv-cream:      #F7F0E6;
  --yv-gold:       #C8A55A;
  --yv-gold-lt:    #E6CB87;
  --yv-dark:       #1C1C1C;
  --yv-muted:      #7A7060;
  --yv-border:     rgba(200,165,90,0.2);
}

/* ── RESET ── */
#yv-home * { box-sizing: border-box; }
#yv-home a { text-decoration: none; }
#yv-home ul { list-style: none; padding: 0; margin: 0; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.yv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 60px 80px;
  overflow: hidden;
  background: var(--yv-green);
}

.yv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(74,124,106,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(232,101,10,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 10%, rgba(200,165,90,0.08) 0%, transparent 50%);
}

.yv-hero-bg::before {
  content: '🕉';
  position: absolute;
  font-size: 420px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.yv-hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(200,165,90,0.12);
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 60px rgba(200,165,90,0.04),
    0 0 0 120px rgba(200,165,90,0.025);
}

.yv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,26,18,0.6) 0%,
    rgba(13,26,18,0.2) 60%,
    transparent 100%
  );
}

.yv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  flex: 1;
}

.yv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200,165,90,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
  color: var(--yv-gold-lt);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(8px);
  background: rgba(200,165,90,0.06);
}

.yv-hero-badge span { color: var(--yv-saffron); }

.yv-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(38px, 5.5vw, 68px) !important;
  font-weight: 300 !important;
  color: var(--yv-cream) !important;
  line-height: 1.12 !important;
  margin: 0 0 22px !important;
  letter-spacing: -0.01em;
}

.yv-hero-title em {
  font-style: italic;
  color: var(--yv-gold);
  display: block;
}

.yv-hero-sub {
  color: rgba(247,240,230,0.62);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 500px;
  font-family: 'DM Sans', sans-serif;
}

.yv-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.yv-btn-primary {
  background: var(--yv-saffron);
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.yv-btn-primary:hover {
  background: var(--yv-saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,10,0.35);
}

.yv-btn-wa {
  border: 1px solid rgba(200,165,90,0.4);
  color: var(--yv-gold-lt) !important;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(8px);
  background: rgba(200,165,90,0.06);
}
.yv-btn-wa:hover {
  border-color: var(--yv-gold);
  background: rgba(200,165,90,0.12);
}

/* ── HERO STATS ── */
.yv-hero-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yv-stat {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,165,90,0.2);
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s;
}
.yv-stat:hover {
  border-color: rgba(200,165,90,0.5);
  background: rgba(255,255,255,0.08);
  transform: translateX(-4px);
}

.yv-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--yv-gold);
  line-height: 1;
}

.yv-stat-label {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.yv-trust-bar {
  border-top: 1px solid rgba(200,165,90,0.15);
  border-bottom: 1px solid rgba(200,165,90,0.15);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #0a1410;
}

.yv-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yv-ti-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.yv-ti-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--yv-cream);
  font-family: 'DM Sans', sans-serif;
}

.yv-ti-sub {
  font-size: 11px;
  color: var(--yv-muted);
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.yv-section {
  padding: 90px 60px;
  background: #f9f6f1;
}

.yv-section-dark {
  background: var(--yv-green);
}

.yv-container {
  max-width: 1180px;
  margin: 0 auto;
}

.yv-section-label {
  color: var(--yv-saffron);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.yv-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 300 !important;
  color: var(--yv-dark) !important;
  margin: 0 0 48px !important;
  line-height: 1.2 !important;
}

.yv-section-dark .yv-section-title {
  color: var(--yv-cream) !important;
}

.yv-section-title em {
  color: var(--yv-gold);
  font-style: italic;
}

/* ═══════════════════════════════════════
   COURSE CARDS
═══════════════════════════════════════ */
.yv-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yv-course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(200,165,90,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.yv-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  border-color: rgba(200,165,90,0.4);
}

.yv-course-featured {
  border-color: var(--yv-saffron);
  box-shadow: 0 8px 40px rgba(232,101,10,0.15);
}

.yv-course-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yv-saffron);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
}

.yv-course-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.yv-course-emoji {
  font-size: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.yv-course-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yv-course-hrs {
  color: var(--yv-gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.yv-course-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: var(--yv-dark) !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.yv-course-desc {
  color: #666;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  flex: 1;
}

.yv-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.yv-course-meta span {
  font-size: 11px;
  color: var(--yv-muted);
  background: #f5f0e8;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}

.yv-course-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--yv-dark);
  margin-bottom: 16px;
  line-height: 1;
}

.yv-course-price span {
  font-size: 14px;
  color: var(--yv-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.yv-course-btn {
  display: block;
  padding: 12px 0;
  text-align: center;
  border: 1px solid rgba(200,165,90,0.35);
  border-radius: 8px;
  color: var(--yv-dark) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  margin-top: auto;
}

.yv-course-btn:hover {
  background: var(--yv-green);
  color: var(--yv-gold) !important;
  border-color: var(--yv-green);
}

.yv-course-btn-primary {
  background: var(--yv-saffron) !important;
  color: #fff !important;
  border-color: var(--yv-saffron) !important;
}

.yv-course-btn-primary:hover {
  background: var(--yv-saffron-lt) !important;
  border-color: var(--yv-saffron-lt) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.yv-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.yv-testi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,165,90,0.14);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.yv-testi:hover {
  border-color: rgba(200,165,90,0.35);
  background: rgba(255,255,255,0.07);
}

.yv-stars {
  color: var(--yv-gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.yv-testi-text {
  font-size: 14px;
  color: rgba(247,240,230,0.65);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.yv-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yv-sage), var(--yv-green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid rgba(200,165,90,0.3);
  flex-shrink: 0;
}

.yv-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--yv-cream);
  font-family: 'DM Sans', sans-serif;
}

.yv-author-country {
  font-size: 12px;
  color: var(--yv-muted);
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.yv-faq-wrap .yv-section-title { margin-bottom: 36px !important; }

.yv-faq {
  max-width: 780px;
  margin: 0 auto;
}

.yv-faq-item {
  border-bottom: 1px solid rgba(200,165,90,0.2);
}

.yv-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--yv-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}

.yv-faq-q:hover { color: var(--yv-saffron); }
.yv-faq-q span {
  font-size: 22px;
  color: var(--yv-gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.yv-faq-item.open .yv-faq-q span {
  transform: rotate(45deg);
  color: var(--yv-saffron);
}

.yv-faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
}

.yv-faq-item.open .yv-faq-a { display: block; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.yv-cta-banner {
  background: linear-gradient(135deg, var(--yv-green-mid) 0%, #0A2018 100%);
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.yv-cta-banner::before {
  content: '🕉';
  position: absolute;
  font-size: 320px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.yv-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 300 !important;
  color: var(--yv-cream) !important;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
}

.yv-cta-title em {
  color: var(--yv-gold);
  font-style: italic;
}

.yv-cta-sub {
  color: rgba(247,240,230,0.5);
  font-size: 15px;
  margin-bottom: 36px;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════
   FONTS IMPORT
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── Large Desktop ── */
@media (min-width: 1025px) {
  .yv-hero {
    flex-direction: row;
    align-items: center;
    min-height: 92vh;
  }
  .yv-hero-stats {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }
  .yv-courses {
    grid-template-columns: repeat(3, 1fr);
  }
  .yv-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .yv-hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 80px 30px 60px;
  }
  .yv-hero-stats {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
  }
  .yv-courses {
    grid-template-columns: 1fr 1fr;
  }
  .yv-testimonials {
    grid-template-columns: 1fr 1fr;
  }
  .yv-trust-bar { padding: 24px 30px; }
  .yv-section { padding: 60px 30px; }
  .yv-cta-banner { padding: 60px 30px; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .yv-hero { padding: 70px 20px 50px; }
  .yv-courses { grid-template-columns: 1fr; }
  .yv-testimonials { grid-template-columns: 1fr; }
  .yv-hero-btns { flex-direction: column; }
  .yv-btn-primary,
  .yv-btn-wa { width: 100%; justify-content: center; }
  .yv-trust-bar { padding: 20px; gap: 16px; }
  .yv-trust-item { width: 45%; }
  .yv-section { padding: 50px 20px; }
  .yv-cta-banner { padding: 60px 20px; }
}