/* Clean, self-contained CSS for JEDX10 test homepage */

:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-accent: #cbb26a;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  font-size: 1.15rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
h1 { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 700; color: var(--color-accent); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.8rem); margin-bottom: 1rem; }
h4 { color: var(--color-accent); font-size: 1.2rem; margin-bottom: 0.5rem; }
p { max-width: 75ch; margin-left: auto; margin-right: auto; font-size: clamp(1rem, 2.5vw, 1.25rem); }
.text-center { text-align: center; }
/* --- HEADER LAYOUT --- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-link {
  flex: 0 0 auto;
}
.logo-image {
  display: block;
  height: auto;
}
.main-nav {
  flex: 1 1 auto;
}
.header-button {
  margin-left: 2rem;
}
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  color: #000;
}
.mobile-nav {
  display: none;
}
/* --- DESKTOP NAV STYLES --- */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.main-nav a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 36px;
  text-transform: none;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-text);
}
/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem 0.5rem 1rem;
    gap: 0;
    justify-content: flex-start;
    background: var(--color-bg);
  }
  .logo-link {
    margin: 0 auto 0.5rem auto;
    display: block;
  }
  .hamburger-menu:not(.mobile-close) {
    display: block;
    margin: 0 auto 0.5rem auto;
    position: static;
    z-index: 120;
    color: var(--color-accent);
    transition: color 0.2s;
  }
  .hamburger-menu.mobile-close {
    display: block;
    margin: 1.5rem auto 1rem auto;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 210;
    font-size: 2rem;
    transition: color 0.2s;
  }
  .hamburger-menu.mobile-close:hover,
  .hamburger-menu.mobile-close:focus {
    color: #ad9754;
  }
  .main-nav,
  .header-button {
    display: none !important;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-bottom: 1px solid #222;
    z-index: 200;
    animation: dropdownIn 0.25s ease;
  }
  .mobile-nav.open {
    display: block;
  }
  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 1.5rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .mobile-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus {
    background: #222;
  }
  .hamburger-menu.hide-when-open {
    display: none !important;
  }
}
@keyframes dropdownIn {
  from { transform: translateY(-16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.button { display: inline-block; padding: 12px 28px; text-align: center; font-weight: 700; font-size: 16px; letter-spacing: 0.1em; text-decoration: none; }
.button.primary-button { background-color: transparent; border: 1px solid var(--color-accent); color: var(--color-accent); }
.button.large-button { font-size: 20px; padding: 15px 35px; }
.button.secondary-button { background-color: var(--color-accent); color: var(--color-bg); border: 1px solid var(--color-accent); transition: all 0.2s ease-in-out; }
.button.secondary-button:hover { background-color: #ad9754; border-color: #ad9754; }
section { max-width: 980px; margin: 0 auto; padding: 60px 20px; }
.hero-section { padding-top: 50px; padding-bottom: 50px; }
.hero-section .subtitle { font-size: 1.5rem; }
.full-width-banner { margin-top: 30px; width: 100%; height: auto; aspect-ratio: 1200 / 444; }
.info-section { display: flex; gap: 40px; align-items: center; }
.info-text, .info-image { flex: 1; }
.info-text p { margin-left: 0; margin-right: 0; }
.lead-magnet-section { padding: 50px 20px; }
.lead-magnet-section h2 { color: var(--color-bg); }
.lead-magnet-section p { max-width: 600px; margin: 10px auto 20px; }
.lead-magnet-section .button { background-color: #000; color: #fff; border: 2px solid #000; }
.lead-magnet-section .button:hover { background-color: transparent; color: var(--color-bg); }
.why-choose-section { background-color: #070808; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 2.5rem; }
.benefit-item h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.benefit-item p { font-size: 1rem; color: #ccc; max-width: 100%; margin: 0; }
.meet-coach-section .coach-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: start; }
.coach-text h2 { margin-top: 0; text-align: left; font-size: 2rem; }
.coach-text p { margin: 0 0 1.75em 0; text-align: left; max-width: none; font-size: 1rem; font-weight: 400; line-height: 1.8; }
.qualifications { margin-top: 2rem; }
.qualifications h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-accent); }
.qualifications ul { list-style: disc; padding-left: 20px; margin: 0; font-size: 0.9rem; line-height: 1.6; color: #ccc; }
.qualifications li { margin-bottom: 0.75rem; padding-left: 5px; }
.testimonials-section { background-color: #111; }
.rating-stars { color: var(--color-accent); font-size: 2rem; letter-spacing: 5px; margin-bottom: 2rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 2rem; }
.testimonial { font-style: italic; color: #ccc; }
.cta-section { padding: 80px 20px; }
.site-footer { padding-top: 50px; padding-bottom: 30px; background-color: #070808; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; max-width: 980px; margin: 0 auto; padding: 0 20px; }
.footer-column h3 { font-size: 18px; font-weight: 700; color: var(--color-accent); margin-bottom: 15px; }
.footer-column p, .footer-column a { font-size: 16px; color: #ccc; line-height: 1.6; }
.footer-column a:hover { color: var(--color-accent); text-decoration: underline; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-logo { width: 149px; height: auto; margin-bottom: 15px; }
.social-links { display: flex; gap: 15px; }
.social-icon svg { width: 39px; height: 39px; fill: #ccc; transition: fill 0.2s ease-in-out; }
.social-icon:hover svg { fill: var(--color-accent); }
.footer-bottom { text-align: center; font-size: 14px; margin-top: 50px; padding-top: 20px; border-top: 1px solid #222; }
.footer-bottom p { margin: 0; color: #888; }
@media (max-width: 768px) {
  h2 { font-size: 1.8rem; }
  p { font-size: 1rem; }
  .site-header { flex-direction: column; text-align: center; padding: 20px; }
  .main-nav ul { flex-direction: column; margin-top: 20px; gap: 15px; }
  .header-button { margin-top: 20px; }
  .info-section { flex-direction: column-reverse; }
  .meet-coach-section .coach-grid { grid-template-columns: 1fr; }
  .meet-coach-section .coach-image { order: -1; margin-bottom: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
} 
/* --- DESKTOP HEADER CLEANUP --- */
.logo-link {
  background: none;
  border-radius: 0;
  padding: 0;
}
.main-nav {
  border: none;
}
.main-nav ul {
  border: none;
} 
/* --- PROGRAMS GRID & CARD LAYOUT --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}
.program-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.program-card:hover {
  box-shadow: 0 6px 32px rgba(203,178,106,0.18);
}
.program-card picture {
  margin-bottom: 1.5rem;
}
.program-card h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: center;
}
.program-card p {
  color: #eee;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.program-card .button {
  margin-top: auto;
  min-width: 160px;
} 