/* ===== 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFBFC;
  color: #205072;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
}

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

/* ====== PASTEL THEME VARIABLES ====== */
:root {
  --primary: #205072;
  --secondary: #329D9C;
  --accent: #F6F5F2;
  --pastel-blue: #A7C7E7;
  --pastel-green: #BFE4CF;
  --pastel-yellow: #FFF7C3;
  --pastel-lilac: #F4E6FF;
  --pastel-pink: #F7D2D6;
  --pastel-mint: #E4F9F5;
  --text-dark: #205072;
  --text-muted: #626F7A;
  --bg-default: #FAFBFC;
  --bg-light: #F6F5F2;
  --shadow-soft: 0 2px 12px rgba(50, 157, 156, 0.08);
  --transition: all 0.18s cubic-bezier(.47,1.64,.41,.8);
  --radius-base: 16px;
  --radius-max: 999px;
  --z-cookie: 9999;
  --z-menu: 10001;
}

/* ====== SPACING & CONTAINER STYLES ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  /* Optional gradient overlay, often pastel-mint */
  position: relative;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
@media (max-width: 600px) {
  h1, .hero h1 {
    font-size: 1.9rem;
  }
}
h2, .subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--secondary);
}
@media (max-width: 600px) {
  h2, .subtitle {
    font-size: 1.35rem;
  }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 1rem;
}
strong {
  color: var(--secondary);
}
.subtitle {
  color: var(--pastel-blue);
  font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 48px 0 36px 0;
  background: linear-gradient(120deg, var(--accent) 65%, var(--pastel-mint) 100%);
  border-radius: 0 0 var(--radius-base) var(--radius-base);
  margin-bottom: 50px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero h1, .hero .subtitle {
  text-align: center;
}
.hero .cta-btn {
  margin-top: 24px;
}

/* ===== HEADER, NAV & LOGO ===== */
header {
  background: var(--bg-default);
  padding: 0;
  border-bottom: 1px solid #e9ecef;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}
nav .logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-max);
  background: var(--pastel-mint);
  box-shadow: 0 2px 8px rgba(32, 80, 114, 0.09);
  padding: 4px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 14px;
  margin-right: 14px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: var(--radius-max);
  padding: 8px 14px;
  transition: background 0.15s, color 0.12s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-max);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  box-shadow: 0 2px 12px rgba(50, 157, 156, 0.14);
  transition: var(--transition);
  margin-left: 12px;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(32,80,114,0.16), 0 2px 6px rgba(50, 157, 156, 0.08);
}

/* ===== MOBILE MENU & HAMBURGER ===== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: var(--z-menu);
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-max);
  padding: 10px 12px;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ecfdff 55%, var(--pastel-blue) 100%);
  box-shadow: 0 0 80px 0 rgba(32,80,114,0.12);
  z-index: var(--z-menu);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.47,1.64,.41,.8);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 10px 0;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: var(--radius-max);
  font-size: 1.85rem;
  padding: 2px 18px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-max);
  background: var(--accent);
  margin-bottom: 4px;
  transition: background 0.18s, color 0.11s;
  min-width: 155px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 900px) {
  nav ul, nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ======= FOOTER ======= */
footer {
  background: linear-gradient(90deg, var(--accent) 60%, var(--pastel-blue) 100%);
  padding: 28px 0 0 0;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
  box-shadow: 0 -2px 16px rgba(32, 80, 114, 0.08);
  margin-top: 40px;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px 16px 12px;
}
footer img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
}
footer nav a {
  color: var(--primary);
  opacity: 0.92;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.copyright {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ======= FEATURE, SERVICES, CARD & FLEX LAYOUTS ======= */
.feature-grid,
.services-list,
.equipment-list,
.tipps-list,
.park-list,
.process-steps,
.usp-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.feature-grid li, .services-list li, .equipment-list li, .tipps-list li, .park-list li, .process-steps li, .usp-list li {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px 20px 18px;
  min-width: 200px;
  flex: 1 1 215px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid li:hover,
.services-list li:hover,
.equipment-list li:hover {
  box-shadow: 0 6px 22px rgba(80, 210, 207, 0.11);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img,
.services-list img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  background: var(--pastel-mint);
  border-radius: var(--radius-max);
  box-shadow: 0 2px 8px rgba(50,157,156,0.08);
  align-self: flex-start;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.09rem;
  margin-left: 8px;
}
@media (max-width: 900px) {
  .feature-grid,
  .services-list,
  .equipment-list,
  .tipps-list,
  .park-list,
  .process-steps,
  .usp-list ul {
    flex-direction: column;
    gap: 14px;
  }
}

/* ====== GENERIC CONTENT WRAPPER ====== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}

/* ====== FLEXBOX UTILITY - MANDATORY CLASSES ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(80, 210, 207, 0.11);
  transform: translateY(-4px) scale(1.019);
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= TESTIMONIALS ======= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: linear-gradient(100deg, #fff 85%, var(--pastel-lilac) 100%);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  min-width: 250px;
  max-width: 410px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: center;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--secondary);
}
.rating-overview {
  background: var(--pastel-green);
  border-radius: var(--radius-base);
  padding: 16px 18px;
  font-size: 1.12rem;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(32,80,114,0.07);
  max-width: 400px;
}
.rating-overview strong {
  color: var(--primary);
}
.rating-overview p {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ======= BUTTONS, LINKS & ANIMATIONS ======= */
button, .cta-btn, .cookie-btn, .modal-btn {
  cursor: pointer;
  transition: background 0.2s, color 0.13s, box-shadow 0.19s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* ====== CHECKLIST & DOWNLOADS ====== */
.checklist-downloads {
  background: var(--pastel-mint);
  border-radius: var(--radius-base);
  padding: 18px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.checklist-downloads a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.14s;
}
.checklist-downloads a:hover {  color: var(--secondary); }

/* ====== MAP EMBED/OVERVIEW ====== */
.map-overview, .map-embed {
  background: var(--pastel-yellow);
  border-radius: var(--radius-base);
  padding: 16px 14px;
  margin-top: 8px;
}

/* ====== MODALS (for Cookie Settings) ====== */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: var(--z-cookie)+1;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 80, 114, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 0.27s;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.3s;
}
.cookie-modal-content {
  background: linear-gradient(115deg,#fff 80%, var(--pastel-blue) 100%);
  border-radius: var(--radius-base);
  box-shadow: 0 8px 32px rgba(32,80,114,0.13);
  padding: 36px 24px 28px 24px;
  max-width: 400px;
  min-width: 300px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--secondary);
  font-size: 1.23rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal-content li strong {
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--pastel-blue);
  color: var(--primary);
  font-size: 1.4rem;
  border-radius: var(--radius-max);
  border: none;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover {
  background: var(--secondary);
  color: #fff;
}
.modal-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-max);
  padding: 8px 24px;
  margin-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
}
.modal-btn:hover, .modal-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,var(--pastel-blue) 60%, var(--pastel-green) 100%);
  color: var(--primary);
  z-index: var(--z-cookie);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 22px 20px 22px 30px;
  box-shadow: 0 -4px 24px rgba(32, 80, 114, 0.07);
  font-size: 1rem;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
  transition: transform 0.37s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
}
.cookie-banner .cookie-btn {
  margin-left: 14px;
  margin-right: 8px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-max);
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(50,157,156,0.09);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
  margin-right: 4px;
}
.cookie-banner .cookie-settings:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
    gap: 12px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-btn {
    margin: 2px 8px 2px 0;
    width: 90%;
    max-width: 190px;
  }
}

/* ===== FORM STYLES ===== */
input, select, textarea {
  border-radius: var(--radius-base);
  padding: 10px 12px;
  border: 1px solid #c9e3ec;
  background: #fff;
  width: 100%;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(50,157,156,0.05);
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(50,157,156,0.09);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

/* ====== LEGAL TEXT ====== */
.legal-text, .text-section, .confirmation-message {
  background: #fff;
  border-radius: var(--radius-base);
  padding: 26px 18px 18px 18px;
  font-size: 1rem;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}

/* ===== LISTS & UL ====== */
.text-section ul, .legal-text ul, .confirmation-message ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 20px;
}
.text-section ul li, .legal-text ul li, .confirmation-message ul li {
  list-style: disc inside;
  margin-bottom: 7px;
}

/* ====== SERVICE TEASERS ====== */
.service-teaser {
  background: var(--pastel-yellow);
  border-radius: var(--radius-base);
  padding: 14px 12px 10px 12px;
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* ======= USP LISTS ======= */
.usp-list ul {
  gap: 18px;
}

/* ====== RESPONSIVENESS ====== */
@media (max-width: 700px) {
  .container { padding: 0 4px; }
  .section { margin-bottom: 28px; padding: 24px 6px; }
  .footer-container { padding: 0 6px 12px 6px; }
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 500px) {
  .hero h1, h1 {
    font-size: 1.25rem;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    padding: 16px 6px;
  }
  .rating-overview {
    max-width: 94vw;
    padding: 10px 8px;
    font-size: 1rem;
  }
}

/* ===== MICRO-INTERACTIONS (hover, transition) ===== */
a, button, .cta-btn, .cookie-btn, .modal-btn {
  transition: var(--transition);
}
@media (max-width: 600px) {
  nav .logo img, footer img {
    height: 38px;
  }
}

/* ===== SPACING TO PREVENT OVERLAP ===== */
.section + .section, .section + main .section {
  margin-top: 24px;
}
.card + .card, .testimonial-card + .testimonial-card, .feature-grid li + .feature-grid li {
  margin-left: 0;
}

/* ===== Z-INDEX GUARANTEES ===== */
.mobile-menu, .cookie-modal { z-index: var(--z-menu); }
.cookie-banner { z-index: var(--z-cookie); }

/* ===== END ===== */
