/* CSS RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFF;
  color: #23272E;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 16px 0 rgba(189,64,137,0.05);
  margin-bottom: 32px;
}
th, td {
  padding: 18px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #F2D3EC;
}
th {
  background: #BD4089;
  color: #fff;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
tr:last-child td {
  border-bottom: none;
}

/* FLEX CONTAINER CLASSES */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(189, 64, 137, 0.1);
  position: relative;
  padding: 26px 22px;
  transition: transform 0.18s cubic-bezier(.33,1.4,.7,1), box-shadow 0.2s;
  min-width: 240px;
  flex: 1 1 330px;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 10px 36px 5px rgba(189,64,137,0.18);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F6E9F5;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(189,64,137,0.11);
  border-left: 7px solid #BD4089;
  color: #23272E;
  position: relative;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 13px 0 rgba(189,64,137,0.08);
  padding: 15px 20px;
  margin-bottom: 20px;
}
.static-map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.directions-text {
  margin: 18px 0 0 0;
  font-size: 1rem;
}

/* --- HEADER / TOP NAV STYLES --- */
header {
  background: #fff;
  box-shadow: 0 0 16px 2px rgba(189,64,137,0.06);
  padding: 0;
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 18px;
  gap: 20px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 24px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #BD4089;
  border-radius: 10px;
  padding: 7px 18px;
  position: relative;
  transition: background 0.18s, color 0.18s;
  background: transparent;
}
.main-nav a.cta.primary {
  background: #BD4089;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(189, 64, 137, 0.08);
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #A52C76;
  color: #fff;
  box-shadow: 0 0 0 3px #F2D3EC;
  transform: scale(1.03) rotate(-2deg);
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #F6E9F5;
  color: #A52C76;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #BD4089;
  font-size: 2rem;
  padding: 7px 7px;
  border-radius: 8px;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F2D3EC;
  color: #A52C76;
}

@media (max-width: 1000px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE SLIDE-IN MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252,249,252,0.93);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.66,1.2,.66,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #BD4089;
  font-size: 2.1rem;
  padding: 16px 20px 6px 10px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2025;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A52C76;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 26px 32px 20px 38px;
  font-size: 1.24rem;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}
.mobile-nav a {
  padding: 12px 0 12px 0;
  margin-bottom: 7px;
  color: #BD4089;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.15s, color 0.16s, transform 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E9F5;
  color: #A52C76;
  transform: scale(1.018);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- SECTION AND PAGE STRUCTURE --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  section {
    padding: 30px 7px;
  }
  .content-wrapper { gap: 18px; }
}

.text-section {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #23272E;
}
.text-section ul {
  margin: 10px 0 0 0;
}
.text-section p {
  margin-bottom: 14px;
  font-size: 1.06rem;
  color: #23272E;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 800;
  color: #BD4089;
  letter-spacing: -0.02em;
  line-height: 1.16;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 16px;
  animation: heading-bounce-in 1s 0.1s both;
}
@keyframes heading-bounce-in {
  0% {transform: scale(0.97) translateY(32px); opacity: 0;}
  60% {transform: scale(1.04) translateY(-4px); opacity: 1;}
  90% {transform: scale(0.99);}
  100% {transform: scale(1) translateY(0);}
}
h2 {
  font-size: 1.5rem;
  color: #A52C76;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.22rem;
  color: #BD4089;
}
h4 {
  font-size: 1.07rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }
}

p, ul, ol, li, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  color: #BD4089;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
}

ul li, ol li {
  margin-bottom: 8px;
  list-style: disc inside;
  font-size: 1.06rem;
}

blockquote {
  font-style: italic;
  color: #A52C76;
  font-size: 1.04rem;
  margin: 0 0 4px 0;
  padding-left: 8px;
  position: relative;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}
blockquote:before {
  content: '“';
  font-size: 2.1rem;
  color: #F2D3EC;
  position: absolute;
  left: -16px; top: -6px;
}

/* CALL TO ACTION BUTTONS */
.cta,
.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #BD4089;
  color: #fff;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  box-shadow: 0 4px 20px 0 rgba(173,40,112,0.10);
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.25s, color 0.2s, transform 0.14s, box-shadow 0.15s;
  outline: none;
  position: relative;
  gap: 8px;
}
.cta:hover, .cta:focus {
  background: #A52C76;
  color: #fff;
  transform: scale(1.04) rotate(-1.6deg);
  box-shadow: 0 6px 32px 5px rgba(173,40,112,0.13), 0 0 0 3px #F2D3EC;
  outline: none;
}
.cta:active {
  background: #8D2162;
}

/* PRICE TAGS */
.price {
  display: inline-block;
  background: #F6E9F5;
  color: #BD4089;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1em;
  margin-left: 12px;
  border-radius: 9px;
  padding: 5px 13px;
  box-shadow: 0 1px 4px 0 rgba(189,64,137,0.07);
  vertical-align: middle;
}

/* --- FOOTER --- */
footer {
  background: #F6E9F5;
  margin-top: 60px;
  padding: 0 0 0 0;
  color: #23272E;
  font-size: 1rem;
  border-top: 2.5px solid #BD4089;
  position: relative;
}
footer .container {
  gap: 0;
  padding: 0 18px;
}
.footer-top,
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-top {
  border-bottom: 1.5px solid #F2D3EC;
  padding: 28px 0 18px 0;
  margin-bottom: 0;
}
.footer-top img {
  height: 42px;
}
.footer-top nav {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex-wrap: wrap;
}
.footer-top nav a {
  color: #BD4089;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 7px;
  background: transparent;
  transition: background 0.15s, color 0.13s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: #BD4089;
  color: #fff;
}
.footer-bottom {
  font-size: 0.96rem;
  padding: 13px 0 25px 0;
  color: #A52C76;
  justify-content: center;
}

@media (max-width: 700px) {
  .footer-top, .footer-bottom, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  border-top: 4.5px solid #BD4089;
  box-shadow: 0 -5px 36px 0 rgba(173,40,112,0.04);
  padding: 26px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  animation: cookie-slideup 0.75s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes cookie-slideup {
  from { opacity:0; transform: translateY(90px);}
  to { opacity:1; transform: translateY(0);}
}
.cookie-banner-message {
  font-size: 1.08rem;
  color: #23272E;
  flex: 1 1 auto;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: #BD4089;
  color: #fff;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 11px;
  padding: 9px 19px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  box-shadow: 0 2px 8px 0 rgba(189,64,137,0.09);
  outline: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #A52C76;
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 4px 18px 5px #F6E9F5;
}
.cookie-btn.settings {
  background: #fff;
  color: #BD4089;
  border: 2px solid #BD4089;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #F2D3EC;
  color: #A52C76;
  border-color: #A52C76;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 19px 9px;
  }
  .cookie-banner-buttons { flex-direction: row; gap: 10px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(189,64,137,0.21);
  z-index: 3300;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 42px 8px rgba(189,64,137,0.15);
  max-width: 410px;
  width: 96vw;
  padding: 30px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 3500;
  animation: cookie-window-fadein 0.44s cubic-bezier(.62,1.4,.14,1);
  font-family: 'Open Sans', Arial, sans-serif;
}
@keyframes cookie-window-fadein {
  from {transform: scale(0.90) translateY(60px); opacity:0;}
  to {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h3,
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #BD4089;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  background: #F6E9F5;
  padding: 13px 12px;
  border-radius: 8px;
}
.cookie-modal-category .label {
  font-weight: 600;
  color: #A52C76;
}
.cookie-modal-category .toggle {
  margin-left: 7px;
  width: 45px;
  height: 24px;
  appearance: none;
  background: #F2D3EC;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: box-shadow 0.13s, background 0.18s;
  cursor: pointer;
}
.cookie-modal-category .toggle:checked {
  background: #BD4089;
}
.cookie-modal-category .toggle:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px; width: 16px; height: 16px;
  border-radius: 99px;
  background: #fff;
  transition: left 0.21s;
  box-shadow: 0 2px 6px 0 rgba(189,64,137,0.08);
}
.cookie-modal-category .toggle:checked:before {
  left: 25px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #BD4089;
  font-size: 1.4rem;
  position: absolute;
  right: 18px; top: 16px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #A52C76;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 19px 5px 18px 8px;
    max-width: 97vw;
  }
}

/* --- FORMS, INPUTS, ETC. --- */
input, textarea, select {
  border: 1px solid #F2D3EC;
  background: #F6E9F5;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-top: 7px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #BD4089;
  outline: 2px solid #F2D3EC;
}
label {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1em;
  color: #BD4089;
  font-weight: 600;
}

/* --- MISCELLANEOUS / UTILS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* DYNAMIC/ANIMATED EFFECTS for playful vibe */
.cta, .mobile-menu-toggle, .cookie-btn {
  animation: popin 0.46s cubic-bezier(.62,1.2,.14,1);
}
@keyframes popin {
  from { opacity:0; transform: scale(0.90); }
  to   { opacity:1; transform: scale(1); }
}
.card, .testimonial-card, .feature-item {
  animation: floatin 0.55s cubic-bezier(.42,1.2,.21,1) both;
}
@keyframes floatin {
  from { opacity: .25; transform: translateY(16px) scale(0.98);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}

/* Animating list items for playful dynamic effect */
ul li, .feature-item {
  position: relative;
  transition: left 0.19s cubic-bezier(.32,1.3,.68,1), color 0.19s;
}
ul li:hover, .feature-item:hover {
  left: 8px;
  color: #A52C76;
}

/* --- RESPONSIVE RULES --- */
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width: 900px) {
  .card, .feature-item { min-width: 180px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 550px) {
  .footer-top,
  .footer-bottom, footer .container {
    padding: 0 5px;
  }
  .testimonial-card,
  .card,
  .feature-item {
    padding: 9px 7px;
  }
  .section {
    padding: 20px 5px;
    margin-bottom: 35px;
  }
}

/* --- PLAYFUL FUN FONTS --- */
@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');

/* --- OVERRIDES FOR COLOR ACCESSIBILITY: TESTIMONIALS --- */
.testimonial-card,
.testimonial-card blockquote,
.testimonial-card strong {
  color: #23272E !important;
  background: #F6E9F5;
}

/* --- SCROLLBAR for fun effect --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F6E9F5;
}
::-webkit-scrollbar-thumb {
  background: #BD4089;
  border-radius: 8px;
}

/* --- HIDE JS fallback menu if disabled --- */
.mobile-menu { display: none; }

/* --- TABLET and SMALL SCREENS adjustments --- */
@media (max-width: 500px) {
  h1 { font-size: 1.25rem; }
  .cta, .cta.primary { font-size: 1.07rem; padding: 10px 14px; }
  .footer-bottom { font-size: 0.9rem; }
  th, td { font-size: 0.92rem; padding: 10px 6px; }
}
