/* ============ 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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(135deg,#F3E6F5 0%,#fff 100%);
  color: #3D2153;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #8D4F85;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #3D2153;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.5em;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #8D4F85;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
td {
  background: #F3E6F5;
  color: #3D2153;
  font-size: 1rem;
}

/* ============ TYPOGRAPHY ============ */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #3D2153;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8D4F85;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #3D2153;
  margin-bottom: 16px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #3D2153;
  font-weight: 500;
}
p, li, span, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #3D2153;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ============ CONTAINER & LAYOUT ============ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(141,79,133,0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 26px 6px;
    border-radius: 18px;
  }
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(141,79,133,0.10);
  background: #fff;
  padding: 28px 22px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(141,79,133,0.16);
  transform: translateY(-3px) scale(1.02);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3E6F5;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(141,79,133,0.06);
  margin-bottom: 20px;
  flex: 1 1 250px;
  flex-direction: column;
}
.testimonial-card p {
  color: #3D2153;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.testimonial-card span {
  color: #8D4F85;
  font-size: 0.98rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing for cards and all sections */
.card, .testimonial-card, .feature-item, .section, .content-wrapper > * {
  margin-bottom: 20px;
}
.content-wrapper > :last-child, .section > :last-child, .card:last-child, .testimonial-card:last-child, .feature-item:last-child {
  margin-bottom: 0;
}

/* ============ HEADER & NAVIGATION ============ */
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(141,79,133,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #3D2153;
  padding: 8px 12px;
  border-radius: 6px;
}
nav a.cta-primary {
  background: linear-gradient(90deg, #8D4F85 0%, #3D2153 95%);
  color: #fff;
  padding: 10px 28px;
  font-family: 'Playfair Display', serif;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(141,79,133,0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: linear-gradient(90deg, #3D2153 0%, #8D4F85 95%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(61,33,83,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* Hide mobile toggle on desktop */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #8D4F85;
  font-size: 2rem;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 12px;
  transition: background 0.18s;
  z-index: 60;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #8D4F85;
}

@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.4,0,.4,1);
  box-shadow: 0 12px 64px rgba(61,33,83,0.20);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  color: #8D4F85;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 16px 22px 6px 22px;
  align-self: flex-end;
  transition: background 0.16s;
  border-radius: 12px;
  z-index: 1300;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #3D2153;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3E6F5;
  color: #8D4F85;
  border-radius: 10px;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============ HERO SECTION ============ */
.hero-section {
  min-height: 425px;
  background: linear-gradient(112deg, #F3E6F5 60%, #8D4F85 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 56px 0;
  margin-bottom: 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 14px 60px rgba(141,79,133,0.13);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.hero-section h1 {
  color: #3D2153;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-section .cta-primary {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 44px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section .subheadline {
    font-size: 1.05rem;
  }
}

/* ============ BUTTONS & CALL TO ACTIONS ============ */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #8D4F85 12%, #3D2153 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 18px;
  padding: 14px 38px;
  margin-top: 6px;
  box-shadow: 0 2px 14px rgba(61,33,83,0.11);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.17s, transform 0.16s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #3D2153 5%, #8D4F85 98%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(141,79,133,0.19);
  transform: translateY(-2px) scale(1.03);
}

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(90deg, #F3E6F5 70%, #8D4F85 100%);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  padding: 48px 12px 24px 12px;
  box-shadow: 0 -14px 60px rgba(141,79,133,0.09);
  color: #3D2153;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  max-height: 56px;
  margin-bottom: 14px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-menu a {
  color: #8D4F85;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 9px;
  transition: color 0.2s, background 0.16s;
}
.footer-menu a:hover {
  background: #8D4F85;
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #3D2153;
  font-size: 0.98rem;
  margin-bottom: 7px;
}
.footer-contact a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  footer {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 26px 6px 16px 6px;
  }
}

/* ============ BLOG CATEGORIES ============ */
.blog-categories {
  margin-top: 10px;
  font-size: 1rem;
  color: #8D4F85;
}
.blog-categories span {
  background: #E4CBE8;
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: 6px;
  font-size: 0.99rem;
}

/* ============ MAP PLACEHOLDER ============ */
.map-placeholder {
  background: #F3E6F5;
  border: 1px solid #E4CBE8;
  border-radius: 18px;
  padding: 24px;
  color: #3D2153;
  font-style: italic;
  margin-bottom: 18px;
  font-size: 1rem;
}

/* ============ RESPONSIVE UTILITIES ============ */
@media (max-width: 992px) {
  .footer-main, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section { padding: 18px 4px; }
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #3D2153;
  box-shadow: 0 -4px 24px rgba(141,79,133,0.13);
  z-index: 2000;
  width: 100vw;
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookieBannerIn 0.55s cubic-bezier(.4,0,.4,1);
}
@keyframes cookieBannerIn {0%{transform: translateY(100%);}100%{transform: translateY(0);}}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept {
  background: #8D4F85;
  color: #fff;
}
.cookie-btn.reject {
  background: #3D2153;
  color: #fff;
}
.cookie-btn.settings {
  background: #F3E6F5;
  color: #8D4F85;
  border: 1px solid #8D4F85;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.95);
  outline: none;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 18px 4px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* ============ COOKIE MODAL ============ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(61,33,83,0.38);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.3s;
}
@keyframes cookieFadeIn { 0%{opacity: 0;} 100%{opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(141,79,133,0.18);
  padding: 34px 28px 28px 28px;
  min-width: 320px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalPop 0.32s cubic-bezier(.4,0,1,1);
}
@keyframes cookieModalPop {0%{transform:scale(0.95);opacity:0.2;}100%{transform:scale(1);opacity:1;}}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #8D4F85;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 12px;
  z-index: 3;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #8D4F85;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-category label {
  color: #3D2153;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #F3E6F5;
  position: relative;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #8D4F85;
  transition: background 0.2s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #8D4F85;
  border-radius: 50%;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle input:checked + .slider {
  left: 22px;
  background: #3D2153;
}
.cookie-category .info {
  font-size: 0.93rem;
  color: #85547f;
  margin-left: 8px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  min-width: 110px;
}

/* ============ MICRO-INTERACTIONS ============ */
.card, .testimonial-card, .cta-primary, .cookie-btn, .mobile-menu, .mobile-menu-close, nav a, .footer-menu a {
  transition: background 0.25s, box-shadow 0.19s, color 0.21s, border 0.2s, transform 0.19s;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 10px;
  background: #F3E6F5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #E4CBE8;
  border-radius: 8px;
}

/* ============ SELECTION COLORS ============ */
::selection {
  background: #F3E6F5;
  color: #3D2153;
}

/* ============ CUSTOM FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&family=Playfair+Display:wght@600;700&display=swap');

/* =================== END MAIN CSS =================== */
