/* =======================================================================
   RESET & BASE STYLES
======================================================================= */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1.55;
  min-height: 100vh;
  background: #FFF8F4;
  color: #193346;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #AF4D4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #193346;
  text-decoration: underline;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  display: block;
}

/* =======================================================================
   BRANDING & SOFT PASTEL PALETTE
======================================================================= */
:root {
  --primary: #193346;
  --secondary: #FFE6C7;
  --accent: #D35E56;
  --accent-dark: #B22A20;
  --soft-pink: #FDEDEC;
  --soft-blue: #EFF2FD;
  --soft-lavender: #F6F3FB;
  --soft-green: #E8F7F1;
  --soft-yellow: #FFFBEB;
  --white: #fff;
  --grey: #F8F8F8;
  --card-bg: var(--white);
  --shadow: 0 4px 24px 0 rgba(219,183,172,0.14), 0 1.5px 7px 0 rgba(60,40,90,0.06);
  --radius: 18px;
}

/* =======================================================================
   TYPOGRAPHY
======================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #193346;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  margin-bottom: 12px;
  color: #274155;
}
strong {
  font-weight: 700;
  color: var(--accent-dark);
}
.section ul, .section ol, ul.course-list, ul.faq-list, ul.resource-list, ul.workshop-list {
  margin-bottom: 14px;
}
.section li {
  line-height: 1.6;
}

/* Typography Scale for CTA, hero, legal etc. */
.section h1, .content-wrapper > h1 {
  margin-bottom: 24px;
}
.section h2, .content-wrapper > h2 {
  margin-bottom: 18px;
}

/* =======================================================================
   LAYOUT PATTERNS & SPACING
======================================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
  padding: 28px 24px 22px 24px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(219,183,172,0.22), 0 2.5px 14px 0 rgba(60,40,90,0.11);
  background: var(--soft-pink);
}
.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;
  border-radius: 15px;
  background: var(--soft-lavender);
  box-shadow: 0 3px 12px 0 rgba(80,60,60,0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.17s, background 0.18s;
}
.testimonial-card p {
  color: #2F2836;
  font-size: 1.08rem;
}
.testimonial-card .testimonial-author {
  font-weight: 500;
  color: #6A457E;
  margin-top: 2px;
  font-size: 0.98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--soft-blue);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px 18px 18px 18px;
  min-width: 220px;
  margin-bottom: 22px;
  transition: background 0.22s, box-shadow 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  background: var(--soft-pink);
  box-shadow: 0 8px 34px 0 rgba(123,86,199,0.11);
}
.feature-item h3 {
  margin-bottom: 5px;
  color: #7E3862;
}

/* Specific grids/lists for homepage and courses */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  padding: 0;
}
.course-list li, .course-snapshot {
  background: var(--soft-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 295px;
  min-width: 220px;
  padding: 21px 18px 18px 18px;
  margin-bottom: 20px;
  transition: background 0.18s, box-shadow 0.16s;
}
.course-snapshot:hover, .course-list li:hover {
  background: var(--soft-pink);
}

.workshop-list, .resource-list, .faq-list, .coaching-features, .workshop-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: disc;
}
.workshop-list li, .resource-list li, .faq-list li, .coaching-features li, .workshop-features li {
  background: var(--soft-green);
  border-radius: 11px;
  margin-bottom: 18px;
  padding: 16px 15px 15px 22px;
  min-width: 180px;
  color: #2F3C4A;
  font-size: 1.01rem;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.coach-profile {
  background: var(--soft-blue);
  border-radius: 13px;
  box-shadow: var(--shadow);
  flex: 1 1 275px;
  min-width: 180px;
  padding: 18px 15px 16px 18px;
  margin-bottom: 20px;
}
.coach-profile .role {
  color: #B22A20;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}


/* =======================================================================
   HEADER & NAVIGATION
======================================================================= */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px 0 rgba(120,120,120,0.06);
  position: sticky;
  top: 0;
  z-index: 70;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 14px;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  color: #193346;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.008em;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover {
  background: var(--soft-yellow);
  color: var(--accent-dark);
}
.main-nav .btn-primary {
  margin-left: 12px;
}

/* =======================================================================
   BUTTONS & CTAs
======================================================================= */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 33px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(215,135,124,0.10);
  text-align: center;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.13s;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 26px 0 rgba(211,94,86,0.23);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(226,123,93,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* Text link as CTA */
.cta-link {
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: underline;
  letter-spacing: 0.02em;
}
.cta-link:hover {
  color: var(--primary);
}

/* =======================================================================
   FOOTER
======================================================================= */
footer {
  padding: 0;
  background: var(--primary);
  color: var(--secondary);
  font-size: 1.01rem;
}
.footer-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.footer-section > a img {
  height: 52px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 2px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 2px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: .99rem;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover {
  background: var(--soft-pink);
  color: var(--accent-dark);
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--soft-yellow);
  font-size: .98rem;
}
.footer-contact img {
  width: 18px;
  margin-right: 3px;
  opacity: 0.7;
}
.footer-tagline {
  color: #FDF6F2;
  font-size: 1.09rem;
  font-style: italic;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* =======================================================================
   MOBILE NAVIGATION (HAMBURGER MENU)
======================================================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #B22A20;
  font-size: 2.1rem;
  margin-left: 12px;
  cursor: pointer;
  z-index: 110;
  transition: color 0.14s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-dark);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,230,199, 0.97);
  z-index: 120;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.87,0,0.13,1.0);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent-dark);
  font-size: 2.3rem;
  padding: 18px 20px 6px 24px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 121;
  transition: color 0.13s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 40px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--soft-yellow);
  padding: 13px 22px;
  border-radius: 15px;
  margin: 0 0 2px 0;
  box-shadow: 0 1.5px 5px 0 rgba(233, 166, 130, 0.11);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover {
  color: var(--accent-dark);
  background: var(--soft-pink);
}

/* =======================================================================
   COOKIE CONSENT BANNER & MODAL
======================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #FFF5EC;
  box-shadow: 0 -3px 16px 0 rgba(170,146,99,0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 30px 18px 30px;
  font-size: 1rem;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  transition: transform 0.38s cubic-bezier(.43,1,.57,1),opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  margin: 0;
  margin-right: 5px;
  transition: background 0.17s, color 0.14s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent-dark);
}
.cookie-banner .reject {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--soft-yellow);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent-dark);
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 301;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,51,70,0.33);
  justify-content: center;
  align-items: center;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fffdfa;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(219,183,172,0.18);
  padding: 32px 30px 22px 30px;
  min-width: 320px;
  max-width: 96vw;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: revealScale 0.37s cubic-bezier(.36,1.03,.57,.96);
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 13px;
  background: none;
  border: none;
  color: #B22A20;
  font-size: 2.0rem;
  cursor: pointer;
  z-index: 303;
}
.cookie-modal .cookie-modal-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal .toggle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-dark);
}
.cookie-modal .cookie-toggle .always {
  color: #947090;
  font-size: .99rem;
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(0.85); }
  to {   opacity: 1; transform: scale(1);   }
}

/* =======================================================================
   SECTION & CARD DESIGN
======================================================================= */
section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
}
.section {
  border-radius: 23px;
  background: var(--soft-yellow);
  box-shadow: 0 2px 14px 0 rgba(190,152,138,0.11);
  margin-bottom: 60px;
  padding: 40px 20px;
  align-items: center;
}

/* Course, workshop, and resource cards inside flex containers */
.course-list li, .course-snapshot, .workshop-list li, .resource-list li, .faq-list li, .coaching-features li, .workshop-features li {
  /* Already styled above */
}


/* =======================================================================
   TESTIMONIALS
======================================================================= */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 330px;
  min-width: 240px;
  background: var(--soft-blue);
  color: #22233D;
  border: 2px solid #DED4F2;
  transition: box-shadow 0.15s, border-color 0.15s, background 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 7px 30px 0 rgba(162,101,210,0.17);
  background: var(--soft-pink);
}
.testimonial-card p {
  color: #2F2836;
  font-size: 1.13rem;
  line-height: 1.6;
}
.testimonial-card .testimonial-author {
  color: #7E3862;
  margin-left: 8px;
}

/* =======================================================================
   ABOUT & LEGAL
======================================================================= */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 21px;
  background: var(--soft-lavender);
  border-radius: 13px;
  padding: 22px 18px 12px 20px;
  box-shadow: 0 3px 11px 0 rgba(126,74,166,0.09);
}
.legal-section ul {
  margin-bottom: 10px;
  margin-top: 6px;
  color: #332A48;
}
.legal-section a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.legal-section a:hover {
  color: var(--primary);
}

/* Contact Details (contact, gdpr, legal pages) */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  color: #274155;
}
.contact-details img {
  width: 20px;
  opacity: 0.70;
  margin-right: 6px;
}

/* =======================================================================
   CTA/Thank-you Section
======================================================================= */
.next-steps {
  background: var(--soft-lavender);
  border-radius: 13px;
  padding: 17px 18px 12px 18px;
  margin: 18px 0 8px 0;
}
.next-steps h2 {
  color: var(--primary);
}

/* =======================================================================
   RESPONSIVE DESIGN (Mobile-First)
======================================================================= */
@media (max-width: 980px) {
  .container, .footer-section {
    padding-left: 9px;
    padding-right: 9px;
  }
  .main-nav, .footer-section {
    max-width: 100vw;
  }
}

@media (max-width: 900px) {
  .card-container, .content-grid, .testimonial-list, .feature-grid, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .course-list, .workshop-list, .resource-list, .testimonial-list, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-section {
    gap: 18px;
    padding: 28px 8px 26px 8px;
  }
}
@media (max-width: 520px) {
  .main-nav {
    padding: 9px 4px;
  }
  .container, .footer-section {
    padding-left: 2px;
    padding-right: 2px;
  }
  .mobile-nav {
    padding: 16px 6vw 0 7vw;
  }
  .section, section {
    padding: 15px 0;
    margin-bottom: 32px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
}

/* =======================================================================
   MICRO-INTERACTIONS & TRANSITIONS
======================================================================= */
.card, .feature-item, .testimonial-card, .course-list li, .course-snapshot {
  transition: box-shadow 0.16s, background 0.14s, border 0.14s;
}

.btn-primary, .btn-secondary {
  transition: background 0.23s, color 0.14s, box-shadow 0.17s, transform 0.11s;
}

section, .section {
  transition: background 0.18s, box-shadow 0.16s;
}

input:focus, textarea:focus, select:focus, button:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 9px; background: var(--soft-lavender); }
::-webkit-scrollbar-thumb { background: #E7CDEE; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #D7AEDC; }

/* =======================================================================
   MISC
======================================================================= */
::-webkit-input-placeholder { color: #998AAB; }
::-moz-placeholder          { color: #998AAB; }
:-ms-input-placeholder      { color: #998AAB; }
::placeholder              { color: #998AAB; }

[hidden] { display: none !important; }

/* END */
