/* =========================================================
   Frosty Wall Erlebniswelten: Scandinavian Clean UI Style CSS
   Author: Professional Website Developer
   =========================================================
*/

/* === CSS RESET & BASE 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; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #faf7f3;
  color: #22413D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border: none; }

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =====================
   VARIABLES (FALLBACKS)
   ===================== */
:root {
  --fw-primary: #22413D;
  --fw-secondary: #9BC6B0;
  --fw-accent: #FAF7F3;
  --fw-font-display: 'Montserrat', Arial, sans-serif;
  --fw-font-body: 'Roboto', Arial, sans-serif;
  --fw-radius: 16px;
  --fw-radius-sm: 8px;
  --fw-radius-lg: 30px;
  --fw-shadow-soft: 0 2px 16px 0 rgba(34, 65, 61, 0.07);
  --fw-shadow-card: 0 4px 20px 0 rgba(34, 65, 61, 0.09);
  --fw-gray-light: #E8F2EA;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fw-font-display);
  color: #22413D;
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 1.8rem; margin-bottom: 16px; line-height: 1.15; }
h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.18; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.2; font-weight: 500; }
h5, h6 { font-size: 1rem; font-weight: 500; }
p, ul, ol { font-size: 1rem; margin-bottom: 12px; }
strong, b { font-weight: 700; }
.text-section ul,
.text-section ol { padding-left: 22px; margin-bottom: 16px; }
.text-section li { list-style: disc; margin-bottom: 7px; }

@media (max-width: 768px) { /* adaptive font sizes */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Section Spacing, Card & Grid Flex Patterns (MANDATORY) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 350px;
  background: #fff;
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow-soft);
  padding: 24px;
}
.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;
  background: #FAF7F3;
  border: 1px solid var(--fw-gray-light);
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow-soft);
  margin-bottom: 20px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(34,65,61,.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive: column on mobile, row on desktop (for text-image-sections) */
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid,
  .text-image-section, .features {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ============ HEADER ============ */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(34,65,61,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
header a img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: var(--fw-font-display);
  font-weight: 500;
  color: #22413D;
  font-size: 1rem;
  background: transparent;
  padding: 8px 10px;
  border-radius: var(--fw-radius-sm);
  transition: background 0.2s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--fw-gray-light);
  color: var(--fw-secondary);
}
.cta-btn {
  background: var(--fw-secondary);
  color: #22413D;
  font-family: var(--fw-font-display);
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: var(--fw-radius-lg);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px 0 rgba(34,65,61,0.08);
  border: none;
  outline: none;
  transition: background .22s, box-shadow .22s, color .20s;
  cursor: pointer;
  display: inline-block;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22413D;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(34, 65, 61, 0.16);
}
.mini-cta {
  color: var(--fw-secondary);
  background: none;
  font-family: var(--fw-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: 0.005em;
  transition: color 0.2s;
}
.mini-cta:hover, .mini-cta:focus { color: #22413D; }

/* == Hamburger MENU button == */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px; right: 22px;
  z-index: 1002;
  background: var(--fw-secondary);
  color: #22413D;
  border: none;
  outline: none;
  width: 44px; height: 44px;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(34,65,61,0.10);
  cursor: pointer;
  transition: background .17s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #22413D;
  color: #fff;
}
/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1500;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 60px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
  box-shadow: 4px 0 20px rgba(34,65,61,0.10);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  border: none;
  outline: none;
  color: #22413D;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 1510;
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: background .13s, color .13s;
}
.mobile-menu-close:hover {
  background: var(--fw-gray-light);
  color: var(--fw-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 24px;
  gap: 10px;
}
.mobile-nav a {
  font-family: var(--fw-font-display);
  font-weight: 500;
  padding: 14px 6px;
  font-size: 1.2rem;
  color: #22413D;
  border-bottom: 1px solid var(--fw-gray-light);
  border-radius: 0;
  transition: background 0.19s, color 0.14s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--fw-secondary);
  background: rgba(155,198,176,.08);
}

/* Only show burger on mobile, hide nav */
@media (max-width: 900px) {
  header nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: linear-gradient(135deg, #FAF7F3 65%, #e8f2ea 100%);
  padding: 60px 0 50px 0;
  margin-bottom: 40px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}
.hero p {
  font-size: 1.12rem;
  color: #22413d;
  line-height: 1.6;
}

/* =====================
   FEATURES SECTIONS
   ===================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow-soft);
  padding: 32px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  text-align: left;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(34,65,61,0.13);
}
.feature-grid img { width: 44px; height: auto; margin-bottom: 8px; }
.features ul { list-style: none; margin-top: 16px; }
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--fw-radius-sm);
  box-shadow: var(--fw-shadow-soft);
  padding: 15px 14px;
  margin-bottom: 12px;
}
.features li:last-child { margin-bottom: 0; }
.features b { color: #22413D; }

/* =====================
   ABOUT PREVIEW, CALLOUT
   ===================== */
.about-preview, .callout {
  background: #E8F2EA;
  border-radius: var(--fw-radius);
  box-shadow: 0 2px 12px 0 rgba(34,65,61,0.05);
}
.callout ul { padding-left: 18px; }
.callout li {
  margin-bottom: 9px;
  padding-left: 4px;
  font-weight: 500;
  color: #22413D;
}
.callout a.cta-btn {
  margin-top: 16px;
  margin-left: 0;
  display: inline-block;
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials {
  background: #fff;
  border-radius: var(--fw-radius);
  padding: 40px 0 !important;
  margin-bottom: 44px;
}
.testimonials h2 { text-align: center; margin-bottom: 30px; }
.testimonials .content-wrapper {
  align-items: stretch;
}
.testimonial-card {
  background: #FAF7F3;
  color: #22413D;
  border-left: 5px solid var(--fw-secondary);
  margin: 0 auto 20px auto;
  max-width: 700px;
  font-size: 1.05rem; line-height: 1.55;
}
.testimonial-card p {
  margin: 0;
}
.testimonial-card b {
  display: block;
  margin-top: 14px;
  color: #22413D;
  font-size: 0.98rem;
  font-weight: 600;
}
.review-summary {
  margin-top: 28px;
  font-size: 1.05rem;
  color: #22413D;
  text-align: center;
  font-family: var(--fw-font-display);
}

/* =====================
   TEXT SECTIONS, GRIDS
   ===================== */
.text-section {
  display: flex; flex-direction: column;
  gap: 12px;
}
.text-section .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.address-details,
.text-section .address-details,
.text-section .phone,
.text-section .email,
.text-section .hours,
.text-section .map-pointer,
.footer-info .address, .footer-info .phone, .footer-info .email {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.text-section img { width: 24px; height: 24px; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: #faf7f3;
  border-top: 2px solid #E8F2EA;
  padding: 38px 0 10px 0;
  font-size: 15px;
  color: #22413D;
  margin-top: 35px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 46px; margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 5px;
}
.footer-nav a {
  color: #22413D;
  font-family: var(--fw-font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--fw-secondary); }
.footer-info p {
  margin-bottom: 10px;
  opacity: 0.93;
  font-size: 0.98rem;
}
.footer-newsletter p {
  font-size: 1rem;
  margin-bottom: 3px;
}
.footer-newsletter a {
  color: #22413D;
  background: var(--fw-secondary);
  padding: 9px 22px;
  border-radius: var(--fw-radius-lg);
  font-weight: 600;
  font-family: var(--fw-font-display);
  font-size: 1rem;
  transition: background 0.17s, color 0.12s;
  display: inline-block;
}
.footer-newsletter a:hover, .footer-newsletter a:focus {
  background: #22413D;
  color: #fff;
}
.footer-social {
  display: flex; gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  filter: grayscale(10%) brightness(0.9);
  transition: filter 0.18s;
  border-radius: 50%;
}
.footer-social a:hover img {
  filter: none;
  background: var(--fw-secondary);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1080px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
  }
  header .container {
    gap: 18px;
  }
}
@media (max-width: 670px) {
  .container { padding: 0 7px; }
  .section { padding: 28px 6px; }
  .hero { padding: 35px 0 27px 0; }
  .feature-grid > div, .features li {
    padding: 20px 12px;
  }
  .testimonial-card {
    padding: 14px 10px;
    max-width: 98vw;
  }
}

/* ========== BUTTONS, LINKS ========== */
button,
input[type="button"],
input[type="submit"] {
  font-weight: 600;
  font-family: var(--fw-font-display);
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: var(--fw-radius);
  padding: 10px 22px;
  background: var(--fw-secondary);
  color: #22413D;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(34,65,61,0.08);
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
}
button:hover, button:focus {
  background: #22413D;
  color: #fff;
}
a {
  transition: color 0.17s, background 0.16s;
}
a:focus { outline: 2px solid var(--fw-secondary); }

/* ========== FORM & INPUT (newsletter, contact) ========== */
input, textarea {
  border: 1px solid #E8F2EA;
  border-radius: var(--fw-radius-sm);
  padding: 10px 12px;
  font-family: var(--fw-font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  transition: border-color 0.18s;
  width: 100%;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--fw-secondary);
  background: #f2f9f6;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  color: #22413D;
  box-shadow: 0 -1px 15px 0 rgba(34,65,61,0.09);
  padding: 16px 20px;
  display: flex; flex-direction: row; align-items: center;
  gap: 36px;
  justify-content: center;
  animation: slideInBanner 0.7s cubic-bezier(.42,0,.49,1);
}
@keyframes slideInBanner {
  from { transform: translateY(100%); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 280px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: var(--fw-secondary);
  color: #22413D;
  padding: 9px 22px;
  border-radius: var(--fw-radius-sm);
  font-weight: 500;
  font-size: 0.98rem;
  margin: 0;
  box-shadow: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #22413D;
  color: #fff;
}
.cookie-banner .cookie-settings {
  color: var(--fw-secondary);
  background: transparent;
  border: 1px solid var(--fw-secondary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--fw-secondary);
  color: #22413D;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding: 14px 7px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

/* == COOKIES POPUP MODAL == */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,65,61,0.20);
  z-index: 2100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: var(--fw-radius);
  box-shadow: 0 4px 28px 0 rgba(34,65,61,0.17);
  padding: 34px 26px 22px 26px;
  width: 95vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: modalSlideIn 0.25s cubic-bezier(.6,0,.4,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(60px) scale(.98); opacity: 0 }
  to { transform: translateY(0) scale(1); opacity: 1 }
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--fw-secondary);
  width: 18px; height: 18px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.3rem;
  color: #9BC6B0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .modal-close:hover { color: #22413D; }

.cookie-modal .essential-label {
  color: #bbb;
  font-style: italic;
  font-size: 0.99rem;
}

/* =====================
   MICRO-INTERACTIONS, HOVERS, ANIMATIONS
   ===================== */
.card, .feature-grid > div, .testimonial-card, .callout, .about-preview {
  transition: box-shadow 0.22s cubic-bezier(.35,0,.25,1),
    transform 0.16s cubic-bezier(.47,0,.36,1);
}
.card:hover,
.feature-grid > div:hover,
.callout:hover,
.about-preview:hover {
  box-shadow: 0 6px 28px 0 rgba(34,65,61,0.15);
  transform: translateY(-4px) scale(1.01);
}

/* Buttons: subtle scale on hover */
.cta-btn, .footer-newsletter a, button {
  transform: none;
  transition: transform .13s cubic-bezier(.4,0,.19,1), box-shadow .13s;
}
.cta-btn:hover,
.footer-newsletter a:hover,
button:hover {
  transform: scale(1.045);
}

/* ========== Z-INDEX ========== */
header, .mobile-menu, .mobile-menu-toggle {
  z-index: 1500;
}
.cookie-banner { z-index: 2000; }
.cookie-modal-overlay { z-index: 2100; }

/* Avoid overlap of fixed elements */
body { padding-bottom: 80px; }

/* ========== ACCESSIBILITY ========== */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px dashed var(--fw-secondary);
  outline-offset: 2px;
}

/* ========== UTILITY & OVERRIDE CLASSES ========== */
.d-none { display: none !important; }
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }


/* ==== END OF CSS ==== */
