/* -----------------------------------------------------
   FAMILIENZEITFINDER - NATURE ORGANIC STYLE CSS
   Responsive, Flexbox only, Brand Colors, Burger Menü, Cookie Banner
   ----------------------------------------------------- */

/* RESET & NORMALIZATION */
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;
  background: #FEFBEA;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #353c32;
  background: #FEFBEA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205087;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #3E7533;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1A2E19;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.3rem; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 12px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; color: #2D6028; }
h4 { font-size: 1.09rem; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F8F5;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(70,81,38,.09);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(60,40,5,.07);
  position: relative;
  padding: 18px 22px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 7px 34px rgba(60,40,5,.12);
  transform: translateY(-4px) scale(1.015);
}
.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;
  background: #F1F8EC;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34,48,26,0.08);
  font-size: 1.09rem;
  color: #1A2E19;
  border-left: 6px solid #3E7533;
  transition: box-shadow .15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(52,112,47,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NATURE ORGANIC - EARTHY, SOFT SCHEME */
:root {
  --color-primary: #205087;
  --color-secondary: #FAC94A;
  --color-accent: #3E7533;
  --color-bg: #FEFBEA;
  --color-bg-soft: #F7F8F5;
  --color-card: #FFFFFF;
  --color-green-dark: #1A2E19;
  --color-green: #3E7533;
  --color-brown: #8E6C38;
  --color-shadow: rgba(75,90,61,0.11);
  --color-error: #bc4132;
}

/* CONTAINER & RESPONSIVE BODY */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 2px solid #E5DED0;
  box-shadow: 0 1px 10px rgba(56,105,39,0.07);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
header a img {
  height: 38px;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #205087;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .13s, color .13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C9E6CC;
  color: #2D6028;
}
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-green-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border: none;
  padding: 10px 26px;
  border-radius: 18px;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(216,192,85,0.09);
  transition: background .13s, color .13s, box-shadow .13s, transform .13s;
  display: inline-block;
  min-width: 36px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFE399;
  color: #3E7533;
  box-shadow: 0 6px 22px rgba(216,192,85,0.16);
  transform: translateY(-2px) scale(1.06);
}
.cta-btn.secondary {
  background: var(--color-accent);
  color: #fff;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #529336;
  color: #FFF;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-green);
  cursor: pointer;
  display: none;
  margin-left: 10px;
  border-radius: 10px;
  padding: 6px;
  transition: background .12s, color .12s;
  z-index: 90;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C9E6CC;
  color: #2D6028;
  outline: none;
}

/* HERO + feature grid */
.hero {
  background: linear-gradient(95deg,#E8F1EC 0%,#F7F8F5 100%);
  padding: 44px 0 40px;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 6px 24px rgba(52,89,33,0.09);
  margin-bottom: 62px;
  min-height: 320px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  max-width: 600px;
}
.hero h1 {
  color: #205087;
  font-size: 2.3rem;
  margin-bottom: 12px;
}
.hero p {
  color: #265C43;
  font-size: 1.13rem;
  margin-bottom: 8px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #FFF;
  flex: 1 1 min(210px, 48vw);
  max-width: 250px;
  min-width: 180px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(60,40,5,.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 24px 19px 18px 21px;
  margin-bottom: 20px;
  border-left: 6px solid #3E7533;
  transition: box-shadow .18s, transform .16s;
}
.feature-grid > div:hover {
  box-shadow: 0 9px 34px rgba(60,40,5,.14);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  width: 38px; height: 38px; margin-bottom: 4px;
}
.feature-grid h3 {
  color: #205087;
  font-size: 1.1rem;
}

/* About preview, teasers etc. */
.about-preview {
  background: #E8EEE3;
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 36px 18px;
  box-shadow: 0 3px 12px rgba(58,112,40,.07);
}
.about-preview h2 { color: #2D6028; }
.about-preview .team-preview {
  display: inline-block;
  background: #FAC94A22;
  padding: 4px 12px;
  margin: 8px 0 15px 0;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #569249;
  font-size: 1rem;
}

.weather-teaser, .activities-teaser,.cta-banner {
  background: #F7F8F5;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 36px 18px;
  box-shadow: 0 2px 14px rgba(112, 141, 91, .05);
}
.weather-teaser h3 {color: #205087;}
.widget-preview {
  background: #D6EFD1;
  border-radius: 16px;
  padding: 18px 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-link a {
  color: #3E7533;
  font-weight: 700;
  border-bottom: 2px solid #92AD8C;
  transition: border-color .1s;
}
.cta-link a:hover {
  border-color: #529336;
}

/* Activities, Preview, Benefits, FAQ */
.activity-previews {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(50,99,49,0.08);
  padding: 16px 19px;
  margin: 18px 0 15px 0;
  color: #3E7533;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
}
.benefits, .tips, .idea-overview {
  margin-bottom: 60px;
}
.benefits ul, .tips ul, .idea-overview ul, .text-section ul {
  padding-left: 18px;
  margin-bottom: 12px;
  color: #335329;
  font-size: 1.05rem;
}
.benefits li, .tips li, .idea-overview li, .text-section li {
  margin-bottom: 8px;
}

/******************************
   MAIN SECTION SPACING/CONTENT
*******************************/
.content-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.text-section {
  background: #FEFBEA;
  border-radius: 15px;
  padding: 18px 16px 14px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(80,85,79,0.03);
}
.text-section:last-child {
  margin-bottom: 0;
}
.text-section a {
  color: #205087;
  text-decoration: underline;
  font-weight: 600;
}
.text-section a:hover {
  color: #3E7533;
}

/******************************
             FOOTER
*******************************/
footer {
  background: #186A41;
  color: #FAF9ED;
  padding: 32px 0 14px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 48px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 26px;
}
.footer-wrapper a img {
  height: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-nav a {
  color: #FFF8E6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background .14s, color .13s;
  padding: 3px 8px;
}
.footer-nav a:hover { background: #92AD8C; color: #183B16; }
.contact-info {
  color: #FFF8E6;
  font-size: .97rem;
  margin-top: 4px;
}
.contact-info img {
  height: 17px; width: 17px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.footer-social a img {
  height: 26px;
}
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: #2AB774;
  color: #FFF;
  border-radius: 17px;
  font-size: 1.03rem;
  padding: 8px 27px 8px 19px;
  margin-bottom: 22px;
  margin-top: 16px;
  box-shadow: 0 3px 14px rgba(42,183,116,.06);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.newsletter-signup .cta-btn {
  background: #FAC94A;
  color: #205087;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(216,192,85,0.10);
}
.newsletter-signup .cta-btn:hover {
  background: #FFE399;
  color: #375F1C;
}
footer small {
  color: #E6F1DA;
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: .95rem;
}

/******************************
 MOBILE BURGER MENU (slide)
*******************************/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,249,237, 0.98);
  box-shadow: 2px 0 44px rgba(44,94,60,0.09);
  z-index: 220;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.71,0,.33,1);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 27px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #3E7533;
  font-size: 2rem;
  align-self: flex-end;
  margin: 0 29px 22px 0;
  cursor: pointer;
  border-radius: 10px;
  padding: 6px;
  transition: background .14s, color .12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #C9E6CC;
  color: #205087;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 16vw;
  padding-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #205087;
  padding: 7px 0 7px 12px;
  border-radius: 9px;
  min-width: 140px;
  transition: background .12s, color .11s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #2AB77422;
  color: #377329;
}

/******************************
 RESPONSIVE BREAKPOINTS
*******************************/
@media (max-width: 1050px) {
  .feature-grid {
    gap: 16px;
    justify-content: flex-start;
  }
  .feature-grid > div {
    min-width: 150px;
  }
}
@media (max-width: 900px) {
  .footer-wrapper { gap: 26px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero, .weather-teaser, .activities-teaser, .cta-banner, .about-preview {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 0 0 30px 30px;
  }
  .section {
    margin-bottom: 40px;
    padding: 27px 7px;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.1rem; }
  .content-wrapper {
    gap: 10px;
  }
  .mobile-nav {
    padding-left: 6vw;
    gap: 18px;
  }
  .footer-wrapper {
    gap: 10px;
  }
  .newsletter-signup {
    padding: 9px 13px;
    font-size: .98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .hero {
    border-radius: 0 0 26px 26px;
    padding: 23px 0 26px;
    min-height: 230px;
  }
}

/******************************
      MISC. COMPONENTS
*******************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
}

/******************************
     COOKIE CONSENT BANNER
*******************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #205087;
  color: #FFF8E6;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -3px 23px rgba(32,80,135,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 10vw 17px 10vw;
  font-size: 1rem;
  animation: cookiebanner-appear .52s cubic-bezier(.82,-0.1,.49,1);
}
@keyframes cookiebanner-appear {
  from { opacity:0; transform: translateY(80px); }
  to { opacity:1; transform: none; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 15px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .13s;
  box-shadow: 0 2px 7px rgba(250,201,74,0.12);
}
.cookie-banner .accept {
  background: #2AB774;
  color: #FFF;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1A2E19;
}
.cookie-banner .reject {
  background: #FFF;
  color: #205087;
  border: 2px solid #205087;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FAC94A;
  color: #205087;
}
.cookie-banner .settings {
  background: #FAC94A;
  color: #205087;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
}

/***********************************************
  COOKIE PREFERENCES MODAL (for settings button)
***********************************************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 310;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,63,15,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cokmodal-bg .23s;
}
@keyframes cokmodal-bg {
  0% {opacity:0;}
  100% {opacity:1;}
}
.cookie-modal {
  background: #FFF;
  color: #205087;
  border-radius: 22px;
  max-width: 400px; width: 92vw;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 7px 32px rgba(52,100,32,.16);
  animation: cookiemodal-in .33s cubic-bezier(.71,0,.33,1);
}
@keyframes cookiemodal-in {
  from { transform: scale(.83) translateY(88px); opacity:0; }
  to { opacity:1;transform: none; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: #205087;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
  font-size: 1rem;
  border-radius: 11px;
  padding: 7px 8px;
  background: #F7F8F5;
  box-shadow: 0 1px 4px #D5F1DE11;
}
.cookie-category.essential {
  background: #F3EDD0;
  color: #3E7533;
  font-weight: 600;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  color: #3E7533;
  font-size: 1.7rem;
  cursor: pointer;
  margin-bottom: -6px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #E8F1EC;
  border-radius: 12px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  padding: 7px 18px;
}

/*******************
  THANK YOU
********************/
.thankyou-section {
  background: #E8FFC7;
  border-radius: 28px;
  box-shadow: 0 3px 18px rgba(82,199,92,.08);
  margin-top: 22px;
}

/*******************
  ACCESSIBILITY FOCUS
*********************/
a:focus, button:focus, .cta-btn:focus { outline: 2px solid #20508799; }

/*******************
 ORGANIC SHAPES & TEXTURES [decorative elements only]
 ********************/
/* add flowy organic curves in hero/footer/sections bg with SVG, pseudo-elements, or decorative backgrounds as needed, but actual content/layout never uses absolute except for these visuals. */

/******************
    MISC BUTTONS
*******************/
button, .cta-btn {
  outline: none;
}

/******************
  FORMS (newsletter) [if needed]
*******************/
input[type='text'], input[type='email'], textarea {
  border: 2px solid #B6D5AD;
  border-radius: 10px;
  outline: none;
  padding: 11px 14px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  width: 100%;
  background: #F8FBF4;
  color: #205087;
  transition: border .14s;
}
input:focus, textarea:focus {
  border-color: #2AB774;
}

/******************
     ERROR MSGS
*******************/
.error {
  color: var(--color-error);
  background: #FFF8F6;
  padding: 7px 13px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid var(--color-error);
}

/******************
   UTILITY CLASSES
******************/
.hide { display: none !important; }
.center { text-align: center; }
.upper { text-transform: uppercase; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/*******************
   PRINT SUPPORT
********************/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  header, main { background: #FFF !important; box-shadow: none !important; }
}
