/* 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, 
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #35523C;
  background: linear-gradient(135deg, #F2F4ED 0%, #B1B695 100%);
  font-size: 16px;
  transition: background 0.6s;
}
section, article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, main {
  display: block;
}
a {
  color: #35523C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #44562d;
  text-decoration: underline;
}
ul, ol {
  list-style: disc inside;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif Pro', Georgia, 'Times New Roman', Times, serif;
  color: #35523C;
}
h1 {font-size: 2.5rem;margin-bottom: 20px;font-weight: 700;}
h2 {font-size: 2rem;margin-bottom: 16px;font-weight: 600;}
h3 {font-size: 1.3rem;margin-bottom: 10px;font-weight: 500;}
.subheadline {font-size: 1.25rem; color: #35523C; margin-bottom: 20px;}

p, li, span, label {
  font-size: 1rem;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

/* CONTAINER & SPACING SYSTEM */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(53, 82, 60, 0.07);
  transition: box-shadow 0.3s;
}
.section:last-child {
  margin-bottom: 0;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #F2F4ED 50%, #B1B695 100%);
  box-shadow: 0 2px 16px 0 rgba(53, 82, 60, 0.06);
  position: relative;
  z-index: 21;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header img[alt="Vogelkraft Momentum"] {
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #35523C;
  opacity: 0.97;
  font-weight: 500;
  transition: color 0.18s, opacity 0.18s;
  padding: 6px 14px;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B1B695;
  color: #35523C;
  opacity:1;
  text-decoration: none;
}
.cta-button {
  background: linear-gradient(90deg, #35523C 70%, #B1B695 100%);
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Source Serif Pro', serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(53, 82, 60, 0.10);
  margin-left: 20px;
  transition: background 0.3s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-button.primary { background: linear-gradient(90deg, #35523C 70%, #B1B695 100%); color: #fff; }
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #223e2a 70%, #ABB185 100%);
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(53, 82, 60, 0.16);
}

/****** MOBILE NAVIGATION ******/
.mobile-menu-toggle {
  display: none;
  background: #35523C;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  padding: 8px 12px;
  margin-left: auto;
  transition: background 0.24s;
  z-index: 400;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #223e2a;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #35523C;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1);
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2.4rem;
  border-radius: 16px;
  padding: 8px 16px;
  margin: 28px 0 18px 18px;
  align-self: flex-start;
  transition: background 0.2s;
  z-index: 210;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
  padding: 0 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  padding: 12px 0 12px 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B1B695;
  color: #35523C;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F2F4ED 60%, #B1B695 100%);
  border-radius: 0 0 36px 36px;
  min-height: 370px;
  padding-top: 24px;
  margin-bottom: 56px;
  box-shadow: 0 12px 48px 0 rgba(53, 82, 60, 0.10);
  display: flex;
}
.hero .container,
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #35523C;
  margin-bottom: 14px;
}
.hero .cta-button {
  margin-top: 18px;
}
.brand-image img {
  max-width: 120px;
}

/***** FLEXBOX PATTERNS (MANDATORY CLASSES) *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(53,82,60,0.09);
  padding: 28px 22px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 36px 0 rgba(53,82,60,0.14);
  transform: translateY(-4px) scale(1.02);
}
.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: #F2F4ED;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(53,82,60,0.07);
  color: #23351C;
  margin-bottom: 24px;
  font-style: italic;
  flex-direction: column;
  transition: box-shadow 0.22s, background 0.18s;
}
.testimonial-card span {
  font-size: 1rem;
  color: #35523C;
  font-style: normal;
  margin-top: 12px;
  align-self: flex-end;
}
.feature-item,
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 0;
}
.features ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.07rem;
}

/**** SERVICE & ABOUT STYLES ****/
.services ul,
.about ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 0;
  margin-bottom: 22px;
}
.services ul li,
.about ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.07rem;
}
.services .highlight, .services .usp-banner, .services .workshop-schedule, .services .activity-overview {
  margin-top: 10px;
  background: #B1B695;
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 600;
}
.services .usp-banner {
  background: #35523C;
  color: #fff;
}
.services .equipment-advice, .services .age-groups {
  background: #F2F4ED;
  color: #35523C;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 9px;
}
.safety-notice {
  background: #F2F4ED;
  color: #35523C;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 18px;
  font-weight: 500;
}

/**** CONTACT SECTION ****/
.contact .newsletter-signup {
  background: #B1B695;
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 12px;
  max-width: 410px;
}
.contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact .map-location {
  background: #F2F4ED;
  border-radius: 12px;
  padding: 15px 19px;
  color: #35523C;
  margin-top: 8px;
}

/**** FAQ-LINK ****/
.faq-link {
  display: inline-block;
  background: #B1B695;
  color: #fff;
  padding: 7px 18px;
  border-radius: 10px;
  margin-top: 12px;
  font-weight: 500;
  transition: background 0.23s;
}
.faq-link:hover, .faq-link:focus {
  background: #35523C;
  color: #fff;
}

/***** LEGAL & TEXT SECTIONS *****/
.legal {
  padding: 44px 20px 60px 20px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin: 36px 0 0 0;
  box-shadow: 0 4px 24px 0 rgba(53, 82, 60, 0.07);
}
.legal .text-section {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/**** NEWSLETTER SIGNUP BOX ****/
.newsletter-signup {
  background: #F2F4ED;
  border-radius: 17px;
  padding: 16px 24px;
  margin-top: 18px;
  color: #35523C;
  box-shadow: 0 1px 6px 0 rgba(53,82,60,0.055);
}

/**** FOOTER ****/
footer {
  background: linear-gradient(90deg, #F2F4ED 60%, #B1B695 100%);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 40px 0 22px 0;
  box-shadow: 0 -2px 18px 0 rgba(53,82,60,0.10);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #35523C;
  font-size: 0.97rem;
  opacity: 0.92;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #B1B695;
  color: #fff;
  opacity: 1;
}
.branding img {
  max-width: 68px;
  margin: 0 12px;
}
.footer-legal {
  color: #35523C;
  font-size: 0.87rem;
  margin-top: 14px;
  opacity: 0.7;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.social-media a img {
  width: 32px; height: 32px;
  border-radius: 8px;
  transition: box-shadow 0.16s;
}
.social-media a:hover img, .social-media a:focus img {
  box-shadow: 0 2px 12px 0 rgba(53,82,60,0.15);
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #B1B695 90%, #35523C 100%);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  box-shadow: 0 -4px 22px 0 rgba(53,82,60,0.11);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1), opacity 0.23s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 250px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  margin-right: 6px;
}
.cookie-btn.accept {
  background: #35523C;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #23351C;
}
.cookie-btn.reject {
  background: #fff;
  color: #35523C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B1B695;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  outline: 2px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #35523C;
  outline-color: #35523C;
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(53,82,60,0.74);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: #23351C;
  border-radius: 21px;
  min-width: 320px;
  max-width: 96vw;
  padding: 30px 32px 24px 32px;
  box-shadow: 0 6px 40px 0 rgba(53,82,60,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 10100;
}
.cookie-modal__header {
  font-family: 'Source Serif Pro', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #35523C;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 12px;
  background: #B1B695;
  position: relative;
  transition: background 0.15s;
  margin-left: 12px;
}
.cookie-toggle input {
  appearance: none;
  width: 100%;
  height: 100%;
  outline: none;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  border-radius: 12px;
  z-index: 2;
  cursor: pointer;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
  z-index:1;
}
.cookie-toggle input:checked + .slider {
  background: #35523C;
}
.cookie-toggle input:checked + .slider:before {
  left: 19px;
  background: #B1B695;
}
.slider {
  display: block;
  width: 38px; height: 22px;
  border-radius: 12px;
  background: #B1B695;
  position: relative;
  transition: background 0.12s;
}
.slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 16px;
  background: transparent;
  color: #35523C;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 6px;
  transition: background 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F2F4ED;
}


/**** RESPONSIVE DESIGN ****/
@media (max-width: 1160px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  header .container{flex-wrap:wrap;gap:10px;min-height: unset;}
  .footer-nav{flex-wrap:wrap;gap:9px;}
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
  .section { padding: 28px 9px; }
  .container { padding: 0 7px; }
  header .container { flex-direction: row; gap: 6px; padding: 12px 10px; }
  .main-nav { display: none; }
  .cta-button { margin-left: 0; margin-right: 0; }
  .mobile-menu-toggle { display: block; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 18px; }
  .social-media { margin-top: 7px; }
  .hero { min-height: 240px; padding-top: 12px; border-radius: 0 0 18px 18px; }
  .brand-image img { max-width: 66px; }
  .card-container, .content-grid { flex-direction: column; gap: 17px; }
  .testimonial-card { font-size: 1rem; padding: 14px; gap:13px; }
  .contact .newsletter-signup { max-width: unset; padding: 13px 10px; }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .section { padding: 15px 2vw; margin-bottom: 35px; border-radius: 10px; }
  .hero { padding-top: 8px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .footer-nav { gap: 4px; }
  .testimonial-card {border-radius:12px;padding:10px;gap: 7px;}
}
@media (max-width: 520px) {
  .cookie-modal { padding: 14px 8px 11px 10px; min-width:89vw; }
  .cookie-modal__header{font-size:1.08rem;}
}
@media (max-width: 530px) {
  .footer-nav { flex-direction: column; gap: 6px; align-items: flex-start; }
  .branding img { margin: 0 0 8px 0; }
}
/* Hero backgrounds */
.hero, .legal {
  background: linear-gradient(135deg, #F2F4ED 60%, #B1B695 100%);
}

/**** MICRO-INTERACTIONS ****/
.card, .testimonial-card, .cta-button, .cookie-btn, .faq-link {
  transition: box-shadow 0.23s, background 0.23s, color 0.18s, transform 0.18s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
}
.cta-button:active, .cookie-btn:active, .faq-link:active {
  transform: scale(0.99);
}
/* Success/Thank you feedback pages */
.text-section p {
  margin-bottom: 9px;
}

/**** UTILITY ****/
.hidden {
  display: none !important;
}

/**** Z-INDEXS FOR LAYERS ****/
header { z-index: 10; }
.mobile-menu { z-index: 200; }
footer { z-index: 1; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/**** FORM/INPUT (if needed later) ****/
input, textarea {
  border: 1.5px solid #B1B695;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border 0.18s;
  background: #F2F4ED;
  color: #35523C;
}
input:focus, textarea:focus {
  border-color: #35523C;
}

/********* END *********/
