/*--------------------------------------------------------------
RESET & BASE
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #FFF8FA;
  color: #1B2235;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #A33E60;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #1B2235;
  text-decoration: underline;
}

/*--------------------------------------------------------------
TYPOGRAPHY
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #A33E60;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
strong {
  color: #A33E60;
  font-weight: 700;
}
.hero-subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.2rem;
  color: #1B2235;
  margin-bottom: 24px;
  line-height: 1.4;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
}

/* Fun, playful heading animation */
h1, h2 {
  animation: pop-in 0.7s cubic-bezier(.6,-0.3,.5,1.8);
}
@keyframes pop-in {
  0% { transform: scaleY(0.95) translateY(10px); opacity: 0; }
  100% { transform: scaleY(1) translateY(0); opacity: 1; }
}

/*--------------------------------------------------------------
LAYOUT CONTAINERS
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #E4C8D1;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px 0 rgba(163,62,96,0.07);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(163,62,96,0.06);
  transition: box-shadow 0.25s, transform 0.18s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 10px 28px 0 rgba(163,62,96,0.18);
  transform: translateY(-6px) scale(1.03);
}
.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;
  background: #FFF;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(163,62,96,0.1);
  margin-bottom: 20px;
  color: #1B2235;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------------------------------
HEADER & NAVIGATION
--------------------------------------------------------------*/
header {
  width: 100%;
  background: #A33E60;
  color: #FFF;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
header img {
  height: 52px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fff;
  color: #A33E60;
}
.cta-btn {
  background: #E4C8D1;
  color: #A33E60;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 20px;
  padding: 11px 32px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(163,62,96,0.05);
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A33E60;
  color: #fff;
  box-shadow: 0 8px 24px rgba(163,62,96,0.21);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  background: #E4C8D1;
  color: #A33E60;
  border: none;
  border-radius: 50%;
  padding: 8px 14px;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  margin-left: 12px;
  box-shadow: 0 1px 8px rgba(163,62,96,0.13);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #A33E60; color:#fff; }

/*--------------------------------------------------------------
MOBILE NAVIGATION / HAMBURGER MENU
--------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.71,-0.04,.26,1.15);
  box-shadow: 2px 0 16px rgba(163,62,96,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 26px;
  background: #E4C8D1;
  color: #A33E60;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1200;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A33E60;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 92px;
  width: 100%;
  padding-left: 32px;
  padding-right: 16px;
}
.mobile-nav a {
  color: #A33E60;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  padding: 9px 0;
  border-radius: 10px;
  transition: background 0.15s, color 0.16s;
  font-weight: 700;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4C8D1;
  color: #1B2235;
  padding-left: 8px;
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/
footer {
  background: #1B2235;
  color: #fff;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 32px 20px 18px 20px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.87;
  border-radius: 6px;
  padding: 6px 11px;
  transition: background 0.13s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E4C8D1;
  color: #A33E60;
}
.footer-contact p, .footer-contact a { color: #fff; opacity: 0.85; font-size: 0.98rem; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social span { font-size: 1rem; margin-right: 4px; color: #E4C8D1; font-weight: bold; }
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: brightness(1) contrast(0.96);
  transition: filter 0.18s, transform 0.18s;
}
.footer-social a img:hover, .footer-social a img:focus {
  filter: brightness(1.12) contrast(1.2);
  transform: scale(1.05) rotate(-7deg);
}

/*--------------------------------------------------------------
CARDS, GRIDS & TESTIMONIALS
--------------------------------------------------------------*/
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(163,62,96,0.10);
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px #A33E6017;
  transform: translateY(-3px) scale(1.03);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  color: #1B2235;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(163,62,96,0.15);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #A33E60;
  font-style: italic;
  margin: 0;
  flex: 1 1 auto;
}
.testimonial-card strong {
  color: #A33E60;
}
.testimonial-card span {
  font-size: 0.97rem;
  opacity: 0.78;
  white-space: nowrap;
}

.feature-item strong { font-size: 1.06rem; }

/* playful shadow/bounce hover on cards & testimonials */
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px #A33E6017;
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}

/*--------------------------------------------------------------
BUTTONS & CTAS
--------------------------------------------------------------*/
.cta-btn, .btn, button, input[type='submit'], input[type='button'] {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 11px 28px;
  background: #E4C8D1;
  color: #A33E60;
  box-shadow: 0 3px 14px rgba(163,62,96,0.12);
  font-size: 1.07rem;
  cursor: pointer;
  transition: all 0.16s cubic-bezier(.77,.03,.44,.98);
  outline: none;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus,
button:hover, button:focus, input[type='submit']:hover, input[type='button']:hover {
  color: #fff;
  background: #A33E60;
  box-shadow: 0 8px 24px #A33E601A;
  transform: scale(1.04) translateY(-3px);
}

/* playful scale on cta */
.cta-btn {
  animation: cta-bounce 2.6s cubic-bezier(.45,.05,.51,1.38) 1.3s 1 both;
}
@keyframes cta-bounce {
  0% { transform: scale(0.94); filter: brightness(1.12); }
  50% { transform: scale(1.07); filter: brightness(1.21); }
  90% { transform: scale(0.98); }
  100% { transform: scale(1); filter: none; }
}

/*--------------------------------------------------------------
FORMS (if any)
--------------------------------------------------------------*/
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 12px;
  border: 1.5px solid #E4C8D1;
  background: #fff;
  color: #1B2235;
  padding: 11px 18px;
  font-size: 1rem;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.19s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A33E60;
  box-shadow: 0 2px 12px #A33E6011;
}

/*--------------------------------------------------------------
LISTS
--------------------------------------------------------------*/
ul {
  padding-left: 1.1em;
  margin-bottom: 18px;
  list-style: disc inside circle;
}
ul li {
  margin-bottom: 9px;
  font-size: 1.05rem;
  padding-left: 0.25em;
  position: relative;
}
ul li::marker {
  color: #A33E60;
  font-size: 1.11em;
}

/* playful list bullets for main sections */
.content-wrapper ul li {
  position: relative;
  padding-left: 1.2em;
}
.content-wrapper ul li::before {
  content: '•';
  color: #E4C8D1;
  font-size: 1.25em;
  font-weight: bold;
  position: absolute;
  left: 0; top: 0.13em;
  line-height: 1;
  animation: bullet-pop 0.5s cubic-bezier(.65,-0.15,.51,1.38);
}
@keyframes bullet-pop {
  0% { transform: scale(0.7); opacity: 0.2; }
  100% { transform: scale(1); opacity: 1; }
}

/*--------------------------------------------------------------
SPACING & DEMO CLASSES
--------------------------------------------------------------*/
.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; }

/* General margins for breathing space */
section, footer, header { margin-top: 0; margin-bottom: 0; }
section { border: none; }
main section + section { margin-top: 16px; }

/*--------------------------------------------------------------
COOKIE CONSENT BANNER
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  box-shadow: 0 -3px 34px #A33E6013;
  z-index: 1600;
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #1B2235;
  animation: cookie-pop 0.4s cubic-bezier(.55,.13,.45,.98);
}
@keyframes cookie-pop {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1;
  font-size: 1.06rem;
}
.cookie-banner .cookie-btn {
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 9px 22px;
  margin-left: 8px;
  margin-right: 0;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px #A33E6013;
  transition: background 0.18s, color 0.19s, transform 0.12s;
  cursor: pointer;
}
.cookie-btn.accept { background: #A33E60; color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #92224F; color: #fff; }
.cookie-btn.reject {
  background: #E4C8D1;
  color: #A33E60;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #A33E60; color:#fff; }
.cookie-btn.settings {
  background: #fff;
  color: #A33E60;
  border: 1.5px solid #A33E60;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E4C8D1;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,34,53,0.33);
  z-index: 1700;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-pop 0.4s cubic-bezier(.51,.19,.35,1.07);
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  max-width: 440px;
  box-shadow: 0 12px 42px #A33E601C;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.33rem;
  margin-bottom: 8px;
  color: #A33E60;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #E4C8D1;
  color: #A33E60;
  border: none;
  font-size: 1.7rem;
  border-radius: 50%;
  padding: 2px 10px;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.06rem;
}
.cookie-category label { font-weight: 700; color: #1B2235; }
.cookie-category input[type='checkbox'] {
  accent-color: #A33E60;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-category.essential input[type='checkbox'] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}

/*--------------------------------------------------------------
ANIMATIONS & MICROINTERACTIONS
--------------------------------------------------------------*/
.card, .cta-btn, .testimonial-card, .footer-social img, .mobile-menu, .mobile-menu-toggle {
  transition: all 0.19s cubic-bezier(.75,.02,.5,1.19);
}
.cta-btn:active {
  transform: scale(0.98);
}

/* playful wiggle for social icons */
.footer-social a img:hover {
  animation: wiggle 0.45s cubic-bezier(.46,-0.34,.6,1.63) 1;
}
@keyframes wiggle {
  0% { transform: rotate(0) scale(1); }
  40% { transform: rotate(-7deg) scale(1.10); }
  60% { transform: rotate(8deg) scale(1.05); }
  100% { transform: rotate(0) scale(1); }
}

/*--------------------------------------------------------------
RESPONSIVE DESIGN (Mobile First)
--------------------------------------------------------------*/
@media (max-width: 1080px) {
  .container { max-width: 97vw; }
  .footer-social { flex-wrap: wrap; gap: 6px; }
  footer .content-wrapper { gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .main-nav { gap: 20px; }
  footer .content-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn { padding: 11px 18px; font-size: 1rem; }
  .container { padding: 0 10px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  footer .content-wrapper { flex-direction: column; gap: 12px; }
  .card, .text-section {
    padding: 21px 10px;
    border-radius: 14px;
  }
  .section { margin-bottom: 36px; padding: 18px 3px; }
  .card-container, .content-grid {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-social a img { width: 24px; height: 24px; }
  .footer-nav { gap: 13px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 14px 8px 10px 8px;
  }
  .cookie-banner__text { font-size: 0.98rem; }
  .cookie-modal { padding: 24px 10px 18px 10px; max-width: 99vw; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  h1 { font-size: 1.34rem; }
  .cta-btn, .btn { padding: 10px 14px; font-size: 0.98rem; }
  .section { padding: 11px 1px; margin-bottom: 18px; }
  .container { padding: 0 4px; }
  .footer-social span, .footer-contact p, .footer-contact a { font-size: 0.95rem; }
}

/*--------------------------------------------------------------
MISC
--------------------------------------------------------------*/
::-webkit-scrollbar { width: 8px; background: #E4C8D1; }
::-webkit-scrollbar-thumb { background: #A33E60; border-radius: 10px; }
::-webkit-input-placeholder { color: #A33E60; opacity: 0.7; }
::placeholder { color: #A33E60; opacity: 0.7; }

/* Accessibility focus indication */
a:focus, button:focus, .cta-btn:focus { outline: 2.5px solid #E4C8D1; outline-offset: 1px; }

/* Hide elements visually but keep accessible */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  border: 0; clip: rect(0,0,0,0);
}

/*--------------------------------------------------------------
END OF FILE
--------------------------------------------------------------*/
