/* === 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F0F4F8;
  color: #1a3026;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}
img,svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #2C6A52;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFBA08;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2C6A52;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.125rem; font-weight: 500; }
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  padding-left: 18px;
  border-left: 5px solid #FFBA08;
  background: #fffbe7;
  margin-bottom: 16px;
}
strong { font-weight: bold; }

/* Fun/playful headings */
h1, h2, h3 {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
}

/* === COLORS === */
:root {
  --color-primary: #2C6A52;
  --color-secondary: #FFBA08;
  --color-accent: #F0F4F8;
  --color-dark: #1a3026;
  --color-white: #fff;
  --color-error: #e25041;
}

/* === LAYOUT & SPACING === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 3px 14px rgba(44,106,82,0.06), 0 1.5px 4px rgba(44,106,82,0.04);
  transition: background 0.2s;
}

@media (max-width: 768px) {
  .section { padding: 24px 8px; }
}

.card-container, .service-cards, .event-cards, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-card, .event-card, .team-member {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(44,106,82,0.095);
  padding: 28px 20px;
  flex: 1 1 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .service-card:hover, .event-card:hover, .team-member:hover {
  box-shadow: 0 7px 32px rgba(44,106,82,0.13);
  transform: translateY(-3px) scale(1.02);
}

.content-grid, .method-highlights, .flexibility-features, .advice-highlights, .course-categories, .progress-tracking, .coaching-offers, .method-overview, .motivation-tips, .community-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(44,106,82,0.07);
  position: relative;
}
.testimonial-card blockquote {
  color: #17351c;
  background: none;
  border: none;
  margin-bottom: 0;
  padding: 0;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--color-secondary);
  margin-left: 6px;
  font-size: 1.1em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.founder-message {
  background: #ffeba7;
  color: #573d00;
  border-radius: 12px;
  padding: 20px 16px;
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  margin: 32px 0 0 0;
  box-shadow: 0 3px 12px rgba(44,106,82,0.07);
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
  padding: 14px 18px;
  text-align: left;
}
.pricing-table th {
  background: #ffeba7;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-table tr:nth-child(even) td {
  background: #f6f9fa;
}

/* === NAVIGATION HEADER === */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2.5px 10px rgba(44,106,82,0.045);
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
}
.logo img {
  height: 44px;
  width: auto;
}
@media (max-width: 600px) {
  .logo img { height: 36px; }
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ffebaa;
  color: #cd8b03;
}
.cta {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 2px 9px rgba(255,186,8,0.13);
  margin-left: 10px;
  cursor: pointer;
  text-align: center;
  transition: background 0.14s, color 0.18s, box-shadow 0.16s, transform 0.08s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta.secondary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 9px rgba(44,106,82, .08);
}
.cta:hover, .cta:focus {
  background: #fff1be;
  color: #1a3026;
  transform: scale(1.045);
  box-shadow: 0 6px 22px rgba(255,186,8, 0.15);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #409f7a;
  color: #FFBA08;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-size: 2.1rem;
  border-radius: 14px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  box-shadow: 0 2px 8px rgba(44,106,82,0.07);
  transition: background 0.15s, color 0.12s;
  position: relative;
  z-index: 1202;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #409f7a;
}
@media (max-width: 1024px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,106,82, 0.98);
  color: var(--color-white);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.77,.2,.18,1.03);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  background: none;
  color: var(--color-white);
  font-size: 2.35rem;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 0.25em 0.56em;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 1.5px 8px rgba(255,255,255,0.07);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFBA08;
  color: var(--color-dark);
}
.mobile-nav {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 16px 0;
  width: 90vw;
  max-width: 370px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 2;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFBA08;
  color: #2C6A52;
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/* --- HERO ANIMATION --- */
section .content-wrapper h1 {
  animation: growTextHero 0.7s cubic-bezier(.48,-0.13,.51,1.18);
}
@keyframes growTextHero {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}

/* === BUTTONS & INTERACTIONS === */
button, .cta, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.20s, color 0.18s, box-shadow 0.12s, transform 0.12s;
}

/* Fun: bounce microhover */
.cta:hover, .main-nav a:hover, .service-card:hover {
  animation: bouncebutton 0.28s alternate;
}
@keyframes bouncebutton {
  0% { transform: translateY(0) scale(1); }
  80% { transform: translateY(-5px) scale(1.04); }
  100% { transform: translateY(0) scale(1.01); }
}

/* === ICONS === */
img[alt*="Icon"], .main-nav img, .footer-contact img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* === FOOTER === */
footer {
  background: #2C6A52;
  background-color: #dadada;
  color: #fff;
  padding: 32px 0 18px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 14px rgba(44,106,82,0.11);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
footer img {
  height: 54px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #FFBA08;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #fffbe7;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0 10px;
  }
  footer img { height: 38px; }
}

/* === THANK YOU PAGE === */
.thank-you-message {
  font-size: 1.15rem;
  color: var(--color-primary);
  background: #f6fff6;
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 16px;
}
.next-steps ul {
  margin-top: 12px;
  margin-bottom: 20px;
}
.next-steps li {
  margin-bottom: 10px;
}

/* === MISC & UTILS === */
.google-maps-embed {
  background: #E6FAF0;
  color: #17351c;
  border-radius: 10px;
  padding: 15px 10px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.events-calendar ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
.events-calendar li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2C6A52;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1rem;
}

.method-highlights, .flexibility-features, .advice-highlights, .coaching-offers, .method-overview, .motivation-tips, .course-categories, .progress-tracking, .community-highlights {
  background: #FFFAE5;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px rgba(255,186,8, 0.09);
  gap: 14px;
  flex-direction: column;
  margin-bottom: 16px;
}

.events-calendar {
  margin-bottom: 18px;
}

/* === SPACING PATTERNS (MANDATORY) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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; }

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .card-container, .service-cards, .event-cards, .team-profiles {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .card, .service-card, .event-card, .team-member {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 24px 4px; }
  .card, .service-card, .event-card, .team-member {
    padding: 19px 11px;
    font-size: 0.98rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 8px;
  }
  .content-wrapper { gap: 20px; }
}
@media (max-width: 520px) {
  .card, .service-card, .event-card, .team-member {
    padding: 12px 3px;
  }
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.03rem; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #fffbe7;
  color: #2C6A52;
  box-shadow: 0 -1.5px 7px rgba(44,106,82,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px 18px 20px;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
  transition: transform .31s cubic-bezier(.61,.3,.29,1.32), opacity .23s;
}
.cookie-banner.closed {
  transform: translateY(180%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 330px;
  display: block;
  font-size: 1rem;
}
.cookie-banner__buttons {
  flex: 1 1 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner__btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  cursor: pointer;
  margin-right: 4px;
  box-shadow: 0 1.5px 6px rgba(255,186,8,0.15);
  transition: background 0.13s, color 0.13s;
}
.cookie-banner__btn.settings {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-banner__btn.reject {
  background: #E8333C;
  color: #fff;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #fff6c7;
  color: #2C6A52;
}
.cookie-banner__btn.settings:hover, .cookie-banner__btn.settings:focus {
  background: #3c946a;
  color: #FFBA08;
}
.cookie-banner__btn.reject:hover, .cookie-banner__btn.reject:focus {
  background: #a91d26;
  color: #fffbe7;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 12px;
    font-size: .97rem;
  }
  .cookie-banner__text { font-size: .96rem; }
  .cookie-banner__buttons { width: 100%; gap: 8px; }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%) scale(0.92);
  z-index: 3500;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(44,106,82,0.09), 0 2px 9px rgba(44,106,82,0.16);
  padding: 38px 32px 20px 32px;
  max-width: 410px;
  width: calc(100vw - 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  color: #bbb;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 9px;
  padding: 0.3em 0.65em;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal__close:hover { background: #FFBA08; color: #2C6A52; }
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.cookie-category__label {
  flex: 2 1 90px;
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category__desc {
  flex: 3 1 130px;
  font-size: .98rem;
  color: #444;
}
.cookie-toggle {
  width: 46px; height: 24px;
  border-radius: 14px;
  display: inline-block;
  background: #dadada;
  position: relative;
  transition: background 0.22s;
  margin-left: 14px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(44,106,82,0.12);
  transition: left 0.18s cubic-bezier(.5,.01,.9,.56), background 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 24px;
  background: #FFBA08;
}
.cookie-toggle input:checked ~ .cookie-toggle {
  background: #FFBA08;
}
.cookie-category.essential .cookie-toggle {
  background: #2C6A52;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal__actions .cta {
  font-size: 1.03rem;
  padding: 9px 22px;
}

@media (max-width: 440px) {
  .cookie-modal { padding: 20px 4px 12px 4px; max-width: 99vw; }
}

/* === COMMON FLEX UTILS (no grid!) === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* === ACCESSIBILITY === */
:focus { outline: 2px solid #FFBA08; outline-offset: 1.5px; }

/* === SCROLLBAR FOR FANCY TOUCH === */
body::-webkit-scrollbar {
  width: 10px;
  background: #fffbe7;
}
body::-webkit-scrollbar-thumb {
  background: #FFBA08;
  border-radius: 7px;
}

/* --- FUN/FRESH MICRO ANIMATIONS --- */
ul li, ol li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #2C6A52;
  font-family: 'Roboto', sans-serif;
}
ul li:before, ol li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #FFBA08;
  font-size: 1.46rem;
  top: -3px;
  line-height: 1;
  transition: color 0.13s;
}
ul li img, ol li img {
  margin-right: 8px;
  margin-left: -8px;
}

/* Remove dot for icon-based lists */
ul li img+span, ol li img+span {
  padding-left: 2px;
  margin-left: 0;
}

/* === PLAYFUL DECORATIVE ELEMENTS === */
.card, .service-card, .event-card, .team-member, .testimonial-card, .founder-message, .method-highlights, .community-highlights {
  transition: box-shadow .16s, transform .19s, background .15s;
  border: 1.5px dashed #FFBA08;
  background-image: radial-gradient(circle at 80% 20%, #fff3be 4%, transparent 64%),radial-gradient(circle at 20% 80%, #e7fcd6 5%, transparent 65%);
  background-blend-mode: lighten;
}

.card:hover, .service-card:hover, .testimonial-card:hover, .event-card:hover {
  background-color: #fff5cd;
  border-color: #2C6A52;
  box-shadow: 0 12px 24px rgba(255,186,8,0.14);
}

/* === ACCESSIBILITY & CONTRAST === */
.testimonial-card, .testimonial-card * {
  color: #12351e;
  background: #fff;
}

/* === PRINT STYLES (optional) === */
@media print {
  body { background: #fff; }
  .section, .card, .service-card, .event-card, .testimonial-card, .founder-message { background: #fff; box-shadow: none; border: none; }
  .main-nav, .mobile-menu, .footer-nav, .cookie-banner, .cookie-modal { display: none !important; }
}
