/* --- 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,
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;
}
html { scroll-behavior: smooth; }
body { line-height: 1.5; background: #F8F5F2; color: #3C3C3C; min-height: 100vh; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; outline: none; }
*:focus { outline: 2px solid #B3A07A; outline-offset: 2px; }

/* --- Font Faces (Google Fonts CDN fallback) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --brand-primary: #3C3C3C;
  --brand-secondary: #E8D9CE;
  --brand-accent: #B3A07A;
  --brand-white: #FFFFFF;
  --brand-background: #F8F5F2;
  --brand-highlight: #FFD86B;
  --fun-pink: #FF90AA;
  --fun-mint: #8DECD6;
  --fun-blue: #6AE0FF;
  --fun-violet: #C9B6FF;
  --header-height: 78px;
  --radius-card: 20px;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: var(--brand-background);
  color: var(--brand-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.35rem; font-weight: 700; }

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

p, li, .subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fun-blue);
  margin-bottom: 18px;
  font-style: italic;
}

/* --- Layout & Container --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 32px 0 rgba(221, 193, 162, 0.08);
  position: relative;
}
@media (max-width: 600px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 6px;
  }
}

/* --- Flexbox Layout Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: var(--radius-card);
  box-shadow: 0 6px 14px 0 rgba(179, 160, 122, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: transform 0.2s cubic-bezier(.59,-0.24,.44,1.25), box-shadow 0.2s;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 28px 0 rgba(148, 117, 53, 0.16);
}
.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;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--fun-mint);
  color: var(--brand-primary);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(106,224,255,0.09);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.04rem;
}
.testimonial-card span {
  color: var(--brand-accent);
  font-weight: 600;
  font-size: 1em;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.feature {
  background: var(--fun-pink);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 6px 16px 0 rgba(255,144,170,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 250px;
  transition: box-shadow 0.22s cubic-bezier(.41,0,.61,1.06), transform 0.2s cubic-bezier(.68,-0.55,.27,1.55);
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 12px 32px 0 rgba(255,144,170,0.27);
  transform: translateY(-5px) scale(1.05) rotate(1.5deg);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  animation: floaticon 2.8s ease-in-out infinite alternate;
}
@keyframes floaticon {
  0% { transform: translateY(0) scale(1) rotate(-2deg); }
  80% { transform: translateY(-10px) scale(1.1) rotate(4deg); }
  100% { transform: translateY(-6px) scale(1.04) rotate(-1.5deg);}
}

/* --- Navigation --- */
header {
  background: var(--brand-secondary);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 888;
  box-shadow: 0 1px 12px 0 rgba(179, 160, 122, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}
header .container a img {
  height: 54px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--fun-mint) 0%, transparent 100%);
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: linear-gradient(90deg, var(--fun-violet) 0%, var(--fun-mint) 100%);
  color: var(--brand-primary);
  box-shadow: 0 2px 10px 0 rgba(201,182,255,0.09);
}
.button-primary {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 12px 28px;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 32px;
  box-shadow: 0 6px 24px 0 rgba(150,117,53,0.14);
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.15s, transform 0.14s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}
.button-primary:hover,
.button-primary:focus {
  background: var(--fun-pink);
  color: var(--brand-primary);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 36px 0 rgba(255,144,170,0.12);
}
.button {
  padding: 10px 22px;
  background: var(--fun-blue);
  color: var(--brand-primary);
  border: none;
  border-radius: 24px;
  font-weight: 600;
  transition: background 0.12s, color 0.12s;
  margin-top: 10px;
  cursor: pointer;
}
.button:hover,
.button:focus {
  background: var(--fun-pink);
  color: var(--brand-primary);
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  background: var(--fun-pink);
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: 18px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1102;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  background: var(--fun-violet);
}
@media (max-width: 900px) {
  .main-nav,
  header .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--fun-blue);
  z-index: 1111;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.8,.09,.74,1.06);
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--fun-pink);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  align-self: flex-end;
  margin: 16px 24px;
  cursor: pointer;
  z-index: 1122;
  box-shadow: 0 2px 8px 0 rgba(255,144,170,0.06);
}
.mobile-menu-close:focus {
  background: var(--fun-violet);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 36px 40px;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand-primary);
  padding: 16px 8px;
  background: #FFF;
  border-radius: 16px;
  min-width: 200px;
  transition: background 0.11s, color 0.11s;
  margin-bottom: 4px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--fun-mint);
  color: var(--brand-accent);
}

@media (max-width: 600px) {
  .mobile-nav {
    margin: 36px 16px;
  }
}

/* --- Main & Section Spacing --- */
main {
  min-height: calc(100vh - 110px);
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 600px) {
  section {
    padding: 18px 0;
    margin-bottom: 36px;
  }
}

ul, ol {
  margin-bottom: 16px;
  margin-left: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--fun-pink);
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 1.1em;
}
ol li::before {
  display: none;
}

/* --- Buttons --- */
.button-primary, .button {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  transition: all 0.12s cubic-bezier(.68,-0.55,.27,1.55);
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(150,117,53,0.10);
  border: none;
}
.button-primary:active, .button:active {
  transform: scale(0.95);
}

/* --- Cards, Features, Testimonials --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--fun-mint);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 4px 12px 0 rgba(141,236,214,0.08);
  cursor: pointer;
  transition: box-shadow 0.17s, transform 0.17s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 22px 0 rgba(141,236,214,0.17);
  transform: translateY(-2px) scale(1.03) rotate(-0.5deg);
}
.faq-item h3 {
  margin-bottom: 9px;
  font-size: 1.14rem;
}
.faq-item p {
  font-size: 1rem;
}

/* --- Contact Details and Opening Hours --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 11px;
  margin-bottom: 0;
}
.contact-details img, .social-icons img {
  width: 22px;
  height: 22px;
}
.opening-hours {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 1em;
}

/* --- Footer --- */
footer {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 34px 0 18px 0;
  margin-top: 40px;
}
footer .container {
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--brand-accent);
  font-size: 1.02rem;
  font-family: "Montserrat", Arial, sans-serif;
  transition: color 0.12s;
}
.footer-nav a:hover {
  color: var(--fun-mint);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
}
.social-icons img {
  filter: drop-shadow(0 1px 4px rgba(179,160,122,0.09));
  background: var(--brand-secondary);
  border-radius: 50%;
  padding: 3px;
  transition: transform 0.17s;
}
.social-icons img:hover {
  transform: scale(1.2) rotate(-10deg);
}
.copyright {
  font-size: 0.92rem;
  color: var(--brand-accent);
  margin-top: 10px;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
  .card-container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .card, .feature, .testimonial-card {
    min-width: 120px;
    padding: 17px 10px;
  }
  .feature {
    max-width: 95vw;
  }
  .content-wrapper {
    gap: 10px;
  }
}

/* --- Cookie Consent Banner & Modal --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2680;
  background: var(--brand-accent);
  color: var(--brand-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 10px;
  box-shadow: 0 -2px 18px 0 rgba(150,117,53,0.21);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: bannerSlideIn 0.7s cubic-bezier(.37,1.45,.65,-0.16) both;
}
@keyframes bannerSlideIn {
  from { transform: translateY(80%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.05rem;
  color: var(--brand-white);
  text-align: center;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 18px;
  background: var(--fun-mint);
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--fun-pink);
  color: var(--brand-primary);
  transform: scale(1.08);
}
.cookie-btn.primary {
  background: var(--brand-white);
  color: var(--brand-accent);
  font-weight: 700;
  border: 2px solid var(--brand-accent);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(60,60,60, 0.48);
  z-index: 2700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: var(--brand-secondary);
  border-radius: 22px;
  min-width: 312px;
  max-width: 90vw;
  box-shadow: 0 11px 36px 0 rgba(60,60,60,0.22);
  padding: 34px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPopIn 0.49s cubic-bezier(.28,1.16,.46,1.04) both;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.92) translateY(50px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-toggle {
  width: 44px; height: 24px;
  border-radius: 24px;
  background: var(--fun-violet);
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.10s;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: 0.25s;
}
.cookie-toggle input:checked + .slider {
  transform: translateX(18px);
  background:var(--brand-accent);
}

.cookie-modal .cookie-btn {
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 88vw;
    padding: 20px 10px 18px 10px;
  }
}

/* --- Playful Animations / Micro-interactions --- */
.button-primary, .button, .feature, .card, .testimonial-card, .faq-item {
  will-change: transform;
}

.button-primary, .button {
  transition: box-shadow 0.13s, background 0.14s, color 0.13s, transform 0.14s;
}
.card, .feature, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s cubic-bezier(.57,.21,.69,1.25), transform 0.15s cubic-bezier(.43,1.25,.53,.91);
}

.card:hover, .feature:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 8px 32px 0 rgba(255,197,130,0.13), 0 0px 0px 0 #fff;
}

/* --- Utility/Helpers --- */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.grid-gap-20 { gap: 20px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}
