/* ====================================
   RESET & BASE TYPOGRAPHY
==================================== */
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 {
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #31482B;
  background: #FFFDF7;
  min-height: 100vh;
}
@media (max-width:480px) {
  html { font-size:15px; }
}

/* Google Fonts - Inject import, in HTML production use <link> tags */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #25361F;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

p, li, a, span {
  font-size: 1rem;
  color: #31482B;
}
strong {
  font-weight: 700;
  color: #31482B;
}
.text-section p {
  margin-bottom: 14px;
}

/* Utility Colors */
:root {
  --primary: #25361F;
  --primary-light: #31482B;
  --secondary: #FFFDF7;
  --accent: #B8893B;
  --accent2: #AA7200;
  --feature1: #F8EA72;
  --feature2: #FFB8B1;
  --feature3: #6CDB97;
  --feature4: #7DD9F9;
}

/* For fun: handmade squiggly underline */
.squiggle {
  text-decoration: underline wavy var(--accent2) 2px;
  text-underline-offset: 3px;
}

/* Overall container */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ====================================
   HEADER & NAVIGATION
==================================== */
header {
  background: var(--secondary);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 18px 0 rgba(34, 44, 0, 0.04);
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.main-nav > a img {
  height: 48px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  transition: color .18s;
  padding: 6px 14px;
  border-radius: 20px;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--secondary);
  background-color: var(--accent);
  outline: none;
  transition: background .2s, color .13s;
}

/* Burger Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--accent2);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  z-index: 120;
  transition: background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  z-index: 2002;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.87,0,.13,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0 0 40px 10px rgba(34,44,0,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 18px 14px 14px 0;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(34,44,0,0.09);
  transition: background .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  margin: 0 24px 32px 0;
  width: 90%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 18px 0 0 18px;
  transition: color .18s, background .2s;
  width: 100%;
  text-align: right;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent2);
  outline: none;
}

@media (max-width: 1000px) {
  .main-nav ul {
    gap: 6px;
  }
  .main-nav ul li a {
    font-size: .96rem;
    padding: 5px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {display:none !important;}
}

/* ====================================
   SECTION & LAYOUT SPACING
==================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 30px;
  overflow: visible;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: none;
}
.text-section {
  padding: 22px 14px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 2px 28px 0 rgba(180,180,120,0.04);
}
/* Playful section backgrounds (alternate) */
section:nth-child(odd) {
  background: #FFFCF5;
}
section:nth-child(even) {
  background: #F8EA72;
  background: linear-gradient(105deg, #FFFDF7 70%, #FFB8B1 100%);
}

/* Cards & Grids */
.card-container {  /* Not seen directly, kept for future/easy extension */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 8px 30px 0 rgba(51, 67, 69, 0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .28s cubic-bezier(.6,-0.01,.45,1.13),box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 18px 38px 0 rgba(51, 67, 69, 0.13);
  z-index: 10;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .container {
    max-width: 100%;
  }
}

/* ====================================
   PLAYFUL ELEMENTS: FEATURES, ICON LISTS
==================================== */
.features-list, .services-preview, .category-list, .service-list, .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.features-list li {
  flex: 1 1 205px;
  min-width: 190px;
  max-width: 270px;
  background: var(--feature3);
  background: linear-gradient(107deg, #F8EA72 75%, #B8893B 100%);
  box-shadow: 0 4px 18px 0 rgba(184, 137, 59, 0.13);
  border-radius: 18px;
  padding: 18px 18px 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  position: relative;
  transition: transform .22s, box-shadow .22s;
  border: 2.5px solid #FFB8B1;
}
.features-list li:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 13px 36px 0 rgba(170, 114, 0, 0.15);
}
.features-list li img, .category-list li img {
  width: 44px; height: 44px; margin-bottom: 6px;
  animation: playful-bounce 1.8s infinite cubic-bezier(.69,.2,.3,1.2) both;
}
@keyframes playful-bounce {
  0%, 100% { transform: translateY(0) scale(1.0); }
  15% { transform: translateY(-7px) rotate(-6deg) scale(1.1); filter: brightness(1.20); }
  28% { transform: translateY(3px) rotate(2deg) scale(1.07); }
  45% { transform: translateY(-3px) scale(1.04); }
  60% { transform: translateY(0) scale(1.0); }
}
.features-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #25361F;
  font-size: 1.1rem;
}
.features-list p {
  font-size: .98rem;
  color: #395C28;
  font-family: 'Roboto', Arial, sans-serif;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category-list li {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 300px;
  background: #E9E4D5;
  border-radius: 20px;
  padding: 16px 18px 13px 18px;
  margin-bottom: 20px;
  color: #25361F;
  display: flex;
  flex-direction: column;
  gap:8px;
  box-shadow: 0 2px 14px 0 rgba(170, 114, 0, 0.06);
  border: 2px solid #B8893B22;
  transition: transform .16s, box-shadow .19s;
}
.category-list li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.09rem;
  margin-bottom: 1px;
}
.category-list li:hover {
  transform: scale(1.025);
  box-shadow: 0 5px 22px 0 rgba(170, 114, 0, 0.16);
  background: #F8EA72;
}
.category-list li p {
  color: #395C28;
  font-size: .98rem;
}

.services-preview, .service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services-preview li, .service-list li {
  padding: 13px 16px 9px 18px;
  background: #FFFFFF;
  border-radius: 14px;
  color: #25361F;
  font-size: 1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(51,51,51,0.06);
  transition:.18s background, .2s box-shadow;
}
.services-preview li strong,.service-list li strong {font-family: 'Montserrat'; color: #b8893b; font-size:1.05em;}
.services-preview li a {
  color: var(--accent2); text-decoration:underline; font-weight:700;
  transition: color .2s;
}
.services-preview li a:hover { color: #25361F;}

.news-list li {
  margin-bottom: 14px;
  line-height: 1.44;
}

@media (max-width:868px) {
  .features-list, .category-list { flex-direction: column; gap: 14px; }
  .features-list li, .category-list li { min-width: unset; max-width: 100%; }
}


/* ====================================
   CTA BUTTONS
==================================== */
.cta {
  background: var(--accent2);
  color: var(--secondary);
  padding: 13px 34px;
  border: none;
  border-radius: 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 9px;
  transition: background .22s, box-shadow .21s, color .16s;
  box-shadow: 0 5px 18px 0 rgba(170, 114, 0, 0.10);
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: .5px;
}
.cta.primary {
  background: var(--accent2);
}
.cta.secondary {
  background: var(--accent);
  color: var(--primary);
}
.cta:hover, .cta:focus {
  background: #B8893B;
  color: #fff;
  box-shadow: 0 10px 36px 0 rgba(170, 114, 0, 0.14);
  outline: 2px solid #F8EA72;
}
.cta:active {
  background: #31482B;
}

/* Subtle ripple animation on hover for buttons */
.cta::after {
  content:'';
  display:block;
  position:absolute;
  left:50%;top:50%;
  width:0;height:0;
  background:rgba(255,255,255,0.23);
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:.33s cubic-bezier(.47,0,.75,1.54);
  z-index:0;
}
.cta:hover::after, .cta:focus::after {
  width:220%;height:220%;
}

/* ====================================
   TESTIMONIALS
==================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 32px;
  background: #F8EA72;
  border-radius: 22px;
  margin-bottom: 24px;
  margin-top: 6px;
  color: #1D2812;
  box-shadow: 0 4px 24px 0 rgba(184,137,59,0.13);
  font-size: 1.06rem;
  border: 2.3px solid #B8893B33;
  min-width: 220px;
  max-width: 540px;
  transition: box-shadow .22s,transform .21s;
}
.testimonial-card:hover {
  box-shadow:0 12px 38px 0 rgba(170, 114, 0, 0.15);
  transform:scale(1.02) translateY(-2px);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #263E19;
  margin-bottom: 2px;
}
.testimonial-card span {
  color: #25361F;
  font-size: .96rem;
}

@media (max-width: 650px) {
  .testimonial-card {
    padding: 16px 14px;
    font-size: .99rem;
    max-width: 100%;
  }
}

/* ====================================
   FOOTER
==================================== */
footer {
  background: linear-gradient(90deg, #F8EA72 80%, #B8893B 100%);
  padding: 36px 0 14px 0;
  margin: 0;
  border-top:4px solid #25361F55;
}
.footer-nav {
  display:flex;
  flex-wrap:wrap;
  gap:8px 21px;
  justify-content:center;
  align-items:center;
  font-size: 1.03rem;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #25361F;
  font-weight:600;
  text-decoration: underline;
  transition: color .19s;
}
.footer-nav a:hover {
  color: var(--accent2);
}
.contact-footer {
  text-align:center;
  margin-top:6px;
  padding-top:8px;
  color: #25361F;
  font-size: 1.01rem;
  letter-spacing: .1px;
  font-family: 'Roboto',Arial,sans-serif;
  background: none;
}
.contact-footer a {
  color: #B8893B;
  text-decoration: none;
  border-bottom: 1.5px dashed #B8893B;
  transition: color .19s, border .14s;
}
.contact-footer a:hover {
  color: #25361F;
  border-bottom: 2.3px solid #B8893B;
}

/* ====================================
   COOKIE CONSENT BANNER
==================================== */
.cookie-banner {
  position: fixed;
  z-index: 4000;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF8DB;
  box-shadow: 0 -2px 22px 0 rgba(170,114,0,0.15);
  border-top: 3px solid #B8893B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px 22px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookie-in .7s cubic-bezier(.55,1.5,.65,1) both;
}
@keyframes cookie-in {
  from { transform: translateY(150%); }
  to { transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 0 170px;
  color: #25361F;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items:center;
}
.cookie-btn {
  background: var(--accent2);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition:.18s background, color .18s;
  margin:0;
}
.cookie-btn.settings {
  background: #F8EA72;
  color:#25361F;
  font-weight: 600;
  border: 2px solid #B8893B55;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #B8893B;
  color: #fff;
  outline:2px solid #FFF8DB;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #fff;
  color: #25361F;
  border:2px solid #B8893B;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 4010;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  background: #FFFDF7;
  border-radius: 30px;
  border: 4px solid #F8EA72;
  box-shadow: 0 16px 48px 8px rgba(170,114,0,0.22);
  max-width: 420px;
  width: 94vw;
  padding: 38px 28px 30px 28px;
  opacity:0;
  pointer-events:none;
  transition:.37s opacity,.4s transform;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal.open {
  opacity:1;
  pointer-events: auto;
  transform:translate(-50%,-50%) scale(1);
}
.cookie-modal__header {
  font-size:1.3rem;
  font-weight:900;
  margin-bottom:13px;
  color:var(--primary);
}
.cookie-modal__close {
  position:absolute;
  top:20px;
  right:20px;
  width:36px;
  height:36px;
  background: var(--accent2);
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:1.4rem;
  cursor:pointer;
  transition:background .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:0 3px 8px 0 rgba(170,114,0,0.13);
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background:var(--primary-light);
}
.cookie-modal__content {
  margin-bottom:17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category label {
  color: var(--primary);
  font-weight:600;
  font-size: 1.08rem;
  cursor:pointer;
}
.cookie-toggle {
  appearance: none;
  width:40px; height:22px;
  background: #F8EA72;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .14s;
  box-shadow: 0 1px 4px 0 #D7B44335;
}
.cookie-toggle:checked {
  background: var(--accent2);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: .2s left;
  border: 2px solid #FFF8DB;
  box-shadow: 0 .5px 2px 0 #b8893b22;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-category .note {
  color: #625d40;
  font-size: .96rem;
  font-weight:400;
  margin-left:7px;
  opacity:0.7;
}
.cookie-modal__actions {
  display:flex;
  gap:14px;
  justify-content:center;
}

@media(max-width:600px) {
  .cookie-modal{ max-width:97vw; padding: 22px 6vw 18px 6vw;}
  .cookie-modal__header{font-size:1.1rem;}
}
@media(max-width:540px){
  .cookie-banner{ flex-direction:column; gap:9px; align-items:flex-start; padding: 16px 2vw;}
}

/* Example: Show modal overlayed */
.cookie-modal__backdrop {
  position:fixed;z-index:4009;top:0; left:0; width:100vw; height:100vh; background:rgba(60,60,16,0.13); pointer-events:none; opacity:0;transition:opacity .34s;}
.cookie-modal.open + .cookie-modal__backdrop { pointer-events: all; opacity:1;}

/* ====================================
   PLAYFUL MICROLEFFECTS & UTILITIES
==================================== */
@keyframes button-pop {
  0% {transform:scale(1);}
  40% {transform:scale(1.09);}
  80% {transform:scale(0.95);}
  100%{transform:scale(1);}
}
.cta:active, .cookie-btn:active {
  animation: button-pop .15s;
}

/* Colorful heading underline effect */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 72px;
  height: 6px;
  border-radius: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, #FFB8B1, #F8EA72 60%, #AA7200 100%);
}
h1:after{width:88px;}
h2:after{width:54px;}

.text-section h1:after,
.text-section h2:after {
  background: linear-gradient(90deg,#b8893b 30%,#f8ea72 100%);
}


/* ====================================
   RESPONSIVE: LAYOUT FLUIDITY
==================================== */
@media (max-width: 600px) {
  body, .container {padding:0;}
  section {
      margin-bottom: 38px;
      padding: 24px 4vw;
  }
  h1{ font-size: 1.37rem; }
  h2{ font-size: 1.07rem;margin-top:18px;}
  h3{ font-size: .98rem; }
  .footer-nav {gap:5px 6px;font-size:.98rem;}
}

/* Vanity scrollbars */
::-webkit-scrollbar { width: 11px; background: #FFFDF7; }
::-webkit-scrollbar-thumb { background: #F8EA72; border-radius: 9px; }

/* ====================================
   FORMS
==================================== */
input, select, textarea {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 16px;
  border-radius: 14px;
  border:1.8px solid #B8893B66;
  background: #FFF;
  outline: none;
  transition: border .17s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #AA7200;
  background: #FFFDF7;
}

/* ====================================
   MISC UTILITIES & ACCESSIBILITY
==================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
*:focus-visible {
  outline:2.5px solid #F8EA72;
  outline-offset: 1.5px;
}

/* Hide visually but keep accessible */
.sr-only {
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

