/* -------------------
   CSS RESET & NORMALIZE
-------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #F6F6F6;
  color: #1D2936;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #1D2936;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDB813;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* Typography hierarchy */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1.2;
  color: #1D2936;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #1D2936;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #1D2936;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1D2936;
}
p, li {
  font-size: 1rem;
  margin-bottom: 8px;
}

blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  background: #EFF2F7;
  color: #1D2936;
  padding: 16px 24px;
  border-left: 4px solid #FDB813;
  margin-bottom: 12px;
  border-radius: 8px;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------
   HEADER/NAVIGATION
-------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(29, 41, 54, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  gap: 24px;
  padding: 8px 0;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 24px;
  margin: 0;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1D2936;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #EFF2F7;
  color: #1D2936;
}
.main-nav .cta.primary {
  margin-left: 12px;
  padding: 10px 24px;
}

/* Hide mobile menu toggle by default (show on mobile only) */
.mobile-menu-toggle {
  display: none;
  background: #FDB813;
  border: none;
  border-radius: 6px;
  color: #1D2936;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD780;
}

/* -------------------
     MOBILE NAVIGATION
-------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1D2936;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.55,.06,.68,.19);
  box-shadow: -8px 0 32px rgba(20,30,40,0.16);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuSlideIn 0.35s cubic-bezier(.23,1.14,.51,.98);
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FDB813;
  font-size: 2.25rem;
  cursor: pointer;
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
  background: rgba(253,184,19,0.18);
  border-radius: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 14px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDB813;
  color: #1D2936;
}

/* Hide main-nav ul and cta on mobile, show hamburger */
@media (max-width: 992px) {
  .main-nav ul, .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------
     HERO SECTION
-------------------- */
.hero {
  background: linear-gradient(120deg, #EDF1F7 70%, #fff 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
}
.hero .cta {
  margin-top: 18px;
}

/* -------------------
   BUTTONS/CTA
-------------------- */
.cta, button.cta, .main-nav .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 28px;
  border-radius: 7px;
  border: none;
  background: #1D2936;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(29, 41, 54, 0.11);
  transition: background 0.21s, color 0.2s, box-shadow 0.19s;
  margin: 6px 0 0 0;
}
.cta.primary {
  background: #FDB813;
  color: #1D2936;
  box-shadow: 0 2px 12px rgba(253,184,19,0.12);
}
.cta:hover, .cta:focus, .main-nav .cta:focus {
  background: #144055;
  color: #fff;
  box-shadow: 0 3px 16px rgba(29,41,54,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD780;
  color: #1D2936;
}

button, input[type=button], input[type=submit], .cta {
  outline: none;
}

/* -------------------
   FEATURES / CARDS SECTIONS
-------------------- */
.features-grid, .service-cards, .team-list, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid {
  gap: 28px;
  margin-top: 18px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(29, 41, 54, 0.09);
  flex: 1 1 235px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature img {
  height: 42px;
  width: 42px;
}
.feature:hover {
  box-shadow: 0 8px 34px rgba(29,41,54,0.18);
  transform: translateY(-4px) scale(1.02);
}

.service-cards {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 12px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(29, 41, 54, 0.08);
  flex: 1 1 265px;
  min-width: 230px;
  max-width: 370px;
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(29,41,54,0.15);
  transform: translateY(-5px) scale(1.015);
}
.price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #FDB813;
  margin-top: 8px;
}

/* Team listing */
.team-list {
  gap: 28px;
  flex-wrap: wrap;
}
.coach-profile {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(29,41,54,0.09);
  flex: 1 1 245px;
  min-width: 216px;
  max-width: 340px;
  padding: 22px 18px 19px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.coach-profile h3 {
  color: #1D2936;
}
.qualifications {
  font-size: 0.97rem;
  padding-left: 22px;
}

/* -------------------
    TESTIMONIALS
-------------------- */
.testimonial-slider, .testimonial-list {
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #EFF2F7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(29,41,54,0.08);
  color: #1D2936;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 250px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 4px solid #FDB813;
  color: #1D2936;
  padding: 0 0 0 16px;
  margin: 0;
  font-size: 1.03rem;
}
.testimonial-card strong {
  color: #1D2936;
}
.star-rating {
  font-size: 1.09rem;
  color: #1D2936;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 12px;
}

/* -----------------
   CONTACT INFO
------------------ */
.contact-info {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(29,41,54,0.08);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 8px;
}
.contact-info a {
  color: #1D2936;
  text-decoration: underline;
  transition: color 0.16s;
}
.contact-info a:hover {
  color: #FDB813;
}

/* -------------------
   FOOTER
-------------------- */
footer {
  background: #1D2936;
  color: #fff;
  padding: 35px 0 8px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  padding: 8px 6px;
  border-radius: 5px;
  transition: background 0.2s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FDB813;
  color: #1D2936;
}
.footer-legal {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.95rem;
  color: #AEB6BF;
  padding-bottom: 12px;
  margin-top: 6px;
}

/* -------------------
   THANK YOU SECTION
-------------------- */
section.thankyou {
  margin-bottom: 0;
}

/* -------------------
   MANDATORY FLEXBOX CLASSES
-------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------
   COOKIE CONSENT BANNER
-------------------- */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D2936;
  color: #fff;
  padding: 26px 24px;
  z-index: 9000;
  box-shadow: 0 -2px 18px rgba(29,41,54,0.13);
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner__text {
  max-width: 560px;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  background: #FDB813;
  color: #1D2936;
  box-shadow: 0 1px 4px rgba(253,184,19,0.09);
  transition: background 0.2s, color 0.19s;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #FFD780;
}
.cookie-banner__btn.settings {
  background: #fff;
  color: #1D2936;
  border: 1px solid #FDB813;
  box-shadow: 0 2px 8px rgba(220,220,220,0.09);
}
.cookie-banner__btn.reject {
  background: #EFF2F7;
  color: #1D2936;
  border: 1px solid #BFC9D1;
}
.cookie-banner__btn.reject:hover {
  background: #e1e8f0;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(36,44,64,0.36);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #1D2936;
  border-radius: 14px;
  box-shadow: 0 8px 42px rgba(29,41,54,0.21);
  padding: 44px 36px 28px 36px;
  max-width: 420px;
  width: 97vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.92rem;
  color: #1D2936;
  cursor: pointer;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 20px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-modal .category-title {
  font-weight: 600;
  font-size: 1.01rem;
}
.cookie-modal .category-toggle {
  accent-color: #FDB813;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-modal .category-essential label {
  opacity: 0.56;
  pointer-events: none;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions .cookie-banner__btn {
  font-size: 1rem;
  min-width: 120px;
}

/* -------------------
   ANIMATIONS
-------------------- */
@media (prefers-reduced-motion: no-preference) {
  .cta, .main-nav .cta, .feature, .service-card {
    transition: box-shadow 0.18s, transform 0.16s;
  }
  .mobile-menu, .cookie-banner__btn, .cookie-banner {
    transition: all 0.28s cubic-bezier(.44,1.27,.39,1);
  }
  .cookie-modal {
    transition: box-shadow 0.23s;
  }
}

/* ------------------
   RESPONSIVE DESIGN
------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 992px) {
  .hero .content-wrapper, .text-section, .content-wrapper {
    max-width: 93vw;
  }
  .features-grid, .service-cards, .team-list, .testimonial-slider, .testimonial-list, .content-grid {
    gap: 18px;
  }
  .service-card, .feature, .coach-profile, .testimonial-card {
    max-width: 47vw;
    min-width: 210px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
    max-width: 100vw;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 28px 4px;
  }
  .hero {
    min-height: 160px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  h1, .hero h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.31rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .features-grid, .service-cards, .team-list, .testimonial-slider, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature, .service-card, .coach-profile, .testimonial-card {
    max-width: 97vw;
    min-width: 95vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .testimonial-card { gap: 12px; }
  .contact-info {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 7px;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 6px;
    padding-bottom: 8px;
    margin-top: 6px;
  }
  .mobile-menu {
    padding: 36px 10px 10px 10px;
  }
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 26px 7vw 21px 7vw;
    max-width: 94vw;
  }
  .cookie-banner {
    padding: 15px 7vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.99rem;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}

/* ------------------
  UTILS
------------------- */
.d-none, .hide { display: none !important; }

/* Utility margin classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-6 { margin-top: 6px !important; }
.mt-16 { margin-top: 16px !important; }

/* Accessibility focus for links & buttons */
a:focus-visible, .cta:focus-visible {
  outline: 2px solid #FDB813;
  outline-offset: 3px;
  background: #FFD780;
  color: #1D2936 !important;
}

/* Form fields and select (if included later) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #BFC9D1;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #fff;
  color: #1D2936;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FDB813;
  outline: none;
}


/* END of style.css */
