/* ---------------------------------------------------------
   CSS RESET & NORMALIZE (MOBILE FIRST | FLEXBOX ONLY)
------------------------------------------------------------ */
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,
main, 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;
  font-size: 16px;
}
body {
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  background: #F8F8F2;
  color: #232323;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #1A2233;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EAC435;
  outline: none;
  text-decoration: underline;
}
button, .cta-btn {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background-color: #f3f2ea;
  color: #1A2233;
  font-weight: bold;
}
tr {
  border-bottom: 1px solid #e2e2e2;
}
/* ------------------------------------------------
    BRAND COLOR & TYPOGRAPHY VARIABLES
------------------------------------------------- */
:root {
  --brand-primary: #1A2233;
  --brand-secondary: #EAC435;
  --brand-accent: #F8F8F2;
  --text-dark: #232323;
  --text-light: #F8F8F2;
  --muted-bg: #F7F6EE;
  --muted-text: #7c7c7c;
  --highlight: #e9dfba;
  --shadow: rgba(26,34,51,0.06);
  --radius: 12px;
}

/* ------------------------------------------------
    LAYOUT UTILITIES
------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--muted-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
}

/* Flexcard utilities */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 1px solid #ece9df;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(26,34,51,0.07);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid #ece9df;
  max-width: 400px;
  min-width: 240px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 20px 0 24px 0;
}
.service-list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 28px 22px 24px 22px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  border: 1px solid #ece9df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.15s, box-shadow 0.18s;
}
.service-list > div:hover, .service-list > div:focus-within {
  box-shadow: 0 4px 16px rgba(26,34,51,0.13);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}
.price {
  font-size: 1.1rem;
  font-family: "Georgia", serif;
  color: var(--brand-secondary);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

.coach-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 12px 0 32px 0;
}
.coach-list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px 20px 22px 20px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1px solid #ece9df;
}

.enroll-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0 10px 0;
}

/* ------------------------------------------------
    BRAND TYPOGRAPHY (HEADINGS)
------------------------------------------------- */
h1, h2, h3, h4 {  
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;  
  margin-top: 10px;
  font-weight: 500;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, li, .footer-contact, .contact-details, .contact-info {
  font-family: 'Georgia', Times, 'Times New Roman', serif;
  color: #262626;
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 600;
}
.text-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

/* ------------------------------------------------
    HEADER & NAVIGATION
------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 20px;
  gap: 24px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Georgia', serif;
  font-size: 1.07rem;
  color: var(--brand-primary);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cta-btn {
  background: var(--brand-secondary);
  color: #1A2233;
  font-size: 1.11rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(26,34,51,0.08);
  transition: background 0.19s, transform 0.13s;
  display: inline-block;
  margin-left: 14px;
  border: 1px solid #f1eecd;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFC72C;
  color: var(--brand-primary);
  transform: translateY(-1px) scale(1.03);
}

/* ------------------------------------------------
    BURGER MENU (MOBILE NAV)
------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand-primary);
  background: transparent;
  border: none;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 120;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ece9df;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,34,51,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.87,-.41,.19,1.2);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 16px 22px 10px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Georgia', Times, serif;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  padding: 10px 24px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

@media (min-width: 1100px) {
  .container {
    padding: 0;
  }
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
/* Hide nav on mobile */
@media (max-width: 899px) {
  header nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ------------------------------------------------
    MAIN & SECTION STYLING
------------------------------------------------- */
main {
  margin-top: 16px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
section {
  margin-bottom: 60px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* ------------------------------------------------
    LISTS, ICONS, FEATURES
------------------------------------------------- */
ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.7;
}
ul li img {
  width: 38px;
  height: 38px;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
ul > li > strong {
  font-size: 1.05rem;
  color: var(--brand-primary);
  margin-right: 7px;
}

.special-events {
  background: #fff9e6;
  border-radius: var(--radius);
  padding: 18px 20px 18px 22px;
  box-shadow: 0 2px 8px var(--shadow);
  margin: 32px 0 0 0;
}
.special-events h2 {
  color: var(--brand-primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* ------------------------------------------------
    TABLES (SCHEDULE PAGE)
------------------------------------------------- */
table {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
  font-family: Georgia, serif;
}
th, td {
  border: none;
  vertical-align: middle;
  font-size: 1rem;
}
tr {
  border-bottom: 1px solid #edeadd;
}
thead tr {
  background: #f6f1e6;
}

/* ------------------------------------------------
    FOOTER
------------------------------------------------- */
footer {
  background: #1A2233;
  color: #fff;
  padding: 34px 0 28px 0;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer a img {
  width: 42px;
  height: 42px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
footer nav a {
  color: #fff;
  font-family: 'Georgia', Times, serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  color: #ece9df;
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ------------------------------------------------
    TESTIMONIALS
------------------------------------------------- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 16px rgba(26,34,51,0.13);
  color: #232323;
  border-radius: var(--radius);
  max-width: 360px;
  min-width: 220px;
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px #eac43533;
  transform: translateY(-3px) scale(1.012);
  border-color: var(--brand-secondary);
}
.testimonial-card p {
  font-family: 'Georgia', Times, serif;
  font-size: 1.08rem;
  color: #232323;
}
.testimonial-footer {
  color: var(--brand-secondary);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin-top: 8px;
  font-weight: 600;
}

/* ------------------------------------------------
    RESPONSIVE
------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .service-list, .coach-list, .testimonials, .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  main {
    gap: 32px;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .section, .text-section {
    padding: 18px 7px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .service-list > div, .coach-list > div, .testimonial-card, .card {
    padding: 16px 8px;
  }
  .enroll-cta {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .service-list, .coach-list, .testimonials, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonials {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ------------------------------------------------
    BUTTONS, FORMS, MICRO-INTERACTIONS
------------------------------------------------- */
button, .cta-btn {
  transition: background 0.19s, color 0.19s, box-shadow 0.13s, transform 0.14s;
}
button:focus:not(:active), .cta-btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

/* ------------------------------------------------
    COOKIE CONSENT BANNER
------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe7;
  border-top: 1px solid #e8e0c7;
  box-shadow: 0 -2px 12px #bbb2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 30px;
  z-index: 18000;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #1A2233;
  animation: cookieBannerSlide 0.4s cubic-bezier(.85,-0.13,.34,1.2);
}
@keyframes cookieBannerSlide {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 7px 19px;
  border-radius: 18px;
  border: 1px solid #f1eecd;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(26,34,51,0.06);
  margin-left: 0;
  margin-right: 0;
  transition: background 0.14s, color .14s, box-shadow .13s;
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid #d0c392;
}
.cookie-banner button.reject {
  background: #edeadd;
  color: #1A2233;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #FFC72C;
  color: #1A2233;
  outline: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
    gap: 12px;
    font-size: 0.99rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,34,51,0.7);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px #1a22333b;
  padding: 32px 30px 27px 30px;
  max-width: 96vw;
  width: 390px;
  font-family: Georgia, serif;
  color: #232323;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.21s cubic-bezier(.85,-0.13,.34,1.2);
}
@keyframes fadeInModal {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin: 0 0 8px 0;
  color: var(--brand-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: #f8f6e0;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 1.02rem;
  color: #232323;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.cookie-category.essential {
  opacity: 0.75;
}
.cookie-category .desc {
  font-size: .97rem;
  color: #7c7c7c;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 8px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--brand-secondary);
  color: #1A2233;
  border-radius: 15px;
  font-size: 1.01rem;
  font-family: 'Georgia', serif;
  border: 1px solid #f1eecd;
  padding: 6px 17px;
  margin: 0;
}
.cookie-modal .cookie-modal-actions button:focus, 
.cookie-modal .cookie-modal-actions button:hover {
  background: #FFC72C;
}
.cookie-modal .cookie-modal-actions .close {
  background: #f7f4db;
  color: #1A2233;
  border: 1px solid #ece9c6;
}

/* -------------------------------------------
    MISC/UTILITY CLASSES
---------------------------------------------- */
.mt-0 {margin-top: 0!important;}
.mb-0 {margin-bottom: 0!important;}
.mt-24 {margin-top: 24px!important;}
.mb-24 {margin-bottom: 24px!important;}
.centered {text-align: center!important;}
.fw-bold {font-weight: bold;}

/* -------------------------------------------
    ACCESSIBILITY FOCUS
---------------------------------------------- */
:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* -------------------------------------------
    Z-INDEX UTILITY
---------------------------------------------- */
header { z-index: 110; }
.mobile-menu { z-index: 1200; }
footer { z-index: 100; }

/* -------------------------------------------
    END CSS
---------------------------------------------- */
