/* =============================================================== */
/* RESET & BASELINE                                              */
/* =============================================================== */

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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222F28;
  background: #F3F6EC;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #255941;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7EC850;
}
ul, ol {
  margin-left: 20px;
  padding-left: 15px;
}
strong {
  font-weight: 700;
}

section {
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #255941;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-top: 16px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
}
h4 {
  font-size: 1.125rem;
}
h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #345B3B;
  margin-bottom: 12px;
}

/* =============================================================== */
/* CONTAINER, CONTENT, LAYOUT                                    */
/* =============================================================== */

.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(37, 89, 65, 0.07);
  padding: 24px 20px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(37, 89, 65, 0.14);
}

.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, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(37,89,65,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 230px;
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(37,89,65,0.10);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

/* =============================================================== */
/* HEADER & MAIN NAVIGATION                                      */
/* =============================================================== */

header {
  width: 100%;
  background: #F3F6EC;
  border-bottom: 1px solid #E1E4D0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px 0 rgba(37, 89, 65, 0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 28px;
}
header img[alt="Voltz Surge Naturerlebnis"] {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #255941;
  padding: 6px 4px;
  border-radius: 3px;
  transition: background 0.13s, color 0.17s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E8F3DA;
  color: #7EC850;
}

.btn-primary {
  background: #255941;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  box-shadow: 0 2px 16px 0 rgba(64,145,52,0.07);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.14s, color 0.14s;
  margin-left: 18px;
  outline: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7EC850;
  color: #255941;
  box-shadow: 0 4px 20px 0 rgba(126,200,80,0.23);
}

.btn-secondary {
  background: #fff;
  color: #255941;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid #255941;
  border-radius: 24px;
  font-size: 1rem;
  box-shadow: none;
  cursor: pointer;
  transition: border 0.16s, background 0.13s, color 0.12s;
  margin-top: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E8F3DA;
  border: 2px solid #7EC850;
  color: #255941;
}

/* =============================================================== */
/* HERO SECTION                                                  */
/* =============================================================== */

.hero-section {
  background: #FFF;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 40px 0 rgba(37, 89, 65, 0.04);
  margin-top: 0;
  margin-bottom: 50px;
  padding-top: 44px;
  padding-bottom: 50px;
  min-height: 270px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero-section h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
  color: #255941;
}
.hero-section p {
  font-size: 1.18rem;
}

@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 12px 12px;
    padding: 28px 0 30px 0;
    margin-bottom: 30px;
  }
  .hero-section h1 {
    font-size: 1.55rem;
  }
}

/* =============================================================== */
/* FEATURES, CARDS, LISTS                                         */
/* =============================================================== */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
ul li, ol li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #2C3A32;
}

/* Icon-text pairs (advantages, benefits) */
.content-wrapper ul li img {
  margin-right: 14px;
  vertical-align: middle;
  width: 28px;
  height: 28px;
}
.content-wrapper ul {
  list-style-type: disc;
  margin-bottom: 10px;
}

/* Advantages (Erlebnistouren, Familien, etc.) */
.content-wrapper ul li span {
  margin-left: 7px;
}

/* =============================================================== */
/* TESTIMONIAL CARDS                                             */
/* =============================================================== */

div.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6EC;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(37,89,65,0.08);
  margin-bottom: 20px;
  color: #255941;
  font-size: 1.07rem;
  transition: box-shadow 0.17s;
}
div.testimonial-card blockquote {
  color: #255941;
}
div.testimonial-card p strong, div.testimonial-card strong {
  font-weight: 700;
  color: #255941;
}
div.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(126,200,80,0.10);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
}

/* =============================================================== */
/* FOOTER                                                        */
/* =============================================================== */

footer {
  width: 100%;
  background: #F3F6EC;
  color: #35513D;
  border-top: 1px solid #E1E4D0;
  margin-top: 60px;
  padding: 38px 0 0 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-nav a {
  color: #255941;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: #7EC850;
}
.footer-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
}
.footer-info p {
  margin-bottom: 0;
  color: #255941;
}
.footer-info div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-info img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity 0.12s;
}
.footer-info img:hover, .footer-info img:focus {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 12px;
  }
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 14px;
  }
}

/* =============================================================== */
/* RESPONSIVE DESIGN                                             */
/* =============================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }
  .section {
    padding: 26px 10px;
    margin-bottom: 32px;
  }
  .card, .feature-grid > div {
    min-width: 0px;
    width: 100%;
    padding: 16px 12px;
  }
  .main-nav {
    display: none !important;
  }
}

/* =============================================================== */
/* MOBILE MENU                                                   */
/* =============================================================== */

.mobile-menu-toggle {
  display: none; /* show only on mobile */
  background: none;
  border: none;
  color: #255941;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  z-index: 120;
  padding: 10px 12px;
  transition: background 0.11s;
  border-radius: 4px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E8F3DA;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    margin-left: auto;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: #F3F6EC;
  box-shadow: 0 14px 44px 0 rgba(37, 89, 65, 0.09);
  z-index: 1250;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5,1.2,.5,1);
  display: flex;
  flex-direction: column;
  padding: 32px 22px 22px 22px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #255941;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2000;
  cursor: pointer;
  padding: 8px 16px;
  transition: background 0.14s;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E8F3DA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 54px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #255941;
  border-radius: 4px;
  padding: 14px 2px 14px 8px;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8F3DA;
  color: #7EC850;
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none;
    pointer-events: none;
    opacity: 0;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Prevent scrolling when mobile menu open (class .menu-open on body) */
body.menu-open {
  overflow: hidden;
}

/* =============================================================== */
/* COOKIE CONSENT BANNER                                          */
/* =============================================================== */

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #E1E4D0;
  box-shadow: 0 0 18px 0 rgba(37,89,65,0.12);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerFadeIn 0.6s;
}
@keyframes cookieBannerFadeIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  border-radius: 24px;
  background: #F3F6EC;
  color: #255941;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.13s, color 0.12s;
  outline: none;
  font-weight: 600;
}
.cookie-banner button.accept {
  background: #7EC850;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #255941;
  color: #fff;
}
.cookie-banner button.reject {
  background: #E1E4D0;
  color: #255941;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #FFD5D2;
  color: #255941;
}
.cookie-banner button.settings {
  background: #fff;
  border: 2px solid #7EC850;
  color: #255941;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E8F3DA;
}
@media (max-width: 600px) {
  .cookie-banner {
    font-size: 0.95rem;
    padding: 14px 7px;
    gap: 12px;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
  }
  .cookie-banner button {
    padding: 7px 12px;
    font-size: 0.95rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,89,65,0.16);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(37, 89, 65, 0.14);
  padding: 30px 24px 22px 24px;
  min-width: 330px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieModalShow 0.35s;
  position: relative;
}
@keyframes cookieModalShow {
  0% { transform: scale(0.96) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-content h3 {
  font-family: 'Montserrat', 'Roboto', Arial;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #255941;
}
.cookie-modal .cookie-category {
  margin-bottom: 13px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  margin-left: 8px;
  color: #255941;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E1E4D0;
  border-radius: 10px;
  outline: none;
  vertical-align: middle;
  position: relative;
  transition: background 0.17s;
}
.cookie-modal .cookie-toggle:checked {
  background: #7EC850;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.22s;
  box-shadow: 0 2px 6px 0 rgba(37, 89, 65, 0.12);
}
.cookie-modal .cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal .cookie-essential label {
  opacity: 0.65;
  font-style: italic;
}
.cookie-modal .cookie-essential .cookie-toggle {
  background: #C2E29B !important;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #255941;
  cursor: pointer;
  border-radius: 4px;
  padding: 6px 12px 4px 12px;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #E8F3DA;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-buttons button {
  padding: 8px 22px;
  font-size: 1rem;
  background: #F3F6EC;
  border: none;
  border-radius: 18px;
  color: #255941;
  transition: background 0.15s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-buttons button.accept {
  background: #7EC850; color: #fff;
}
.cookie-modal .cookie-modal-buttons button.accept:hover {
  background: #255941; color: #fff;
}

/* =============================================================== */
/* UTILITY CLASSES, ANIMATIONS, ETC.                             */
/* =============================================================== */

.text-center {
  text-align: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }

.shadow-sm {
  box-shadow: 0 2px 14px 0 rgba(37,89,65,0.07);
}
.rounded-lg {
  border-radius: 16px;
}

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #CFE4B4;
  border-radius: 8px;
  padding: 10px 14px;
  background: #F9FCF7;
  color: #264431;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7EC850;
}
button:active {
  transform: scale(0.98);
}

::-webkit-input-placeholder { color: #A0B4A2; }
::-moz-placeholder { color: #A0B4A2; }
:-ms-input-placeholder { color: #A0B4A2; }
::placeholder { color: #A0B4A2; }

hr {
  margin: 32px 0 28px 0;
  border: 0;
  height: 1px;
  background: #E1E4D0;
}

/* =============================================================== */
/* SCANDINAVIAN NATURAL EFFECTS                                  */
/* =============================================================== */

body, main, header, footer, section, .card, .feature-grid > div {
  /* subtle grainy texture or soft shadow for authenticity */
}

/* Accent elements (btn, links, icons) */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  border-radius: 24px;
}

/* Elevate cards and interaction subtly */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Ensure adequate spacing ALWAYS */
.card-container > *, .feature-grid > *, .content-grid > * {
  margin-bottom: 20px;
}

@media (max-width:600px){
  .feature-grid{
    gap:14px;
  }
  .feature-grid > div{
    margin-bottom:12px;
    padding:12px 6px;
  }
}


/* =============================================================== */
/* END OF STYLE.CSS                                               */
/* =============================================================== */
