/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F2E8C9;
  color: #284E36;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
button { border: none; background: none; cursor: pointer; }
/* FONT IMPORTS (replace URLs as needed) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* THEME COLORS */
:root {
  --primary: #284E36;
  --primary-dark: #14301C;
  --secondary: #F2E8C9;
  --secondary-light: #FFF8E3;
  --accent: #C27E4C;
  --accent-dark: #A04A13;
  --success: #45BE89;
  --error: #DB3B21;
  --white: #FFFFFF;
  --gray-light: #F9F9F9;
  --shadow: 0 2px 12px 0 rgba(40,78,54,0.09);
  --shadow-strong: 0 4px 18px 0 rgba(40,78,54,0.16);
}
/* TYPOGRAPHY */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: var(--secondary);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 10px; }

p {
  color: #284E36;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta, .main-nav .cta, .cta a {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--white) !important;
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  transition: background 0.18s, box-shadow .22s, transform .18s;
  box-shadow: var(--shadow);
  display: inline-block;
  margin-top: 8px;
  text-align: center;
  border: 2px solid transparent;
}
.cta:hover, .cta:focus {
  background: var(--accent-dark);
  color: var(--white) !important;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--primary);
}

/* FLEX CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--secondary-light);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--white); border-radius: 24px; box-shadow: var(--shadow); padding: 24px; }
.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; }
.feature-grid, .features .feature-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; border-radius: 24px; box-shadow: var(--shadow); background: var(--white); margin-bottom: 24px; transition: transform .15s; }
.testimonial-card:hover { transform: scale(1.025) rotate(-1deg); background: #f9fbe7; box-shadow: var(--shadow-strong); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: var(--white); padding: 22px 18px; border-radius: 24px; box-shadow: var(--shadow); margin-bottom: 20px; min-width: 220px; flex: 1 1 220px; transition: box-shadow 0.15s, transform .15s; border: 2px solid #fff5e6; }
.feature-item:hover { box-shadow: var(--shadow-strong); border: 2px solid var(--accent); transform: scale(1.03) rotate(2deg); }
.feature-item img { width: 40px; height: 40px; }

.text-section { display: flex; flex-direction: column; gap: 16px; }
.social-links { display: flex; flex-direction: row; gap: 12px; margin-bottom: 12px; }

/* HERO SECTION */
.hero { background: linear-gradient(105deg, #E9F6ED 80%, #FFF8E3 100%); box-shadow: none; padding-top: 60px; padding-bottom: 60px; text-align: center; border-radius: 0 0 48px 48px; margin-bottom: 48px; }
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  text-shadow:2px 3px 0 #f8be86,0 6px 12px rgba(40,78,54,0.05);
}
.hero p {
  color: var(--primary);
  font-size: 1.22rem;
  max-width: 660px;
  margin: 0 auto 20px;
}
.hero .cta { margin-top: 18px; font-size: 1.2rem; }

/* MAIN NAVIGATION */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 14px 0;
}
header {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(40,78,54,0.055);
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 4px 12px;
  border-radius: 8px;
  color: var(--primary);
  transition: background 0.20s, color 0.15s, box-shadow 0.15s;
  position: relative;
}
.main-nav a.cta {
  margin-left: 16px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 8px 22px;
  font-weight: 900;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: var(--secondary-light);
  color: var(--accent-dark);
  box-shadow: 0 1px 6px 0 #ffeec0;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: var(--accent-dark);
  color: var(--white) !important;
  box-shadow: var(--shadow-strong);
}

header img {
  height: 48px;
  transition: transform .24s;
}
header img:hover { transform: scale(1.06) rotate(-4deg); }

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.15s;
  z-index: 90;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.72,.01,.23,1.27);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 24px;
  box-shadow: -8px 0 28px -8px #dab06b44;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--accent-dark);
  background: none;
  align-self: flex-end;
  margin-bottom: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  border-radius: 14px;
  padding: 13px 8px;
  text-align: left;
  background: var(--secondary-light);
  transition: background .17s, color .15s;
  font-weight: 700;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  color: var(--accent-dark);
  background: #fdf6ee;
}
.mobile-nav a.cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 28px;
  font-weight: 900;
  margin-top: 12px;
  text-align: left;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* CARDS / FEATURE CARDS / TESTIMONIALS */
.card { /* see above for core styling */ box-shadow: var(--shadow); border-radius: 24px; transition: box-shadow .12s, transform .13s; }
.card:hover { box-shadow: var(--shadow-strong); transform: scale(1.025) rotate(-2deg); }

.testimonials, .callout, .thank-you, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use {
  background: linear-gradient(100deg,#F2E8C9 45%, #E9F6ED 100%);
  box-shadow: var(--shadow);
  border-radius: 32px;
}
.testimonial-card {
  background: #FFF;
  color: #284E36;
  font-size: 1.07rem;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--accent);
  margin-right: 16px;
}
.testimonial-card strong {
  font-size: 0.99rem;
  color: var(--primary-dark);
  margin-left: 8px;
  font-weight: bold;
}

/* FAQ, PRICING, SCHEDULE LISTS */
.faq ul, .pricing ul, .schedule ul, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.faq li, .pricing li, .schedule li, .text-section ul li {
  background: var(--gray-light);
  padding: 10px 14px 10px 34px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--primary-dark);
  position: relative;
}
.text-section ul li img { width: 18px; height: 18px; position: absolute; left: 10px; top: calc(50% - 9px); }

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 48px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
footer a {
  color: var(--white);
  font-weight: 700;
  letter-spacing: .5px;
  transition: color .15s;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
footer img { height: 54px; margin-bottom: 10px; }
.contact-details p { margin-bottom: 2px; font-size: 0.99rem; color: var(--secondary); }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fdffe0;
  box-shadow: 0 -2px 22px 0 rgba(40,78,54,0.16);
  padding: 20px 24px 24px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 18px 18px 0 0;
  animation: bannerIn .45s cubic-bezier(.58,1.3,.42,1.01);
}
@keyframes bannerIn { 0%{ transform: translateY(100%);} 100% { transform: translateY(0);} }

.cookie-banner p {
  color: var(--primary-dark);
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 8px;
  border: 2px solid transparent;
  background: var(--primary);
  color: var(--white);
  transition: background .14s, color .14s, border .12s, transform .12s;
  box-shadow: var(--shadow);
}
.cookie-buttons button:hover, .cookie-buttons button:focus {
  background: var(--accent-dark);
  color: var(--white);
  border: 2px solid var(--accent);
  transform: scale(1.07);
}
.cookie-buttons .settings {
  background: var(--white);
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: #f9f6cb;
  color: var(--primary-dark);
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40, 78, 54, 0.23);
  backdrop-filter: blur(2px);
  animation: fadeInOverlay .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  padding: 28px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  max-width: 98vw;
  width: 380px;
  gap: 20px;
  animation: modalIn .42s cubic-bezier(.44,1.3,.42,1.01);
  position: relative;
}
@keyframes modalIn { from { transform: scale(0.7); opacity: 0.5;} to {transform: scale(1); opacity: 1;} }
.cookie-modal h3 { color: var(--primary-dark); font-size: 1.18rem; text-align: left; margin-bottom: 10px; font-family: 'Montserrat', Arial, sans-serif; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-category .always-on {
  color: var(--success);
  font-weight: bold;
  margin-left: 4px;
}
.cookie-modal .close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  color: var(--error);
  font-weight: 900;
}

/* BUTTONS & LINKS */
button, .cta, .main-nav .cta, .mobile-nav .cta {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  transition: background .16s, color .13s, box-shadow .14s, transform .13s;
}
button:focus, .cta:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ANIMATED ACCENTS: playful/dynamic subtle motion */
.cta, .feature-item, .testimonial-card, .card {
  transition: transform .14s, box-shadow .15s;
}
.cta:active, .card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.97) rotate(-1deg);
}

/* Tablet and Desktop Breakpoints */
@media (min-width: 700px) {
  .content-wrapper,
  .team .content-wrapper,
  .schedule .content-wrapper,
  .pricing .content-wrapper,
  .faq .content-wrapper,
  .callout .content-wrapper,
  .testimonials .content-wrapper,
  .thank-you .content-wrapper,
  .privacy-policy .content-wrapper,
  .gdpr .content-wrapper, .cookies-policy .content-wrapper, .terms-of-use .content-wrapper {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 950px) {
  .feature-grid, .features .feature-grid {
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .feature-item { flex: 1 1 240px; min-width: 240px; }
}

/* RESPONSIVE / MOBILE FIRST */
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-container { gap: 18px; }
}
@media (max-width:768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .feature-grid, .features .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item { min-width: unset; }
  .content-wrapper,
  .schedule .content-wrapper,
  .callout .content-wrapper,
  .testimonials .content-wrapper,
  .team .content-wrapper,
  .thank-you .content-wrapper,
  .privacy-policy .content-wrapper, .gdpr .content-wrapper, .cookies-policy .content-wrapper, .terms-of-use .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .hero { padding-top: 32px; padding-bottom: 38px; border-radius: 0 0 28px 28px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .section, section {
    padding: 24px 4px; margin-bottom: 32px;
    border-radius: 12px;
  }
  .footer .container { padding: 10px 2px 18px 2px; }
  .testimonial-card { flex-direction: column; gap: 10px; font-size: 0.98rem; }
  .feature-item { border-radius: 12px; padding: 14px 8px; }
}
@media (max-width: 500px) {
  .cookie-modal { padding: 14px 7px 16px 9px; width: 96vw; }
  .cookie-banner { padding: 12px 8px; }
}

/* --- PLAYFUL DYNAMIC FONTS / COLOR SPLASHES --- */
h1, h2, .cta, .main-nav .cta, .mobile-nav .cta {
  font-family: 'Montserrat', cursive, sans-serif;
}
h1 span, h2 span, .cta span {
  color: var(--accent-dark);
  background: #FFEBC5;
  border-radius: 12px;
  padding: 2px 8px;
}

/* ADDITIONAL PLAYFUL EFFECTS */
.cta, .main-nav .cta, .mobile-nav .cta {
  box-shadow: 0 6px 20px -6px #ffd27299, 0 1px 4px 0 #b8621699;
}
.feature-item, .testimonial-card, .card {
  position: relative;
  overflow: hidden;
}
.feature-item::after, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff4cc;
  border-radius: 60% 49% 80% 60%/50% 80% 60% 80%;
  opacity: 0.18;
  top: -21px;
  right: -28px;
  z-index: 0;
  pointer-events: none;
  animation: playfulBlob 5s infinite alternate cubic-bezier(0.19,1,0.22,1);
}
@keyframes playfulBlob {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(9deg); }
}
.testimonial-card::before {
  left: -18px; top: 11px; right: auto;
  background: #fdffe0;
  width: 48px; height: 48px;
  opacity: 0.11;
}
.feature-item::after {
  top: 12px; right: -10px;
  width: 42px; height: 42px;
  opacity: .13;
}

.testimonial-card{ display: flex;flex-direction: column;}

/* SCROLLBAR STYLES */
::-webkit-scrollbar { width: 12px; background: #fdf6c0; border-radius: 8px; }
::-webkit-scrollbar-thumb { background: #C27E4C; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #A04A13; }
::-webkit-scrollbar-corner { background: #f9f5de; }

/* REMOVE OUTLINE-ON-CLICK FOR MICE, KEEP FOR KEYS */
:focus:not(:focus-visible) { outline: none; }

/* ACCESSIBILITY: LINK FOCUS VISIBLE */
a:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 2px; }

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