/* ==== RESET & BASE ==== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFFDF6;
  color: #324960;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #E17E56;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #C8501A;
  text-decoration: underline;
}

/* ===== BRAND COLORS ===== */
:root {
  --primary: #324960;
  --secondary: #F2CBB7;
  --accent: #FFFDF6;
  --tertiary: #FFB85C;
  --playful-pink: #E17E56;
  --playful-blue: #6EB6FF;
  --playful-green: #A5D6B5;
  --shadow: rgba(50, 73, 96, 0.10);
  --border-radius: 20px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: var(--primary);
}
h1 {font-size: 2.5rem; line-height: 1.2; letter-spacing: -0.02em;}
h2 {font-size: 2rem; line-height: 1.3; margin-bottom: 24px;}
h3 {font-size: 1.25rem; margin-bottom: 10px; font-family: 'Raleway', 'Roboto', Arial, sans-serif;}
h4 {font-size: 1.125rem;}
.text-section h1, .text-section h2,
.text-section h3 {margin-bottom: 16px;}

p {margin-bottom: 12px;}
ul, ol {margin-left: 1.4em; margin-bottom: 16px;}
li {margin-bottom: 8px;}
strong {font-weight: bold;}

/* ==== LAYOUT & CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section {
    padding: 28px 6vw;
    margin-bottom: 44px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 18px 4vw;
    margin-bottom: 28px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 12px;
}
@media (min-width: 730px) {
  .content-wrapper.features-grid,
  .content-wrapper.services-list,
  .content-wrapper.testimonials-list,
  .content-wrapper.blog-preview {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media (max-width: 729px) {
  .content-wrapper.features-grid,
  .content-wrapper.services-list,
  .content-wrapper.testimonials-list,
  .content-wrapper.blog-preview {
    flex-direction: column;
    gap: 22px;
  }
}

/* === Spacing/Alignment Patterns === */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: var(--border-radius); box-shadow: 0 4px 18px var(--shadow); background: #fff; padding: 28px 20px; }
.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; background: var(--secondary); border-radius: var(--border-radius); box-shadow: 0 4px 12px var(--shadow); margin-bottom: 20px;  min-width: 0;  }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Styles for blog, features, testimonials */
.features-grid > div, .services-list > div, .blog-preview > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 18px var(--shadow);
  padding: 26px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 200px;
  cursor: pointer;
}
.features-grid > div:hover,
.services-list > div:hover,
.blog-preview > div:hover {
  transform: translateY(-6px) scale(1.027);
  box-shadow: 0 8px 36px rgba(50, 73, 96, 0.18);
}
.features-grid img, .services-list img {
  width: 44px;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  border-radius: 100%;
  background: var(--playful-blue);
  padding: 5px;
  box-shadow: 0 1px 6px rgba(110,182,255,0.10);
}

/* For feature/ul list blocks */
.features-list ul,
.content-wrapper ul {
  list-style: disc inside;
  padding-left: 1.6em;
}
.features-list li, .content-wrapper ul li {
  padding-left: 0.2em;
  font-size: 1.05em;
}

/* Text/image sections */
.text-section {
  max-width: 660px;
}

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

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px var(--shadow);
  position: relative;
  z-index: 20;
  padding: 0;
}
header .container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  min-height: 66px;
}
header img {
  height: 48px; width: auto;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 18px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 30px;
  color: var(--primary);
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 600;
  background: transparent;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #C8501A;
  box-shadow: 0 1px 6px var(--shadow);
  text-decoration: none;
}

/* Hide nav on mobile */
@media (max-width: 900px) {
  .main-nav, .btn-primary { display: none; }
}

/* === Buttons === */
.btn-primary,
.btn-secondary {
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12em;
  border-radius: 32px;
  border: none;
  outline: none;
  padding: 12px 32px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.18s, color 0.12s, transform 0.12s, box-shadow 0.12s;
  display: inline-block;
  letter-spacing: 0.1em;
  position: relative;
}
.btn-primary {
  background: var(--playful-pink);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C8501A;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 36px rgba(225,126,86,0.18);
}
.btn-secondary {
  background: var(--playful-blue);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.045) rotate(2deg);
}

/* Service price */
.service-price {
  display: inline-block;
  background: var(--secondary);
  color: #A7664D;
  font-weight: bold;
  border-radius: 14px;
  padding: 6px 18px;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* === HERO SECTION === */
section:first-of-type {
  background: var(--playful-blue);
  background: linear-gradient(92deg, #F2CBB7 51%, #FFFDF6 100%);
  min-height: 280px;
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 38px;
  box-shadow: 0 8px 36px var(--shadow);
  display: flex;
  align-items: center;
}
section:first-of-type h1 {
  color: var(--primary);
  text-shadow: 1px 2px 12px rgba(50, 73, 96, 0.04);
  margin-top: 12px;
}
section:first-of-type .btn-primary {
  margin-top: 24px;
  background: var(--primary);
  color: #fff;
}
section:first-of-type .btn-primary:hover {
  background: #6EB6FF;
  color: #fff;
}

/* ==== TESTIMONIALS ==== */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 290px;
  background: var(--secondary);
  color: #324960;
  box-shadow: 0 4px 18px var(--shadow);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  font-size: 1.13em;
  position: relative;
  min-width: 215px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.09em;
  margin-bottom: 14px;
  color: #324960;
}
.testimonial-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.97em;
  color: #7A462F;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
@media (max-width: 729px) {
  .testimonials-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    font-size: 1em;
  }
}

/* ==== BLOG PREVIEW ==== */
.blog-preview > div {
  min-width: 215px;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 44px 0 22px 0;
  border-top-left-radius: 45px;
  border-top-right-radius: 28px;
  box-shadow: 0 -3px 20px var(--shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 120px;
  color: #fff;
}
footer img {
  height: 40px;
}
footer .footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer .footer-nav a {
  color: #fff;
  background: transparent;
  border-radius: 24px;
  padding: 7px 13px;
  transition: background 0.17s, color 0.15s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  background: var(--playful-blue);
  color: var(--primary);
  text-decoration: none;
}
footer .footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
footer .footer-socials a img {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s, box-shadow 0.16s;
  box-shadow: 0 2px 8px var(--shadow);
}
footer .footer-socials a:hover img {
  transform: scale(1.10) rotate(-6deg);
  box-shadow: 0 4px 16px #6EB6FF80;
}
footer .text-section span {
  display: block;
  font-size: 1.02em;
  margin-bottom: 2px;
  color: #fff;
}
@media (max-width: 750px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--playful-pink);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 15px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.12s, color 0.12s, transform 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
  outline: none;
  transform: scale(1.06) rotate(8deg);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 8px 36px var(--shadow), 0 2px 20px #E17E56cc;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.85,-0.01,.21,1.02);
  display: flex;
  flex-direction: column;
  padding-top: 36px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px; height: 46px;
  display: flex;
  align-items: center; justify-content: center;
  position: absolute;
  top: 16px; right: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.12s, color 0.14s, transform 0.13s;
  z-index: 205;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C8501A;
  color: #fff;
  transform: scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 48px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.18em;
  color: var(--primary);
  padding: 11px 0 11px 8px;
  border-radius: 15px;
  transition: background 0.13s, color 0.13s;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #C8501A;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding: 20px 18px 22px 18px;
  width: 100vw;
  background: var(--secondary);
  color: #324960;
  box-shadow: 0 -4px 14px var(--shadow);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: opacity 0.34s cubic-bezier(.85,-0.01,.21,1.02), transform 0.3s cubic-bezier(.67,-0.01,.21,1.02);
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(96px);
}
.cookie-banner p {
  font-size: 1.11em;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-banner .btn-cookie {
  padding: 9px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1em;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.11s;
  box-shadow: 0 1px 4px var(--shadow);
  margin-right: 2px;
}
.btn-cookie.accept {
  background: var(--playful-green);
  color: var(--primary);
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: #61A888;
  color: #fff;
  transform: scale(1.06);
}
.btn-cookie.reject {
  background: var(--playful-pink);
  color: #fff;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #C8501A;
}
.btn-cookie.settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--playful-blue);
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: var(--playful-blue);
  color: #fff;
  border: 1.5px solid #fff;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(50,73,96,0.39);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(.85,-0.01,.21,1.02);
  pointer-events: auto;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 28px 32px 28px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 3px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 4200;
  animation: modalSlideIn 0.38s cubic-bezier(.87,-0.01,.31,1.1);
}
@keyframes modalSlideIn {
  0% {transform: scale(0.90) translateY(60px); opacity:0;}
  75%{transform: scale(1.03) translateY(-6px); opacity:1;}
  100%{transform: scale(1) translateY(0);}
}
.cookie-modal h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.35em;
  letter-spacing: 0.02em;
}
.cookie-modal-list {
  width: 100%;
  margin-bottom: 18px;
}
.cookie-modal-list .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  background: var(--secondary);
  border-radius: 14px;
  padding: 10px 16px;
}
.cookie-modal-list .cookie-category label {
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-size: 1.09em;
  color: var(--primary);
}
.cookie-modal-list .cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #ddd;
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}
.cookie-modal-list .cookie-toggle input {
  opacity: 0;
  width: 42px;
  height: 24px;
  cursor: pointer;
  z-index: 1;
  position: absolute;
  left: 0; top: 0;
}
.cookie-modal-list .cookie-toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--playful-blue);
  transition: left 0.22s cubic-bezier(.7,.2,.2,1.2), background 0.13s;
}
.cookie-modal-list .cookie-toggle input:checked + span {
  left: 21px;
  background: var(--playful-pink);
}
.cookie-modal-note {
  font-size: 0.97em;
  color: #A7664D;
  margin-bottom: 12px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .btn-cookie {
  padding: 10px 28px;
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .features-grid > div, .services-list > div, .blog-preview > div, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:active, .features-grid > div:active, .services-list > div:active, .testimonial-card:active {
  transform: scale(0.98) rotate(-2deg);
  box-shadow: 0 2px 8px var(--shadow);
}

/* ==== PLAYFUL/DECOR EFFECTS ==== */
h1, h2 {
  position: relative;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 7px;
  border-radius: 10px;
  background: var(--playful-blue);
  margin-top:10px;
  margin-left: 0;
  animation: underline-appear 1.2s cubic-bezier(.64,.13,.21,1.11);
}
@keyframes underline-appear {
  0% { width: 0; opacity:0; }
  40%{ opacity:0.6; }
  55%{ width:44px;}
  100% { width: 46px; opacity:1; }
}
h2::after {
  background: var(--playful-pink);
  margin-top: 6px;
  height: 6px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 780px) {
  h1 {font-size: 1.75rem;}
  h2 {font-size: 1.36rem;}
  .btn-primary, .btn-secondary { font-size: 1em; padding: 11px 19px; }
}
@media (max-width: 550px) {
  .container { padding: 0 10px; }
  .features-grid > div, .services-list > div, .blog-preview > div, .testimonial-card {
    padding: 13px 9px;
    font-size: 0.97em;
  }
}

/* ==== FORMS (if used in contact/shop) ==== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 16px;
  border: 1.7px solid var(--secondary);
  padding: 12px 16px;
  margin-bottom: 14px;
  outline: none;
  width: 100%;
  transition: border 0.16s, box-shadow 0.17s;
  background: #fff;
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--playful-pink);
  box-shadow: 0 4px 10px var(--shadow);
}

/* ==== SPECIAL: THANK YOU PAGE ==== */
.thankyou-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==== HIDE/SHOW helpers ==== */
.hide, .is-hidden { display: none !important; }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--playful-blue);
  outline-offset: 2px;
}

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