/* RESET & BASE =================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #29404d;
  background: #f3ecd4;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
a {
  color: #236447;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e74456;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #236447;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, li { font-size: 1rem; margin-bottom: 12px; }
strong { font-weight: 700; }

/* -------- SPACING PATTERNS --------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(35, 100, 71, 0.08);
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(231, 68, 86, 0.10);
  transform: translateY(-3px) scale(1.025);
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(35, 100, 71, 0.06);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(231, 68, 86, 0.10);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card .author {
  color: #236447;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(35,100,71,0.07);
  padding: 18px 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(35,100,71,0.10);
}

/* -------- CONTAINER & LAYOUTS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.header-row, .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 80px;
}
.footer-row {
  border-top: 2px solid #f3ecd4;
  padding-top: 24px;
}
.footer-menu {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.social-links {
  display: flex;
  gap: 14px;
}

/* ------------ NAVIGATION -------------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #29404d;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  position: relative;
  padding: 4px 2px;
  border-radius: 6px;
  transition: background 0.2s, color 0.1s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f7b73133;
  color: #e74456;
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 99px;
  padding: 0.9em 2em;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(35,100,71,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.cta-button.primary {
  background: #e74456;
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #236447;
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 6px 24px 0 rgba(35,100,71,0.18);
}
.cta-button.secondary {
  background: #236447;
  color: #fff;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #e74456;
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 14px 0 rgba(231,68,86,0.10);
}

/* Micro-interaction for all buttons */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.14s, transform 0.14s;
}

/* ------------- PLAYFUL DYNAMIC DECOR ----------- */
/* Cheerful colored dots and playful accents under headlines */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after, h3::after {
  content: '';
  display: block;
  width: 48px;
  height: 7px;
  border-radius: 4px;
  margin: 6px 0 0 0;
  background: #e74456;
  opacity: 0.22;
}

section:nth-child(odd), .section:nth-child(odd) {
  background: #fff6f2;
  border-radius: 24px;
}

/* Fun underline for .subheadline */
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e74456;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 3px dotted #f7b731;
}

/* Animated icon Bobbing */
.feature-card img, .service-card img, .benefit-item img, .pillar img {
  height: 52px;
  margin-bottom: 10px;
  animation: playful-bounce 2.7s cubic-bezier(0.43,0.06,0.69,0.94) infinite;
}
@keyframes playful-bounce {
  0%,100% { transform: translateY(0); }
  14% { transform: translateY(-9px) rotate(-5deg); }
  28% { transform: translateY(3px) rotate(3deg); }
  41% { transform: translateY(-3px) rotate(-2deg); }
  53% { transform: translateY(2px) rotate(1deg); }
}

/* ---------- FEATURE/CARD/GRID VARIANTS --------- */
.features-grid, .services-grid, .benefit-list, .workshop-list, .testimonial-slider, .testimonial-grid, .education-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-card, .service-card, .benefit-item, .workshop-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35, 100, 71, 0.07);
  padding: 24px 16px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.14s, box-shadow 0.14s;
}
.feature-card:hover, .service-card:hover, .benefit-item:hover, .workshop-card:hover {
  transform: scale(1.033) translateY(-7px);
  box-shadow: 0 12px 32px 0 rgba(231, 68, 86, 0.12);
}

.services-grid, .workshop-list {
  gap: 24px 28px;
  margin-bottom: 18px;
}

.service-card .price, .workshop-card .price {
  font-size: 1.15rem;
  color: #236447;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-categories ul, .participant-info ul, .location-list {
  list-style: disc inside;
  font-size: 1.09rem;
  margin-bottom: 12px;
}
.benefit-list, .education-pillars {
  gap: 18px 20px;
}
.pillar {
  flex: 1 1 240px;
  background: #f7b73119;
  border-radius: 12px;
  padding: 20px 12px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.activity-descriptions {
  margin-top: 20px;
}

.testimonial-slider, .testimonial-snippets {
  gap: 24px 20px;
  overflow-x: auto;
}
.testimonial-grid {
  gap: 24px;
  width: 100%;
}
.rating-summary, .star-ratings-summary {
  margin: 16px 0 4px 0;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #29404d;
}

.review-cta {
  margin-top: 16px;
}

/* CTA BOX */
.cta-box {
  background: #e74456;
  border-radius: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 20px 32px 20px;
  box-shadow: 0 2px 16px 0 rgba(35,100,71,0.08);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-box h3 {
  color: #fff;
}
.cta-box .cta-button {
  margin-top: 8px;
  background: #fff;
  color: #e74456;
  border: 2px solid #fff;
}
.cta-box .cta-button:hover, .cta-box .cta-button:focus {
  background: #236447;
  color: #fff;
  border-color: #236447;
}

/* Address/Contact/Info blocks */
.address-block, .phone-email-block, .contact-form-info, .map-block, .travel-tips {
  margin-bottom: 16px;
}

/* ------ DECORATIVE COLOR DOTS (playful) ----- */
.cta-box::before {
  content: '';
  position: absolute;
  top: -20px; left: 30px;
  width: 30px; height: 30px;
  background: #f7b731;
  border-radius: 50%;
  opacity: 0.27;
  z-index: 0;
  animation: ctabubble 3.6s infinite alternate-reverse;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -18px; right: 50px;
  width: 24px; height: 24px;
  background: #49bea3;
  border-radius: 50%;
  opacity: 0.22;
  z-index: 0;
  animation: ctabubble2 2.7s infinite alternate;
}
@keyframes ctabubble {
  0% { transform: scale(1.01) translateY(0); }
  100% { transform: scale(1.18) translateY(-14px); }
}
@keyframes ctabubble2 {
  0% { transform: scale(1); }
  100% { transform: scale(1.22) translateY(14px) translateX(6px); }
}

/* ------------- FOOTER ------------- */
footer {
  background: #236447;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 16px;
  margin-top: 60px;
  border-radius: 32px 32px 0 0;
  position: relative;
  z-index: 2;
}
footer a {
  color: #f3ecd4;
  transition: color 0.14s;
}
footer a:hover, footer a:focus {
  color: #f7b731;
}
.copyright {
  font-size: 0.98rem;
  margin-top: 12px;
  color: #f3ecd4;
  text-align: center;
}


/* ========== MOBILE MENU =========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 24px;
  z-index: 3999;
  padding: 12px 21px;
  font-size: 2.2rem;
  color: #fff;
  background: #e74456;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(35,100,71,0.09);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s;
}
.mobile-menu-toggle:active {
  transform: scale(0.96);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #236447ee;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.8, 0.02, 0.26, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 30px 20px 0 0;
  background: #e74456;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 2px 10px 0 rgba(35,100,71,0.08);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 32px 0 0 0;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 32px;
  background: #f7b73122;
  box-shadow: 0 1px 4px 0 rgba(231,68,86,0.06);
  margin-bottom: 8px;
  width: 80%;
  text-align: center;
  transition: background 0.15s, color 0.13s, transform 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e74456;
  color: #fff;
  transform: scale(1.04);
}

/* Hide desktop nav on mobile and show burger */
@media (max-width: 980px) {
  .main-nav, .header-row .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ======= COOKIE CONSENT BANNER ======= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #29404d;
  border-top: 5px solid #e74456;
  z-index: 11000;
  box-shadow: 0 -2px 24px 0 rgba(35,100,71,0.11);
  width: 100vw;
  padding: 32px 20px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 1;
  animation: banner-in 0.62s cubic-bezier(.61,-0.03,.59,.93);
}
@keyframes banner-in {
  from { transform: translateY(72px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text {
  flex: 1 1 250px;
  font-size: 1.05rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-consent-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  background: #236447;
  color: #fff;
  font-weight: 700;
  padding: 9px 26px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 2px 10px 0 rgba(35,100,71,0.04);
}
.cookie-consent-btn.reject {
  background: #e74456;
}
.cookie-consent-btn.settings {
  background: #f7b731;
  color: #29404d;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #29404d;
  color: #fff;
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #f7b731;
  color: #e74456;
}
.cookie-consent-btn.settings:hover, .cookie-consent-btn.settings:focus {
  background: #236447;
  color: #f7b731;
}

/* ----- Cookie Modal ----- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(41, 64, 77, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  padding: 32px 24px 24px 24px;
  border-radius: 22px;
  box-shadow: 0 7px 32px 0 rgba(35,100,71,0.19);
  min-width: 330px;
  max-width: 95vw;
  color: #29404d;
  position: relative;
  animation: modal-pop-in 0.39s cubic-bezier(.61,-0.03,.59,.93);
}
@keyframes modal-pop-in {
  from { transform: scale(0.86) translateY(63px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 18px;
  background: #e74456;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category-list {
  margin: 18px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #e74456;
}
.cookie-category label {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category.essential label {
  color: #236447;
  font-weight: 700;
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: #236447;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1210px) {
  .header-row, .footer-row, .content-wrapper {
    max-width: 98vw;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 920px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 32px 7px;
  }
  .footer-menu {
    gap: 9px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    min-height: 74px;
  }
  .features-grid, .services-grid, .benefit-list, .workshop-list, .testimonial-slider, .testimonial-snippets, .testimonial-grid, .education-pillars {
    flex-direction: column;
    gap: 16px;
  }
  .cta-box {
    padding: 22px 6px;
    border-radius: 19px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .main-nav, .header-row .cta-button.primary {
    display: none !important;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 540px) {
  .container {
    padding: 0 2px;
  }
  .footer-row {
    padding-top: 10px;
  }
  .section {
    padding-left: 2px;
    padding-right: 2px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 17px 4px 15px 4px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 16px 5vw;
  }
}

/* ========== FORM ELEMENTS (optional future-proof) ========== */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #e74456;
  padding: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #29404d;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #F7B73166;
  border-color: #236447;
}
label {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #236447;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }

::-webkit-scrollbar {
  width: 8px;
  background: #f3ecd4;
}
::-webkit-scrollbar-thumb {
  background: #e74456;
  border-radius: 99px;
}

/* ========== COLORS & ANIMATIONS ========== */
:root {
  --crimson-green: #236447;
  --crimson-blue: #29404d;
  --crimson-accent: #f3ecd4;
  --crimson-salmon: #e74456;
  --crimson-yellow: #f7b731;
  --crimson-teal: #49bea3;
  --bg-main: #f3ecd4;
  --bg-light: #fff6f2;
  --shadow: 0 2px 14px 0 rgba(35,100,71,0.09);
  --radius-large: 24px;
  --radius-medium: 16px;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
::selection {
  background: #e74456;
  color: #fff;
}

/* SHADOWS */
.shadow {
  box-shadow: 0 2px 14px 0 rgba(35, 100, 71, 0.12);
}

/* ========== END OF CSS ========== */