/* ================================================
   ORATOR'S CLUB - CSS STYLESHEET
   60-30-10 Color Rule (matches club brand)
   60% Primary (Neutral), 30% Secondary (Navy), 10% Accent (Gold)
   ================================================ */

:root {
  /* 60% - Primary/Neutral */
  --primary-light: #FAFBFC;
  --primary-neutral: #F5F7FA;
  --primary-dark: #E8EDF2;

  /* 30% - Secondary (Brand Navy) */
  --secondary-main: #0f3460;
  --secondary-light: #1a5a8c;
  --secondary-dark: #0a1f3a;

  /* 10% - Accent (Gold) */
  --accent-main: #FFC13D;
  --accent-light: #FFD566;
  --accent-dark: #E6B030;

  /* Supporting */
  --success: #2D6A4F;
  --success-light: #D8F0E8;
  --error: #E24B4A;
  --text-dark: #1A1209;
  --text-light: #4A3F2F;

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============= RESET & BASE ============= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-secondary);
  background: var(--primary-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--secondary-main);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ============= NAVIGATION ============= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 247, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 52, 96, 0.1);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary-main);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent-main); }

.nav-links { display: flex; gap: 2rem; flex: 1; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-main);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
  background: var(--accent-main);
  color: var(--text-dark);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 61, 0.35);
}

.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 25px; height: 3px;
  background: var(--secondary-main);
  border-radius: 2px;
}

/* ============= HERO ============= */
.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-neutral) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 2;
}

.hero-left > * { animation: fadeUp 0.6s ease-out both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 193, 61, 0.15);
  color: var(--secondary-main);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-main);
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--accent-dark); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }

.btn-primary {
  background: var(--accent-main);
  color: var(--text-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 193, 61, 0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 61, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--secondary-main);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid var(--secondary-main);
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--secondary-main);
  color: white;
  transform: translateY(-3px);
}

.hero-urgency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 1.6rem;
}

.hero-stats { display: flex; gap: 3rem; }
.stat-num {
  font-family: var(--font-primary);
  font-size: 2rem; font-weight: 700;
  color: var(--accent-dark);
}
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 0.3rem; }

/* Hero visual — brand emblem treatment for the logo mark */
.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.mic-emblem {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}

/* rotating dashed ring — the "orbit" around the mark */
.emblem-ring-dashed {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 193, 61, 0.55);
  animation: spin 40s linear infinite;
}
.emblem-ring-dashed::before,
.emblem-ring-dashed::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-main);
}
.emblem-ring-dashed::before { top: -5px; left: calc(50% - 5px); }
.emblem-ring-dashed::after { bottom: -5px; left: calc(50% - 5px); background: var(--secondary-main); }

/* solid gradient ring */
.emblem-ring-solid {
  position: absolute; inset: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-main), var(--accent-light) 45%, var(--secondary-main));
  padding: 6px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* the mark itself, clipped into a circular medallion */
.emblem-core {
  position: relative; z-index: 2;
  width: calc(100% - 56px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--secondary-dark);
  box-shadow: 0 20px 50px rgba(15, 52, 96, 0.3), inset 0 0 0 4px var(--primary-light);
  animation: float 6s ease-in-out infinite;
}
.emblem-core img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.emblem-tag {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  background: var(--primary-light);
  color: var(--secondary-main);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--accent-main);
  box-shadow: 0 6px 16px rgba(15, 52, 96, 0.15);
  white-space: nowrap;
}

.hero-float-badge {
  background: var(--primary-neutral);
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 12px 30px rgba(15, 52, 96, 0.12);
  display: flex; align-items: center; gap: 0.7rem;
  max-width: 320px;
  animation: fadeUp 0.8s ease-out 0.8s both;
}
.hfb-stars {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
  color: var(--success);
  background: var(--success-light);
  padding: 0.25rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
}
.hfb-text { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .emblem-ring-dashed, .emblem-core { animation: none; }
}

/* ============= HOW IT WORKS — WEEKLY CYCLE ============= */
.how-bg { background: var(--primary-neutral); }

.cycle-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.cycle-step {
  background: var(--primary-light);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(15, 52, 96, 0.08);
  border-top: 4px solid var(--accent-main);
  transition: all 0.3s;
}
.cycle-step:nth-child(3) { border-top-color: var(--secondary-light); }
.cycle-step:nth-child(7) { border-top-color: var(--secondary-main); }
.cycle-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 52, 96, 0.1);
}
.cycle-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.cycle-day {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}
.cycle-step .step-title { font-size: 1.05rem; font-weight: 700; color: var(--secondary-main); margin-bottom: 0.5rem; }
.cycle-step .step-desc { font-size: 0.88rem; color: var(--text-light); }

.cycle-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
  color: var(--accent-main);
}

/* ============= SESSIONS ============= */
.session-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}

.lineup {
  background: var(--primary-neutral);
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(15, 52, 96, 0.08);
}
.lineup-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.lineup-mic {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  border: 2px solid var(--accent-main);
  border-radius: 50%;
  font-size: 1.2rem;
}
.lineup-item.judges .lineup-mic {
  border-color: var(--secondary-main);
  background: var(--secondary-main);
}
.lineup-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--secondary-main); margin-bottom: 0.35rem; }
.lineup-content p { font-size: 0.92rem; color: var(--text-light); }
.lineup-content strong { color: var(--accent-dark); }
.lineup-divider {
  width: 2px; height: 1.6rem;
  background: repeating-linear-gradient(180deg, var(--accent-main) 0 4px, transparent 4px 8px);
  margin: 0.4rem 0 0.4rem 21px;
}

.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-content: start; }
.perk { display: flex; gap: 1rem; }
.perk-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 193, 61, 0.15);
  border-radius: 12px;
  font-size: 1.3rem;
}
.perk h4 { font-size: 1rem; font-weight: 700; color: var(--secondary-main); margin-bottom: 0.3rem; }
.perk p { font-size: 0.88rem; color: var(--text-light); }

/* ============= FAQ ============= */
.faq-section { background: var(--primary-neutral); }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(15, 52, 96, 0.1); padding: 1.5rem 0; cursor: pointer; }
.faq-q {
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; color: var(--accent-main);
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-q::after { content: '−'; transform: rotate(180deg); }
.faq-a {
  font-size: 0.95rem; color: var(--text-light); margin-top: 1rem;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; opacity: 1; }

/* ============= CTA ============= */
.cta-section { background: var(--accent-main); text-align: center; padding: 5rem 2rem; }
.cta-section h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; color: var(--text-dark);
  margin-bottom: 1rem;
}
.cta-section p { color: var(--text-dark); opacity: 0.9; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.btn-dark {
  background: var(--text-dark); color: var(--accent-main);
  padding: 1rem 2.5rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  display: inline-block; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.btn-white-outline {
  background: transparent; color: var(--text-dark);
  padding: 1rem 2.5rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--text-dark);
  display: inline-block; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn-white-outline:hover { background: var(--text-dark); color: var(--accent-main); transform: translateY(-3px); }

/* ============= FOOTER ============= */
footer { background: var(--secondary-dark); color: rgba(255,255,255,0.8); padding: 3rem 2rem 1.5rem; }
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer-section h3 { color: white; font-size: 1.1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-section p, .footer-section ul { font-size: 0.95rem; line-height: 1.8; }
.footer-section a { color: var(--accent-main); transition: color 0.3s; }
.footer-section a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 193, 61, 0.2);
  text-align: center; font-size: 0.9rem;
}

/* ============= STICKY WHATSAPP ============= */
.sticky-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--success); color: white;
  padding: 0.9rem 1.3rem; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
  transition: all 0.3s;
  animation: fadeUp 0.6s ease-out 1.2s both;
}
.sticky-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 30px rgba(45, 106, 79, 0.45); }

@media (max-width: 480px) {
  .sticky-whatsapp span { display: none; }
  .sticky-whatsapp { padding: 0.9rem; font-size: 1.2rem; }
}

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============= RESPONSIVE ============= */
@media (max-width: 900px) {
  .cycle-track { grid-template-columns: 1fr 1fr; }
  .cycle-arrow { display: none; }
  .session-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 1.6rem; }

  .perks-grid { grid-template-columns: 1fr; }
  .lineup { padding: 1.6rem; }

  section { padding: 3.5rem 1.2rem; }

  .cta-btns { flex-direction: column; }
  .btn-dark, .btn-white-outline { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .nav-container { gap: 1rem; }
  .nav-logo { font-size: 1.2rem; }
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .cycle-track { grid-template-columns: 1fr; }
  .hero-sub { font-size: 1rem; }
}
