/* ============================================================
   VIRTUAL CLASSES — vc.css
   Namespace: vc-*
   ============================================================ */

/* ─── Shared section headings ─────────────────────────────── */
.vc-sh2 {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: var(--type-h1, clamp(32px, 4vw, 52px));
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark, #1A2420);
  margin-bottom: 14px;
}
.vc-sh2 em, .vc-sh2 i { font-style: italic; color: var(--teal, #31B898); }
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-caption, 12px); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal, #31B898); margin-bottom: 14px;
}
.vc-eyebrow-line { width: 26px; height: 1.5px; background: var(--teal, #31B898); opacity: 0.6; flex-shrink: 0; }
.vc-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .vc-wrap { padding: 0 20px; } }

/* ─── Breadcrumb ──────────────────────────────────────────── */
.vc-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-size: var(--type-caption, 12px); font-weight: 400; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
}
.vc-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.vc-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.vc-bc-sep { font-size: 14px; }


/* ============================================================
   1. HERO
   ============================================================ */
.vc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vc-hero-img {
  position: absolute; inset: 0;
}
.vc-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.vc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,36,32,0.82) 0%, rgba(26,36,32,0.6) 50%, rgba(26,36,32,0.4) 100%);
}
.vc-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px 96px;
}
.vc-hero-h1 {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1.06;
  color: #fff; margin-bottom: 20px;
}
.vc-hero-h1 em { font-style: italic; color: var(--teal-light, #5EC9AE); }
.vc-hero-sub {
  font-size: var(--type-body-lg, 18px); font-weight: 300;
  line-height: 1.75; color: #fff;
  max-width: 560px; margin-bottom: 36px;
}
.vc-hero-btns { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* Buttons */
.vc-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal, #31B898); color: #fff;
  padding: 15px 34px; border-radius: 100px;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-small, 14px); font-weight: 500;
  letter-spacing: 0.03em; white-space: nowrap;
  box-shadow: 0 6px 22px rgba(49,184,152,0.35);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.vc-btn-primary:hover { background: var(--teal-dim, #28967C); transform: translateY(-2px); }
.vc-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9);
  padding: 14px 30px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-small, 14px); font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none; white-space: nowrap;
}
.vc-btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }


/* ============================================================
   2. VALUE PROPS — 2x3 grid
   ============================================================ */
.vc-value-section { padding: 88px 0; background: var(--cream, #FAF6EF); }
.vc-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.vc-value-card {
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  cursor: default;
}
.vc-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,36,32,0.12);
  z-index: 1;
}
.vc-value-dark {
  background: var(--forest, #1C3832);
  color: #fff;
}
.vc-value-dark h3 { color: #fff; }
.vc-value-card.vc-value-dark p { color: rgba(255,255,255,0.8); }
.vc-value-dark .vc-value-icon { color: var(--teal-light, #5EC9AE); }
.vc-value-light {
  background: rgba(49,184,152,0.08);
  color: var(--text-dark, #1A2420);
}
.vc-value-light .vc-value-icon { color: var(--teal, #31B898); }
.vc-value-icon { margin-bottom: 20px; transition: transform 0.3s ease; }
.vc-value-card:hover .vc-value-icon { transform: scale(1.15); }
.vc-value-card h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 22px; font-weight: 500;
  margin-bottom: 12px; line-height: 1.25;
}
.vc-value-card p {
  font-size: var(--type-small, 14px); font-weight: 400;
  line-height: 1.65; color: var(--text-medium, #3A4D47);
}
@media (max-width: 900px) {
  .vc-value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vc-value-grid { grid-template-columns: 1fr; }
  .vc-value-card { padding: 36px 28px; }
}


/* ============================================================
   3. NEXT EVENT — 4-column info row
   ============================================================ */
.vc-next-event {
  padding: 72px 0;
  background: var(--card-bg, #FDFAF7);
}
.vc-next-title {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-caption, 12px); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted, #7A9490);
  text-align: center; margin-bottom: 40px;
}
.vc-next-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.vc-next-col {
  padding: 24px 20px;
  border-right: 1px solid var(--sand-deep, #E8DDD4);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
  border-radius: 12px;
}
.vc-next-col:hover {
  transform: translateY(-4px);
  background: rgba(49,184,152,0.06);
}
.vc-next-col:hover .vc-next-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(49,184,152,0.25);
}
.vc-next-col:last-child { border-right: none; }
.vc-next-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal, #31B898);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vc-next-label {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dark, #1A2420);
  margin-bottom: 6px;
}
.vc-next-val {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-small, 14px); font-weight: 400;
  color: var(--text-medium, #3A4D47);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .vc-next-grid { grid-template-columns: repeat(2, 1fr); }
  .vc-next-col { border-right: none; border-bottom: 1px solid var(--sand-deep, #E8DDD4); padding: 28px 16px; }
  .vc-next-col:nth-child(odd) { border-right: 1px solid var(--sand-deep, #E8DDD4); }
  .vc-next-col:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .vc-next-grid { grid-template-columns: 1fr; }
  .vc-next-col { border-right: none !important; }
  .vc-next-col:last-child { border-bottom: none; }
}


/* ============================================================
   4. IMAGE BANNER — full-width placeholder
   ============================================================ */
.vc-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin: 0; padding: 0;
  line-height: 0;
}
.vc-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.vc-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,32,0.15) 0%, rgba(26,36,32,0.05) 100%);
}
@media (max-width: 768px) {
  .vc-banner { height: 240px; }
}


/* ============================================================
   5. CLASS DETAIL — month's class info
   ============================================================ */
.vc-class-detail {
  padding: 88px 0;
  background: var(--cream, #FAF6EF);
}
.vc-detail-header { margin-bottom: 48px; }
.vc-detail-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: start;
}
.vc-detail-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26,36,32,0.10);
}
.vc-detail-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--forest, #1C3832) 0%, var(--teal, #31B898) 100%);
  opacity: 0.15;
}
.vc-detail-overview {
  font-size: 17px; font-weight: 400;
  line-height: 1.75; color: var(--text-medium, #3A4D47);
  margin-bottom: 32px;
}
.vc-detail-overview p {
  margin: 0 0 1.2em;
}
.vc-detail-overview p:last-child { margin-bottom: 0; }
.vc-detail-overview ul {
  list-style: none; padding: 0; margin: 0 0 1.2em;
}
.vc-detail-overview ul li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
}
.vc-detail-overview ul li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 10px; height: 1px;
  background: var(--teal, #31b898); opacity: 0.6;
}
.vc-detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.vc-focus-label {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-small, 14px); font-weight: 600;
  color: var(--teal, #31B898);
  margin-bottom: 12px;
}
.vc-focus-list {
  list-style: none; padding: 0; margin: 0;
}
.vc-focus-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--type-small, 14px); font-weight: 400;
  color: var(--text-medium, #3A4D47);
  line-height: 1.7; margin-bottom: 6px;
}
.vc-focus-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal, #31B898);
}
.vc-detail-meta { margin-bottom: 28px; }
.vc-meta-row {
  font-size: var(--type-small, 14px);
  color: var(--text-medium, #3A4D47);
  line-height: 1.7; margin-bottom: 8px;
}
.vc-meta-row strong {
  font-weight: 600; color: var(--text-dark, #1A2420);
  margin-right: 6px;
}
.vc-detail-attend h4 {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: var(--type-small, 14px); font-weight: 600;
  color: var(--text-dark, #1A2420);
  margin-bottom: 12px;
}
.vc-detail-attend ul {
  list-style: none; padding: 0; margin: 0;
}
.vc-detail-attend li {
  position: relative;
  padding-left: 20px;
  font-size: var(--type-small, 14px); font-weight: 400;
  color: var(--text-medium, #3A4D47);
  line-height: 1.7; margin-bottom: 6px;
}
.vc-detail-attend li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--teal, #31B898);
  font-weight: 600;
}
@media (max-width: 900px) {
  .vc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .vc-detail-img { max-width: 400px; }
}
@media (max-width: 600px) {
  .vc-detail-cols { grid-template-columns: 1fr; gap: 24px; }
}


/* ============================================================
   6. REGISTRATION CTA
   ============================================================ */
.vc-register-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--forest, #1C3832) url('https://pub-c5637df01e5a477babb3913b47809993.r2.dev/Ambassadors/joinus.png') center / cover no-repeat;
}
.vc-register-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,36,32,0.7);
  pointer-events: none;
}
.vc-register-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .vc-hero-content { padding: 60px 20px 72px; }
  .vc-hero-h1 { font-size: clamp(28px, 7vw, 44px); }
  .vc-hero-btns { flex-direction: column; align-items: flex-start; }
}
