/* ===========================================
   CSS RESET & BASE STYLES
============================================ */
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,
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4EDE4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #274156;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D6DD1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f57b51;
  text-decoration: underline;
}

/* ===========================================
   BRAND FONT IMPORT (Montserrat for display)
============================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #274156;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
  line-height: 1.17;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 800;
}

ul, ol {
  padding-left: 1.4em;
  margin-bottom: 18px;
  font-size: 1rem;
}
li {
  margin-bottom: 7px;
  line-height: 1.4;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ===========================================
   GLOBAL PLAYFUL DYNAMIC COLOR PALETTE
============================================ */
:root {
  --brand-primary: #274156;
  --brand-secondary: #7A9E9F;
  --brand-accent: #F4EDE4;
  --brand-highlight: #FFDF6D;
  --brand-pink: #F57B51;
  --brand-green: #4ED987;
}

/* ===========================================
   HEADER & NAVIGATION
============================================ */
header {
  background-color: var(--brand-primary);
  box-shadow: 0 2px 16px rgba(39,65,86, 0.10);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 14px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 12px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  background: transparent;
  border-radius: 30px;
  padding: 7px 18px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: var(--brand-highlight);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.07) rotate(-1deg);
}
.cta-button {
  background: var(--brand-green);
  color: var(--brand-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 26px;
  border: none;
  padding: 10px 32px;
  margin-left: 12px;
  box-shadow: 0 3px 16px rgba(79,217,135,.10);
  transition: box-shadow .16s, background .18s, color .18s, transform .09s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.01em;
  outline: none;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-pink);
  color: white;
  box-shadow: 0 7px 24px rgba(245,123,81, .08);
  transform: translateY(-2px) scale(1.07) skew(-2deg);
}

.mobile-menu-toggle {
  background: var(--brand-highlight);
  color: var(--brand-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.18s, color .13s, transform .11s;
  display: none;
  z-index: 21;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: white;
  transform: scale(1.07) rotate(-8deg);
}

/* ===========================================
   MOBILE MENU OVERLAY
============================================ */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 65, 86, 0.94);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.55,1.25,.35,1);
  box-shadow: 0 10px 64px rgba(39,65,86,.13);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-pink);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  padding: 4px 18px 2px 18px;
  cursor: pointer;
  transition: background 0.2s, color .12s, transform .09s;
  z-index: 22;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-highlight);
  color: var(--brand-primary);
  transform: rotate(14deg) scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0 0 40px;
  width: 82%;
}
.mobile-nav a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: transparent;
  border-radius: 14px;
  padding: 14px 10px 14px 22px;
  transition: background 0.15s, color 0.14s, transform 0.12s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-highlight);
  color: var(--brand-primary);
  transform: scale(1.06) translateX(5px) skew(-2deg);
  text-decoration: none;
}

/* ===========================================
   HERO SECTION
============================================ */
.hero {
  background: linear-gradient(120deg, #FFD96F 26%, #FFB6B0 100%, #F4EDE4 100%); /* playful accent */
  background-color: #F4EDE4; /* fallback */
  box-shadow: 0 3px 36px rgba(245,123,81,.06);
  border-radius: 0 0 34px 34px;
  margin-bottom: 48px;
  min-height: 320px;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.hero .container {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  font-size: 2.19rem;
  font-family: 'Montserrat', cursive, sans-serif;
  color: #274156;
  margin-bottom: 10px;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 20px rgba(255,185,112,0.08);
}
.hero p {
  font-size: 1.14rem;
  color: #274156;
  margin-bottom: 26px;
}
.hero .cta-button {
  background: var(--brand-pink);
  color: #fff;
  margin-top: 6px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: var(--brand-green);
  color: var(--brand-primary);
}

/* ===========================================
   FLEXBOX LAYOUTS AND SPACING
============================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 16px 0 0 0;
}
.feature {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 3px 16px rgba(39,65,86,.07);
  padding: 26px 24px 18px 24px;
  min-width: 216px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .2s, transform .13s;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature img {
  height: 46px;
  margin-bottom: 9px;
  filter: drop-shadow(0 2px 8px #ffd96f44) drop-shadow(0 0 0 #0000);
  animation: playful-bounce 1.45s infinite alternate cubic-bezier(0.7,0,0.2,1);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 36px rgba(245,123,81, 0.16), 0 1px 7px #7a9e9f11;
  transform: translateY(-5px) scale(1.04) rotate(-2.5deg);
}

@keyframes playful-bounce {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.07); }
  100% { transform: translateY(0) scale(1); }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(39,65,86,.08);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(245,123,81,.11);
  transform: scale(1.03) rotate(1deg);
}

.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 {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 24px rgba(122,158,159,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 34px 22px 34px;
  margin-bottom: 24px;
  border-left: 7px solid var(--brand-pink);
  max-width: 620px;
  color: #222;
  font-size: 1.03rem;
  transition: box-shadow .17s, transform .13s, border 0.15s;
  z-index: 2;
}
.testimonial-card strong {
  color: var(--brand-pink);
  font-size: 1.08rem;
  margin-top: 3px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px rgba(245,123,81,.16);
  border-left: 7px solid var(--brand-green);
  transform: scale(1.022) rotate(-1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-list,
.price-list, .workshop-list, .steps-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li, .price-list li, .workshop-list li, .steps-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px #27415618;
  padding: 15px 18px;
  font-size: 1.05rem;
  color: #274156;
  margin-bottom: 4px;
  position: relative;
}
.service-list .price, .service-card .price, .price-list li {
  font-family: 'Montserrat', sans-serif;
  background: var(--brand-highlight);
  color: var(--brand-primary);
  border-radius: 14px;
  padding: 2px 12px;
  font-weight: bold;
  margin-left: 12px;
  font-size: 1rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 28px 0;
}
.service-card {
  background: #F4EDE4;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(122,158,159, 0.07);
  flex: 1 1 250px;
  padding: 25px 20px 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .16s, transform .11s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 24px rgba(79, 217, 135, .12);
  transform: scale(1.04) rotate(1deg);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 7px #7a9e9f12;
  padding: 18px 24px 13px 24px;
  font-size: 1rem;
  color: #274156;
  margin-bottom: 4px;
  flex: 1 1 310px;
}

/* ===========================================
   FOOTER
============================================ */
footer {
  background: var(--brand-primary);
  color: #fff;
  margin-top: 54px;
  padding: 42px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  padding: 5px 11px;
  border-radius: 10px;
  transition: background .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-pink);
  color: #fff;
}
.footer-contact img {
  height: 44px;
  margin-bottom: 13px;
}
.footer-contact p {
  font-size: 1rem;
  color: #fff;
  margin: 3px 0 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact p img {
  height: 19px;
  width: auto;
  display: inline-block;
  margin: 0 8px 0 0;
}
.copyright {
  color: #f4ede4ab;
  font-size: 0.97rem;
  width: 100%;
  margin-top: 26px;
  text-align: center;
}

/* ===========================================
   COOKIE CONSENT BANNER & MODAL
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  box-shadow: 0 -5px 18px rgba(39,65,86,.12);
  border-top: 5px solid var(--brand-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  animation: cookie-slide-up 0.5s;
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%); opacity:0; }
  95% { transform: translateY(-16px); opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: #274156;
  font-size: 1.04rem;
  margin-bottom: 2px;
  padding: 0 0.5em;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn,
.cookie-settings-btn {
  border: none;
  border-radius: 10px;
  padding: 8px 19px;
  background: var(--brand-green);
  color: #274156;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, transform 0.12s;
}
.cookie-btn.reject {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-settings-btn {
  background: var(--brand-highlight);
  color: #274156;
}
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: scale(1.06) skew(-2.5deg);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39,65,86, 0.68);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade 0.3s;
}
@keyframes cookie-modal-fade {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px #2741561f;
  padding: 36px 32px 30px 32px;
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.26rem;
  margin-bottom: 10px;
  color: var(--brand-pink);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-weight: 700;
  color: #274156;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 48px;
  height: 24px;
  border-radius: 12px;
  background: #E0E0E0;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-switch:checked {
  background: var(--brand-green);
}
.cookie-modal .cookie-switch:before {
  content:'';
  position: absolute;
  left: 2px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 1px 4px #7a9e9f24;
}
.cookie-modal .cookie-switch:checked:before {
  left: 28px;
}
.cookie-modal .essentials-label {
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 15px;
  padding: 2px 16px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--brand-highlight);
  color: var(--brand-primary);
}

/* ===========================================
   OTHER COMPONENTS
============================================ */
.price {
  font-family: 'Montserrat', sans-serif;
}
/* Decorative bouncing underline for playful headings */
h2::after {
  display: block;
  content: '';
  width: 50px;
  height: 5px;
  background: var(--brand-pink);
  border-radius: 3px;
  margin-top: 6px;
  animation: underline-bounce 3.2s infinite cubic-bezier(.33,2,.68,.13);
}
@keyframes underline-bounce {
  0%, 100% { width: 50px; }
  12.5% { width: 56px; }
  25% { width: 44px; }
  37.5% { width: 62px; }
  50% { width: 47px; }
  68% { width: 54px; }
}

/* ===========================================
   MEDIA QUERIES — RESPONSIVE DESIGN
============================================ */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .features-grid, .card-container, .service-cards {
    gap: 18px;
  }
}
@media (max-width: 920px) {
  .features-grid, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.54rem; }
  h2 { font-size: 1.19rem; }
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .features-grid, .content-grid, .card-container, .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card, .service-card, .faq-item, .testimonial-card {
    min-width: 0;
  }
  .section, section {
    padding: 26px 6px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact {
    margin-bottom: 14px;
  }
  .footer-contact p {
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 18px 10px 14px 18px;
  }
  .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-nav {
    margin-left: 22px;
    width: 87%;
  }
}
@media (max-width: 520px) {
  .footer-contact img { height: 36px; }
  .cookie-modal { padding: 18px 7px 18px 11px; min-width:98vw; }
  .hero .container { padding-top: 12px; padding-bottom: 10px; }
}

/* ===========================================
   PLAYFUL_MICRO-INTERACTIONS & FOCUS STATES
============================================ */
:focus {
  outline: 2px solid var(--brand-pink);
  outline-offset: 2px;
}
.button:active, .cta-button:active, .cookie-btn:active {
  transform: scale(0.97) skew(-3deg);
}

/* Playful shadow on hover for cards */
.card, .feature, .service-card, .faq-item, .testimonial-card {
  transition: box-shadow .18s, transform .12s;
}

/* ===========================================
   SCROLLBAR — Only for desktop, for fun style
============================================ */
@media (min-width: 900px) {
  ::-webkit-scrollbar {
    width: 11px;
    background: var(--brand-accent);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--brand-pink);
    border-radius: 8px;
  }
}

/* ===========================================
   END OF STYLES
============================================ */
