/* CSS 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,
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;
  height: 100%;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F8F7FF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #22223B;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}
img, svg { max-width: 100%; display: block; }
a { color: #93329E; text-decoration: none; transition: color .18s; }
a:hover, a:focus { color: #6c2572; }
button, input, select, textarea { font-family: 'Roboto', Arial, sans-serif; font-size: inherit; }
ul, ol { margin-left: 1.2em; margin-bottom: 16px; }
li { margin-bottom: 6px; }

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #93329E;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
h4 { font-size: 1.18rem; margin-bottom: 8px; }
p, li, span, a, label, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #22223B;
}
.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #8368a9;
  margin-bottom: 24px;
}

/* COLOR VARIABLES (with fallbacks) */
:root {
  --primary: #93329E;
  --secondary: #22223B;
  --accent: #F8F7FF;
  --pastel-lilac: #E7C6FF;
  --pastel-pink: #FFD6EC;
  --pastel-peach: #FFE5EC;
  --pastel-mint: #D2F6C5;
  --pastel-blue: #C5DFF8;
  --soft-gray: #F4F1FB;
  --neutral-100: #fff;
  --neutral-900: #22223B;
  --shadow: 0 2px 12px rgba(193,174,239,0.09);
  --radius: 18px;
  --border: 1px solid #e6deef;
  --focus: #A25FC5;
}

/* GENERAL SPACING & STRUCTURE */
.container {
  width: 100%;
  max-width: 1172px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent, #F8F7FF);
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEXBOX LAYOUTS */
.card-container,
.card-grid,
.content-grid,
.service-grid,
.feature-grid,
.workshop-list,
.testimonial-slider,
.testimonial-grid,
.testimonial-list,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container,
.card-grid {
  gap: 24px;
}
.content-grid, 
.feature-grid, 
.testimonial-slider, 
.service-grid, 
.workshop-list, 
.testimonial-grid, 
.testimonial-list {
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
}

/* CARD & LISTING COMPONENTS */
.card, .feature-box, .service-item, .workshop-item, .testimonial-card {
  background: var(--pastel-lilac, #E7C6FF);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(147, 50, 158, 0.06), 0 1.5px 6px rgba(126, 63, 157, 0.09);
  border: var(--border);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 246px;
  flex: 1 1 260px;
  transition: box-shadow 0.24s, background 0.20s;
  position: relative;
}
.card:hover, .feature-box:hover, .service-item:hover {
  box-shadow: 0 8px 32px rgba(147,50,158,0.14);
  background: var(--pastel-pink, #FFD6EC);
}
.card img, .feature-box img {
  width: 40px; height: 40px;
  margin-bottom: 9px;
}
.service-price, .service-item .service-price, .workshop-item .service-price {
  color: var(--primary);
  background: var(--pastel-peach, #FFE5EC);
  display: inline-block;
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 0.05em;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--soft-gray);
  border: var(--border);
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(60,54,110,0.06);
  border-radius: var(--radius);
  color: #2A263D;
  font-style: italic;
  max-width: 370px;
  min-width: 220px;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #2a263d;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.testimonial-card span {
  display: block;
  color: #816DB7;
  font-weight: 600;
  font-style: normal;
  font-size: 0.98rem;
  margin-top: 3px;
}
.ratings, .stars-rating {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #FFA5E6;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ABOUT, LEGAL, INFO */
.legal-section {
  background: var(--pastel-mint, #D2F6C5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
}
.legal-section ul, .legal-section ol {
  margin-left: 15px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 142px;
  height: 46px;
  padding: 0 30px;
  border-radius: 25px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(120, 36, 155, 0.07);
  transition: background .2s, box-shadow .13s, color .14s, transform .16s;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary, #93329E);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A25FC5;
  color: #fff;
  box-shadow: 0 8px 24px rgba(147,50,158,0.14);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--pastel-blue, #C5DFF8);
  color: var(--primary, #93329E);
  border: 1.5px solid #BAA7DB;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E7C6FF;
  color: #6c2572;
  box-shadow: 0 5px 16px rgba(147,50,158,0.08);
  transform: translateY(-1px) scale(1.03);
}
.btn-primary:focus, .btn-secondary:focus {
  outline: 3px solid var(--focus, #A25FC5);
  outline-offset: 2px;
}

/* HEADER NAVIGATION */
header {
  background: var(--neutral-100);
  box-shadow: 0 2px 14px rgba(193, 174, 239, 0.10);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  text-decoration: none;
  color: var(--primary, #93329E);
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 25px;
  font-size: 1rem;
  transition: background 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-lilac, #E7C6FF);
  color: #63346b;
}
header .btn-primary {
  margin: 0 0 0 18px;
  height: 38px;
  font-size: 1rem;
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  background: var(--pastel-pink, #FFD6EC);
  color: var(--primary, #93329E);
  border: none;
  border-radius: 14px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s, background 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary, #93329E);
  color: #fff;
  box-shadow: 0 4px 18px rgba(147,50,158,0.18);
  outline: 2px solid #A25FC5;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248,247,255,0.98);
  box-shadow: 0 12px 48px rgba(147, 50, 158, 0.17);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
  padding-left: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pastel-pink, #FFD6EC);
  color: var(--primary, #93329E);
  border: none;
  border-radius: 90px;
  width: 40px; height: 40px;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 18px 18px 6px 0;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary, #93329E);
  color: #fff;
  outline: 2px solid #A25FC5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 42px;
  gap: 18px;
  align-items: flex-start;
  padding-left: 22px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--primary, #93329E);
  background: var(--pastel-lilac, #E7C6FF);
  border-radius: 18px;
  padding: 13px 22px;
  margin-bottom: 2px;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary, #93329E);
  color: #fff;
}

/* Hide burger nav and show main nav on desktop */
@media (min-width: 969px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}
@media (max-width: 968px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MAIN SECTIONS & FLEX PATTERNS */
.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;
}

/* UTILITY */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* NEWSLETTER, HIGHLIGHTS */
.newsletter-signup, .facebook-group-link {
  background: var(--pastel-mint, #D2F6C5);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 9px rgba(120,36,155,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsletter-signup p, .facebook-group-link p {
  margin: 0;
}

/* FOOTER */
footer {
  margin-top: 70px;
  background: var(--pastel-blue, #C5DFF8);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 26px rgba(147, 50, 158, 0.07);
  padding: 40px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  font-size: 0.98rem;
  color: #4a4773;
  margin-bottom: 0px;
  margin-top: 4px;
  text-align: center;
}
.footer-nav a {
  color: #7f69b0;
  margin: 0 3px;
  transition: color 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #93329E;
}
.footer-contact, .footer-social {
  margin-top: 0px;
  font-size: 0.98rem;
  color: #3d3771;
  text-align: center;
}
.footer-social {
  gap: 18px;
}
.footer-social a {
  background: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0.5px 3px rgba(147,50,158,0.13);
  transition: background .15s, box-shadow .13s;
}
.footer-social a:hover {
  background: var(--primary, #93329E);
}
.footer-social img {
  width: 22px; height: 22px;
}

/* MAP, DIRECTIONS, INFO BOXES */
.map-embed, .directions, .accessibility-info, .contact-info {
  background: var(--pastel-blue, #C5DFF8);
  border-radius: 12px;
  padding: 13px 19px;
  margin-bottom: 10px;
  box-shadow: 0 1.5px 7px rgba(120,36,155,0.04);
}

/* ICON FEATURE GROUPS */
.icon-features {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.icon-features img {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(193,174,239,0.07);
  padding: 6px;
  transition: background .13s;
}
.icon-features img:hover {
  background: var(--pastel-pink, #FFD6EC);
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0; bottom: 0;
  background: rgba(252,246,255, 0.98);
  box-shadow: 0 0 22px rgba(147, 50, 158, 0.12);
  border-top: 2.5px solid #E7C6FF;
  padding: 26px 20px 24px 20px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .19s, transform .23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__message {
  flex: 1 1 240px;
  color: #3d3771;
  font-size: 1.03rem;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
  border: none;
  border-radius: 20px;
  padding: 9px 24px;
  font-family: 'Roboto',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background .16s, color .13s, box-shadow .11s;
  cursor: pointer;
}
.cookie-btn-primary {
  background: var(--primary, #93329E);
  color: #fff;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #A25FC5;
}
.cookie-btn-secondary {
  background: #FFD6EC;
  color: #93329E;
  border: 1px solid #debee8;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #E7C6FF;
}
.cookie-btn {
  background: #F4F1FB;
  color: #6B3E8E;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 2200;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 28px rgba(147,50,158,0.15),0 0px 0px 999vw rgba(34,34,59,0.20);
  min-width: 320px;
  max-width: 96vw;
  min-height: 250px;
  padding: 36px 28px 28px 28px;
  transform: translate(-50%,-50%) scale(1);
  transition: transform .17s, opacity .16s;
  opacity: 1;
  display: none;
}
.cookie-modal.active {
  display: block;
}
.cookie-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.33rem;
  margin-bottom: 18px;
  color: #93329E;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 0;
  font-size: 1rem;
  color: #2A263D;
}
.cookie-category .toggle {
  width: 32px; height: 18px;
  background: #EEE8F7;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-category .toggle[aria-checked="true"] {
  background: #A25FC5;
}
.cookie-category .toggle span {
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1px;
  transition: left 0.14s;
}
.cookie-category .toggle[aria-checked="true"] span {
  left: 14px;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 19px;
}
.cookie-modal-close {
  position: absolute; top: 15px; right: 16px;
  background: transparent; border: none;
  font-size: 1.45rem;
  color: #93329E;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #A25FC5; }

/* REMOVE BROWSER INPUT STYLES */
input, textarea, select {
  border: 1px solid #E7C6FF;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 1rem;
  background: #fff;
  box-shadow: none;
  margin-top: 7px;
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #93329E;
  border-color: #93329E;
}
label {
  font-weight: 500;
  color: #6B3E8E;
}

/* Responsive Typography & Element Size */
@media (max-width: 1220px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 900px) {
  .container { padding: 0 13px; }
  .section { padding: 30px 7px; }
  .footer-contact, .footer-nav { font-size: 0.94rem; }
  .card, .feature-box, .service-item, .workshop-item, .testimonial-card {
    min-width: 180px;
    padding: 22px 8px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 6px;
  }
  .card-container, .card-grid, .content-grid, .service-grid, .feature-grid, .workshop-list, .testimonial-slider, .testimonial-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .newsletter-signup, .facebook-group-link {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-social {
    gap: 8px;
  }
  .footer-nav {
    font-size: 0.92rem;
    text-align: center;
  }
  .footer-contact {
    font-size: 0.90rem;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 90vw; max-width: 97vw;
    padding: 18px 8px 14px 8px;
  }
  .section {
    margin-bottom: 20px;
    padding: 14px 2.5vw;
  }
}

/* ANIMATIONS & TRANSITIONS */
.card, .feature-box, .service-item, .workshop-item, .testimonial-card, .cookie-banner, .btn-primary, .btn-secondary, .cookie-btn, .mobile-menu {
  transition: box-shadow .24s, background .20s, transform .16s, color .15s, opacity .19s;
}
.mobile-menu,
.cookie-modal { will-change: transform, opacity; }

/* VISUAL HIERARCHY & WHITESPACE */
main > section {
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  main > section { margin-bottom: 32px; }
}
main > section:last-child {
  margin-bottom: 0;
}

/* ACCESSIBILITY */
:focus { outline: 2px solid var(--focus, #A25FC5) !important; outline-offset: 2px; }
::-webkit-input-placeholder { color:#A59AA1; opacity:1; }
::-moz-placeholder { color:#A59AA1; opacity:1; }
:-ms-input-placeholder { color:#A59AA1; opacity:1; }
::placeholder { color:#A59AA1; opacity:1; }

/* PASTEL DECORATIVE EFFECTS */
.section {
  border: 1.5px solid #E7C6FF;
}
.section:nth-child(odd) {
  background: var(--pastel-lilac, #E7C6FF);
  border: 1.5px solid #FFD6EC;
}
.section:nth-child(even) {
  background: var(--pastel-blue, #C5DFF8);
  border: 1.5px solid #D2F6C5;
}

/* MISC CORNER RADIUS FOR DREAMINESS */
.card, .feature-box, .service-item, .workshop-item, .testimonial-card, .footer-social a, .newsletter-signup, .facebook-group-link, .map-embed, .directions, .accessibility-info, .contact-info {
  border-radius: var(--radius);
}

/* VISUAL FINE-TUNING FOR SOFT/PASTEL STYLE */
.card, .feature-box, .service-item {
  background: linear-gradient(120deg, #FFF1FB 0%, #E7C6FF 100%);
  border: 1px solid #E7C6FF;
}
.card:hover, .feature-box:hover, .service-item:hover {
  background: linear-gradient(120deg, #FFD6EC 0%, #E7C6FF 100%);
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
  background: #f0eefc;
}
::-webkit-scrollbar-thumb {
  background: #E7C6FF;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD6EC;
}

/* END OF CSS */
