/* =====================
   CSS RESET & BASE STYLES
   ===================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #20262c;
  background: #F6F6F2;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
a {
  color: #4B6B58;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #b1abc5;
  outline-offset: 3px;
}
a:hover {
  color: #213547;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
strong {
  font-weight: bold;
}
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==================  
   TYPOGRAPHY         
   ================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #213547;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.1rem;
  color: #4B6B58;
  font-style: italic;
  margin-bottom: 18px;
}
p {
  margin-bottom: 1em;
  color: #313644;
}

/* ==================
   GLOBAL SPACING 
   ================== */
.section,
.hero,
.features,
.about,
.services-home,
.services-overview,
.testimonials-section,
.trust-section,
.categories,
.products,
.promotion-offers,
.cta,
.cta-reserve,
.cta-promo,
.cta-nextsteps,
.opening-hours-section,
.thank-you-section,
.cookie-policy-section,
.privacy-policy-section,
.gdpr-section,
.terms-section,
.contact-details,
.how-to-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* ============================
   NAVIGATION & HEADER STYLES
   ============================ */
header {
  background: #f7fbfa;
  padding: 0 0 0 0;
  border-bottom: 1px solid #efeaea;
  position: relative;
  z-index: 21;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding: 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  font-size: 1rem;
  color: #213547;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #e7ebf3;
  color: #4B6B58;
}
header nav a.cta.primary {
  background: #F3DCE4;
  color: #213547;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(179,167,196, 0.12);
  margin-left: auto;
  transition: background 0.25s, color 0.18s, box-shadow 0.23s;
  padding: 10px 20px;
}
header nav a.cta.primary:hover,
header nav a.cta.primary:focus {
  background: #e9e6f7;
  color: #4B6B58;
  box-shadow: 0 4px 24px rgba(179,167,196,.15);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: #4B6B58;
  cursor: pointer;
  margin-left: auto;
  padding: 6px 12px;
  z-index: 22;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover {
  background: #f1f7f7;
}
/* -- Mobile nav overlay -- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(252,251,255,.83);
  z-index: 70;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.6,.01,.33,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: 0;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  color: #213547;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: #f1f3fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 40px;
}
.mobile-nav a {
  color: #213547;
  background: none;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #4B6B58;
  background: #f3f7fe;
  border-radius: 12px;
  padding-left: 10px;
}

/* Hide desktop nav/show mobile hamburger at mobile sizes */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  .mobile-menu {
    display: flex;
  }
}

@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =============
   HERO
   ============= */
.hero {
  background: linear-gradient(135deg, #F6F6F2 65%, #E7EBF3 95%);
  border-radius: 32px;
  box-shadow: 0 4px 40px rgba(185,200,222,0.13);
  text-align: left;
  margin-top: 32px;
}
.hero h1 {
  color: #213547;
  font-size: 2.3rem;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  color: #65887e;
}

/* Soft pastel accents in main content */
.features,
.about,
.services-home,
.categories,
.products,
.services-overview,
.promotion-offers,
.cta,
.cta-reserve,
.cta-promo,
.cta-nextsteps,
.opening-hours-section,
.thank-you-section,
.cookie-policy-section,
.privacy-policy-section,
.contact-details,
.gdpr-section,
.terms-section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(185,200,222,0.09);
  margin-bottom: 60px;
}

/* ==============
   FLEX SPACING & CARDS
   ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f4f3ff;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(141,173,204,.06);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(141,173,204,0.14);
  transform: translateY(-4px) scale(1.016);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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: 12px;
  background: #F4F4FA;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(44,64,144,0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 520px;
  color: #213547;
  font-size: 1rem;
  transition: box-shadow 0.18s, background 0.21s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 24px rgba(74,132,140,0.11);
  background: #e8f2ea;
}
.testimonial-card p{
  color: #213547;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #4B6B58;
  font-size: 0.93em;
  font-family: 'Montserrat';
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Trust Icons/Sections */
.trust-section ul,
.features ul,
.categories ul,
.services-overview ul,
.how-to-section ul,
.products .product-controls,
.products .product-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  list-style: none;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
.trust-section ul li,
.features ul li,
.categories ul li,
.services-overview ul li,
.how-to-section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #E9F4F3;
  border-radius: 13px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #213547;
  min-width: 220px;
  margin-bottom: 0;
}
.trust-section ul li img, 
.features ul li img,
.how-to-section ul li img {
  width: 32px;
  height: 32px;
}

/* Products & Promotions */
.products .product-listings {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.products .product-listings li {
  background: #F3F4FE;
  border-radius: 16px;
  box-shadow: 0 .5px 5px rgba(141,173,204,0.05);
  padding: 18px 16px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s;
}
.products .product-listings li:hover {
  box-shadow: 0 6px 24px rgba(109,153,143,0.10);
}
.products .product-listings h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat';
  color: #4B6B58;
  margin-bottom: 2px;
}
.products .product-controls {
  gap: 26px;
  margin-bottom: 16px;
  font-size: .96rem;
  color: #69847A;
}
.products .product-controls span {
  cursor: pointer;
  padding: 0 5px;
  border-radius: 7px;
  transition: background 0.17s, color 0.18s;
}
.products .product-controls span:hover {
  background: #F3DCE4;
  color: #213547;
}

/* Service Highlights (homepage) */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-highlights > div {
  background: #F7EEFA;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(104, 159, 162, 0.09);
  padding: 20px 16px;
  min-width: 200px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-highlights > div:hover {
  box-shadow: 0 4px 22px rgba(176,128,178,0.14);
  transform: translateY(-3px);
}

/* Promotions */
.promotion-card {
  background: #F3F4FE;
  border-radius: 18px;
  box-shadow: 0 .5px 5px rgba(141,173,204,0.05);
  padding: 18px 16px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.17s;
}
.promotion-card:hover {
  box-shadow: 0 4px 20px rgba(109,153,143,0.09);
  background: #F9F3F9;
}

/* Detail Stylings (ul,ol) */
ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #353a4b;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* ===============
   BUTTONS & CTAs
   =============== */
.cta,
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 42px;
  padding: 10px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.22s, color 0.18s, box-shadow 0.24s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px rgba(179,167,196, 0.12);
}
.cta.primary {
  background: #E3EBF4;
  color: #334367;
  border: 2.5px solid #EEE0F7;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #D1F0EA;
  color: #213547;
}
.cta.secondary {
  background: #F3DCE4;
  color: #4B6B58;
  border: 2.5px solid #EDE4F2;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #E2EAE1;
  color: #213547;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #fff;
  border-top: 1px solid #edeaed;
  padding: 38px 0 18px 0;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
footer nav a {
  color: #4B6B58;
  font-size: .94rem;
  padding: 4px 10px;
  border-radius: 6px;
}
footer nav a:hover,
footer nav a:focus {
  background: #F4F4FA;
  color: #213547;
}
footer p {
  font-size: 0.96em;
  color: #a3abbc;
  margin-top: 10px;
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff7fc;
  border-top: 2px solid #F3DCE4;
  box-shadow: 0 -2px 30px rgba(179,167,196,0.10);
  padding: 26px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.34s cubic-bezier(.6,.01,.33,1), opacity 0.23s;
  font-size: 1rem;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #4B6B58;
  max-width: 320px;
  font-size: 1em;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  margin-left: 8px;
  border-radius: 22px;
  border: none;
  padding: 10px 24px;
  font-weight: 500;
  background: #E3EBF4;
  color: #334367;
  cursor: pointer;
  transition: background 0.21s, color 0.18s, border 0.18s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #D1F0EA;
  color: #213547;
}
.cookie-banner button.accept {
  background: #F3DCE4;
  color: #4B6B58;
}
.cookie-banner button.reject {
  background: #EDEBFA;
  color: #B66578;
}
.cookie-banner button.settings {
  background: #e7ebf3;
  color: #334367;
}

/* Cookie Modal - Preferences */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,53,71,0.23);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 201;
  animation: fadeInBg .36s cubic-bezier(.4,.01,.66,1) 1;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInBg {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  padding: 34px 24px 28px 24px;
  border-radius: 18px;
  max-width: 420px;
  box-shadow: 0 8px 48px rgba(110, 188, 171,.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInCard .27s cubic-bezier(.4,.01,.66,1) 1;
}
@keyframes fadeInCard {
  0% { transform: translateY(70px); opacity: 0; } 100% { transform: none; opacity: 1; }
}
.cookie-modal .modal-content h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #354761;
}
.cookie-modal .modal-content input[type='checkbox'][disabled] {
  accent-color: #4B6B58;
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .modal-content input[type='checkbox'] {
  width: 17px;
  height: 17px;
  accent-color: #B1ABC5;
  border-radius: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 13px;
}
.cookie-modal .modal-actions button {
  background: #D1F0EA;
  color: #213547;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 1rem;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .modal-actions button:hover {
  background: #F3DCE4;
  color: #4B6B58;
}

/* =========================
   ADDITIONAL UTILITY CLASSES & MEDIA
   ========================= */
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section,
  .hero,
  .features,
  .about,
  .services-home,
  .categories,
  .products,
  .services-overview,
  .trust-section,
  .testimonials-section,
  .promotion-offers,
  .cta,
  .cta-reserve,
  .cta-promo,
  .cta-nextsteps,
  .opening-hours-section,
  .thank-you-section,
  .cookie-policy-section,
  .privacy-policy-section,
  .contact-details,
  .gdpr-section,
  .terms-section,
  .map-location,
  .how-to-section {
    padding: 28px 10px;
    margin-bottom: 38px;
    border-radius: 19px;
  }
  .card-container, .service-highlights,
  .products .product-listings,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  header {
    padding: 0;
  }
  .hero {
    border-radius: 16px;
    margin-top: 12px;
  }
  .testimonial-card, .promotion-card, .products .product-listings li {
    max-width: 100%;
    min-width: 120px;
  }
  .trust-section ul li, .features ul li, .categories ul li, .how-to-section ul li {
    min-width: 90px;
    padding: 12px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }
  .section, .hero, .features, .about,
  .services-home, .categories, .products,
  .trust-section,
  .testimonials-section,
  .promotion-offers,
  .cta,
  .cta-reserve, .cta-promo, .cta-nextsteps,
  .opening-hours-section,
  .thank-you-section,
  .cookie-policy-section,
  .privacy-policy-section,
  .contact-details,
  .gdpr-section,
  .terms-section,
  .how-to-section {
    padding: 14px 3vw;
    margin-bottom: 22px;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
  }
  .cookie-modal .modal-content {
    padding: 14px 6px 18px 6px;
  }
}

/* Hiding things for accessibility or animation purposes */
[hidden] { display: none !important; }

/* Accessibility: Focus outline for keyboard */
:focus-visible {
  outline: 2px solid #A3C6F3;
  outline-offset: 2px;
}

/***********************
  END CSS
**********************/
