/* =========================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #2B3B48;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
}
a {
  color: #F9AFAE;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.42,0,.58,1);
}
a:hover {
  color: #E6515E;
  text-decoration: underline;
}
strong {
  font-weight: bold;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2B3B48;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  color: #E6515E;
  text-shadow: 0 4px 24px rgba(249,175,174,0.08);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: #2B3B48;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  color: #F88B4B;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  color: #2B3B48;
}
p, .text-section p {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 12px;
  color: #29313f;
}

/* Container Sizing */
.container {
  max-width: 1220px;
  padding-left: 18px;
  padding-right: 18px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   NAVIGATION & HEADER
   ========================= */
header {
  background: #fff;
  box-shadow: 0 6px 20px rgba(249, 175, 174, 0.07);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 0 14px 0;
}
.main-nav img {
  height: 40px;
  margin-right: 28px;
  transition: transform 0.1s;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #2B3B48;
  padding: 8px 5px;
  border-radius: 4px;
  background: none;
  transition: background 0.18s, color 0.2s;
  position: relative;
}
.main-nav a:hover:not(.btn-primary) {
  background: #F9AFAE;
  color: #E6515E;
}
/* Primary nav CTA */
.btn-primary {
  background: #E6515E;
  color: #fff !important;
  padding: 9px 26px;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249,175,174,0.11);
  transition: background 0.15s, box-shadow 0.2s, transform 0.14s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FF4D66;
  color: #fff;
  box-shadow: 0 12px 32px rgba(249,175,174,0.18);
  outline: none;
  transform: translateY(-2px) scale(1.07);
}
.btn-secondary {
  background: #F9AFAE;
  color: #2B3B48 !important;
  padding: 9px 26px;
  border-radius: 28px;
  font-weight: bold;
  font-family: 'Playfair Display', 'Georgia', serif;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(183,95,69,0.06);
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #EAD9CB;
  color: #E6515E !important;
  transform: translateY(-1.5px) scale(1.05);
  outline: none;
}

/* =========================
   BURGER MOBILE MENU
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #E6515E;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 105;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #f9afae;
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 110;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.72,-0.12,.5,1.36), opacity 0.23s cubic-bezier(.72,-0.12,.5,1.36);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  padding-left: 0;
  box-shadow: 0 10px 40px rgba(44,46,56,0.18);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 26px;
  margin-top: 10px;
  background: none;
  color: #E6515E;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  padding: 7px 18px;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F9AFAE;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 36px 24px 36px;
  width: 100vw;
}
.mobile-nav a {
  padding: 18px 4px 12px 4px;
  font-size: 1.25rem;
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #2B3B48;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9AFAE;
  color: #E6515E;
  outline: none;
}

/* =========================
   HERO & MAIN LAYOUT
   ========================= */
.hero {
  background: #F9AFAE;
  background-image: none;
  padding: 0;
}
.hero .container {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 740px;
}
.hero h1 {
  color: #E6515E;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
}
.hero p {
  color: #2B3B48;
  font-size: 1.17rem;
}

/* =========================
   FLEXBOX SECTION PATTERNS
   ========================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 22px rgba(249,175,174,0.07);
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 10px 40px rgba(249,175,174,0.15);
  transform: translateY(-2px) scale(1.025);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #EAD9CB;
  color: #18181b;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(44,46,56,0.10);
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(249,175,174,0.13);
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   FEATURE GRID / ICON FEATURES
   ========================= */
.features {
  background: #fff;
  padding: 0;
  margin-top: -10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 8px;
  margin-bottom: 0;
}
.feature {
  flex: 1 1 210px;
  min-width: 230px;
  background: #FFE5E1;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(249,175,174,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 18px 16px;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.13s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 8px 34px rgba(249,175,174,0.17);
  transform: translateY(-3px) scale(1.03);
}
.feature img {
  height: 52px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.14rem;
  color: #E6515E;
  margin: 0 0 6px 0;
  font-family: 'Playfair Display', serif;
}
.feature p {
  color: #2B3B48;
  text-align: center;
  font-size: 1rem;
}

/* =========================
   LAYOUT UTILITIES
   ========================= */
ul, ol {
  margin-bottom: 20px;
}
.text-section, .legal .text-section {
  margin: 0 0 12px 0;
  color: #2B3B48;
}
.section h2, .section h3 {
  margin-bottom: 18px;
}

/* =========================
   TESTIMONIAL SLIDER & CARDS
   ========================= */
.testimonials {
  background: #fff;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-meta {
  font-size: 1.01rem;
  font-weight: bold;
  color: #2B3B48;
  margin-top: 7px;
}
.star-rating {
  font-size: 1.3rem;
  color: #FBB040;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* =========================
   ABOUT/TEAM MINI-PROFILE
   ========================= */
.mini-team {
  background: #EAD9CB;
  border-radius: 14px;
  padding: 17px 22px;
  margin-top: 24px;
  margin-bottom: 14px;
}
.mini-team h3 {
  color: #E6515E;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.mini-team ul {
  list-style: disc inside;
  margin-bottom: 13px;
}

/* =========================
   CONTACT INFO & MAP
   ========================= */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 16px 0 22px 0;
  font-size: 1.04rem;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2B3B48;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 3px;
}
.map-embed {
  background: #F9AFAE;
  border-radius: 10px;
  padding: 11px 15px;
  margin: 16px 0;
  color: #2B3B48;
}
.opening-hours {
  margin-bottom: 12px;
  color: #2B3B48;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
}
.opening-hours img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* =========================
   CTA SECTION
   ========================= */
.cta {
  background: #FFE5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 0;
  margin-bottom: 0;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #2B3B48;
  color: #fff;
  padding: 0 0 0 0;
  width: 100%;
  font-size: 1rem;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 0;
  font-size: 1.03rem;
  border-radius: 3px;
  transition: background 0.15s, color 0.2s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: #F9AFAE;
  color: #2B3B48 !important;
  outline: none;
  text-decoration: underline;
}
.contact-short {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 1.05rem;
}
.contact-short span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-links a img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.93;
  transition: filter 0.12s, opacity 0.13s, transform 0.13s;
}
.social-links a:hover img,
.social-links a:focus img {
  filter: none;
  opacity: 1;
  transform: scale(1.09);
}
footer .copyright {
  margin-top: 18px;
  font-size: 0.97rem;
  color: #EAD9CB;
}

/* =========================
   FAQ LIST/ACCORDEON
   ========================= */
.faq-list, .accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.accordion-faq strong, .faq-list strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #E6515E;
  margin-bottom: 4px;
  cursor: pointer;
  transition: color 0.13s;
}
.accordion-faq strong:hover, .faq-list strong:hover {
  color: #F88B4B;
}
.contact-for-info {
  margin-top: 17px;
  font-size: 1.03rem;
}
.contact-for-info a {
  font-weight: bold;
  color: #E6515E;
  text-decoration: underline;
  font-family: 'Playfair Display', serif;
  margin-left: 6px;
}

/* =========================
   TIMELINE/STEP PROCESS
   ========================= */
.step-by-step-process {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0;
  list-style: decimal inside;
}
.step-by-step-process li {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2B3B48;
}
.step-by-step-process img {
  width: 28px;
  height: 28px;
}

/* =========================
   CARDS (FOR THX/FEATURES/...)
   ========================= */
.thankyou-section {
  background: #FFE5E1;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-section .content-wrapper {
  align-items: center;
  text-align: center;
  margin: 30px 0;
}
.thankyou-section h1 {
  color: #E6515E;
  font-size: 2.1rem;
}

/* LEGAL PAGE - TEXT BLOCKS */
.legal {
  background: #fff;
}
.legal .text-section h2 {
  color: #F88B4B;
  font-size: 1.2rem;
  margin-top: 22px;
  margin-bottom: 6px;
}

/* =========================
   COOKIE CONSENT FOOTER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1200;
  width: 100vw;
  background: #2B3B48;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(44,46,56,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 21px 18px 18px 18px;
  font-size: 1.05rem;
  transition: transform 0.24s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 116px;
  padding: 8px 17px;
  border-radius: 20px;
  border: none;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 2px;
  background: #F9AFAE;
  color: #2B3B48;
  transition: background 0.13s, color 0.13s, transform 0.12s;
  box-shadow: 0 4px 20px rgba(249,175,174,0.13);
}
.cookie-btn.accept {
  background: #44D18D;
  color: #fff;
}
.cookie-btn.reject {
  background: #E6515E;
  color: #fff;
}
.cookie-btn.settings {
  background: #ffeb99;
  color: #2B3B48;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #EAD9CB;
  color: #E6515E;
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,46,56,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  padding: 35px 28px 23px 28px;
  max-width: 420px;
  min-width: 260px;
  color: #2B3B48;
  box-shadow: 0 8px 40px rgba(44,46,56,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: #E6515E;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1.07rem;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-modal .category label {
  font-weight: 600;
  color: #2B3B48;
  cursor: pointer;
}
.cookie-modal .category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F9AFAE;
  border-radius: 6px;
  margin-right: 3px;
}
.cookie-modal .category.essential label {
  color: #bdbdbd;
  cursor: not-allowed;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  color: #E6515E;
  font-size: 2rem;
  cursor: pointer;
  padding: 3px 9px;
  border-radius: 8px;
  margin-top: -20px;
  margin-bottom: -8px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal:hover {
  background: #ffe5e1;
}
.cookie-modal .actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* =========================
   RESPONSIVE (MOBILE FIRST)
   ========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  .feature-grid {
    gap: 18px;
  }
  footer .content-wrapper, .contact-info {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
  }
  .contact-short {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .hero .container {
    padding-top: 38px;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
  .feature-grid, .testimonial-slider, .content-grid {
    gap: 11px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature {
    min-width: 160px;
  }
  .testimonial-slider {
    flex-direction: column;
  }
  .contact-info {
    gap: 11px;
    flex-direction: column;
  }
  .cta {
    padding: 20px 0;
  }
  .about .mini-team {
    padding: 10px 7px;
  }
  .thankyou-section {
    padding: 18px 0;
  }
  .thankyou-section h1 {
    font-size: 1.3rem;
  }
  .testimonials .testimonial-card,
  .gallery-testimonials .testimonial-card,
  .about .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 15px;
  }
  .testimonial-card {
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .footer-menu, .contact-short, .social-links {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal {
    padding: 18px 7px 13px 7px;
    min-width: 0;
    width: 96vw;
  }
  .hero .content-wrapper {
    padding: 0 0;
  }
}

/* ===============
   MICRO-INTERACTION EFFECTS
   =============== */
.btn-primary, .btn-secondary, .cookie-btn {
  will-change: background, color, transform;
}

/* Hide scroll when mobile menu or cookie modal open */
body.menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

/* =========================
   TRANSITIONS
   ========================= */
main, section, .section, .hero, .feature, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s, transform 0.12s;
}
