/* ====================== 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: border-box; }
body {
  line-height: 1.5;
  background: #F7F4F0;
  color: #324A29;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  padding-left: 1.1em;
  margin-bottom: 0.9em;
}
li {
  margin-bottom: 0.5em;
  list-style: none;
  position: relative;
}
a {
  text-decoration: none;
  color: #324A29;
  transition: color 0.2s;
}
a:focus,a:active { outline: 2px dashed #FFD166; }
strong { font-weight: 700; }

/* ====================== BRAND COLORS ===================== */
:root {
  --primary: #324A29; /* Olive Green */
  --secondary: #FFD166; /* Bright Yellow */
  --accent: #F7F4F0; /* Soft Cream */
  --highlight: #FF659B; /* Playful Pink */
  --button-blue: #3DDC97; /* Playful Aqua */
  --card-shadow: rgba(50,74,41,0.07);
  --gray: #E7ECE7;
}

/* ================= PLAYFUL, DYNAMIC FONTS ================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.4em;
}
h1{font-size: 2.6rem; margin-bottom: 16px; line-height: 1.1; text-shadow: 2px 4px 12px #ffd1661a;}
h2{font-size: 2rem; margin-bottom: 12px;}
h3{font-size: 1.3rem; margin-bottom: 8px;}
p,ul,ol {
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 1.1em;
}
.text-section p,
.text-section ul,
.text-section ol {
  color: #555;
}

/* ===================== UTILITY CLASSES ===================== */
.container {
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============= SPACING AND CRITICAL LAYOUT PATTERNS ============= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 28px var(--card-shadow);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform 0.12s, box-shadow 0.17s;
}
.card:hover {
  transform: translateY(-5px) scale(1.025) rotate(-0.7deg);
  box-shadow: 0 8px 32px rgba(50,74,41,0.12);
}
.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: #fffbe8;
  border-radius: 18px;
  box-shadow: 0 4px 22px #ffd16622;
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
  transition: box-shadow 0.18s, transform 0.13s;
  border-left: 5px solid var(--secondary);
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px #ffd16655;
  transform: scale(1.025) rotate(1deg);
}
.testimonial-card p {
  color: #2c3e22;
  font-size: 1.08rem;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: var(--primary);
  opacity: 0.74;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* ======================== HEADER ======================== */
header {
  background: #fff;
  box-shadow: 0 4px 16px #324a2912;
  padding: 0;
  z-index: 98;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px;
}
header img {
  height: 56px;
  width: auto;
  margin-right: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 8px 0 5px 0;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border 0.18s;
  border-radius: 0;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--highlight);
  border-bottom: 2px solid var(--secondary);
}
/* CTAs in header */
.cta-button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 28px 8px 24px 8px;
  box-shadow: 0 2px 24px #ffd16645;
  border: 0;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.17s;
  outline: none;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px #fff0;
  text-align: center;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--highlight);
  color: #fff;
  box-shadow: 0 7px 30px #ff7fb95f;
  transform: scale(1.05) rotate(-2deg);
}
/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--button-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.16s,transform 0.18s;
  margin-left: 5px;
  z-index: 100;
}
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
/* ============== MOBILE MENU ============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 25px 28px 28px 18px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.7,2,.2,1),box-shadow 0.22s;
  box-shadow: 0 2px 60px #ffd16649;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  font-size: 2rem;
  color: var(--highlight);
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 7px;
  padding: 8px 18px 8px 10px;
  box-shadow: 0 2px 13px #ffd16633;
  transition: background 0.11s, color 0.13s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 9px;
  transition: background 0.18s, color 0.19s;
  width: 100%;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--highlight);
}

@media (max-width: 1050px){
  header .container {
    padding: 0 8px; gap: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-button{
    margin-right:0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 520px){
  header img {
    height: 38px;
  }
}

/* ========================= MAIN + SECTIONS ========================= */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--accent);
}
section {
  width: 100%;
  background: none;
}
section .container {
  justify-content: flex-start;
  gap: 0;
}
section .content-wrapper {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

/* Hero/Highlight images, adjust icon size & fun spin */
section img[alt*="icon"],
section img[alt*="Fotografie"], 
section img[alt*="Rezept"],
section img[alt*="Workshop"],
section img[alt*="Vegan"],
section img[alt*="Saisonal"],
section img[alt*="Check"] {
  width: 36px;
  height: 36px;
  margin-right: 13px;
  border-radius: 10px;
  background: var(--secondary);
  padding: 5px;
  box-shadow: 0 2px 12px #ffd16627;
  display: inline-block;
  transform: rotate(-8deg);
  animation: icon-bounce 1.5s ease-in-out infinite alternate;
}
@keyframes icon-bounce {
  0%{transform: rotate(-7deg) translateY(0) scale(1);}
  70%{transform: rotate(8deg) translateY(-5px) scale(1.07);}
  100%{transform: rotate(-7deg) translateY(0) scale(1);}
}

/* List styling with fun bullet and color */
ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  font-size: 1.06rem;
  color: #374a33;
}
ul li:before {
  content: "◉";
  position: absolute;
  left: 0; top: 4px;
  color: var(--highlight);
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1;
  opacity: 0.82;
}
section ul li img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}

section ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
section ul li span {
  color: var(--highlight);
  font-weight: 700;
  margin-left: 9px;
}

/* Highlighted headings */
h2, h3 {
  background: linear-gradient(90deg, var(--secondary) 60%, #fff8e1 100%);
  display: inline-block;
  padding: 4px 18px 4px 3px;
  border-radius: 18px 0 18px 0;
  font-size: 2rem;
}

/* ========================= CARDS ========================= */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 32px #ffd1662A;
  padding: 30px 25px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s,transform 0.17s;
  position: relative;
}

.card:hover {
  box-shadow: 0 17px 40px #ffd16644;
  transform: translateY(-10px) scale(1.03) rotate(-1deg);
  z-index:2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

/* ========================= BUTTONS & LINKS ========================= */
button, .cta-button, input[type="submit"] {
  border: none;
  outline: none;
  border-radius: 18px 0 18px 0;
  cursor: pointer;
  transition: background 0.11s, color 0.13s, box-shadow 0.2s, transform 0.17s;
}
a,button {
  transition: color 0.13s, background 0.13s, box-shadow 0.11s, transform 0.11s;
}

/* Inline nav buttons */
.content-wrapper nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 7px;
}
.content-wrapper nav a {
  background: var(--button-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 28px;
  border-radius: 22px 8px;
  font-size: 1rem;
  box-shadow: 0 1px 12px #3ddc973e;
}
.content-wrapper nav a:hover {
  background: var(--highlight);
  color: #fff;
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 8px 20px #ff7fa944;
}

/* ======================== FOOTER ======================== */
footer {
  background: #fff;
  border-top: 2px solid #eaece8;
  box-shadow: 0 1px 22px #ffd16613;
  padding: 32px 0 18px 0;
  margin-top: 65px;
}
footer .container {
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
footer nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--primary);
  padding: 5px 0;
  transition: color 0.18s;
}
footer nav a:hover { color: var(--highlight); text-decoration: underline;}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
  color: #555;
}
.footer-contact address {
  font-style: normal;
  color: #586e54;
}
.footer-contact a {
  color: var(--highlight); transition: color 0.18s;
}
.footer-contact a:hover {
  color: var(--primary);
}

/* =============== COOKIE CONSENT BANNER =============== */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: var(--primary);
  z-index: 3000;
  box-shadow: 0 -4px 32px #ffd16655;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 1.08rem;
  animation: cookie-slide-up 0.8s ease;
}
@keyframes cookie-slide-up {
  0%{transform:translateY(100%);opacity:0;}100%{transform:translateY(0);opacity:1;}
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 7px;
}
#cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 17px 6px 15px 8px;
  border: none;
  outline: none;
  margin: 0;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 9px #ffd16622;
  transition: background 0.11s, color 0.13s;
}
#cookie-consent-banner button.accept {
  background: var(--button-blue); color: #fff;
}
#cookie-consent-banner button.accept:hover{background:var(--highlight);color:#fff;}
#cookie-consent-banner button.reject {
  background: #eee; color: var(--primary);
}
#cookie-consent-banner button.settings {
  background: #fffbe8; color: var(--highlight); border:1px solid var(--highlight);
}
#cookie-consent-banner button.settings:hover {
  background: var(--highlight); color:#fff;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #fff;
  z-index: 3100;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 60px #ffd16655;
  border-radius: 18px 11px 14px 10px;
  padding: 38px 32px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-pop 0.32s cubic-bezier(.3,2,.2,1);
}
#cookie-modal.active { display: flex; }
@keyframes cookie-modal-pop {
  0%{transform:translate(-50%,-63%) scale(0.85);opacity:0;}100%{transform:translate(-50%,-50%) scale(1);opacity:1;}
}
#cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
#cookie-modal ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#cookie-modal ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #eee;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  margin-left: auto;
}
.cookie-toggle:checked {
  background: var(--button-blue);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left:3px; top:3px;
  width: 16px; height:16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 2px 7px #324A2933;
}
.cookie-toggle:checked::before{
  left: 21px;
  background: var(--secondary);
}
#cookie-modal .modal-actions{
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
#cookie-modal button {
  border-radius: 16px;
  font-size: 1.02rem;
  padding: 9px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
#cookie-modal .close-modal{
  background: #f5f5f5; color: var(--primary); border:1px solid #ddd;
}
#cookie-modal .save {
  background: var(--secondary); color: var(--primary);
}
@media (max-width: 620px) {
  #cookie-modal {
    padding: 16px 10px 20px 10px;
    min-width: 80vw;
    font-size: 0.97em;
  }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact { font-size: 0.98em; }
  section { padding: 32px 7px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 3vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  .cta-button {
    padding: 11px 20px;
    font-size: 1rem;
  }
  .card { padding: 20px 9px; }
  .testimonial-card { padding: 17px; font-size: 1rem; }

  footer .container {
    flex-direction: column;
    gap: 15px;
  }
  footer nav {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 420px){
  .cta-button {
    padding: 8px 10px;
    font-size: 0.97em;
  }
  .testimonial-card {font-size: 0.97em;}
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1.05rem; }
}

/* ===================== MICRO-INTERACTIONS/ANIMATION ===================== */
.cta-button, .content-wrapper nav a {
  transition: background 0.19s, color 0.18s, box-shadow 0.15s, transform 0.16s;
}
.cta-button:hover, .content-wrapper nav a:hover {
  box-shadow: 0 4px 22px #ff7fb944;
  transform: scale(1.07) rotate(-2deg);
}
button:active {
  transform: scale(0.96) rotate(1deg);
  background: var(--highlight);
}

/* ===================== MISCELLANEOUS ===================== */
::-webkit-scrollbar { width: 13px; background: #F7F4F0; }
::-webkit-scrollbar-thumb { background: #FFD166; border-radius: 7px; }

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: 1px solid #DEE1DF;
  padding: 8px 15px;
  font-size: 1rem;
  margin-bottom: 19px;
  box-shadow: 0 1px 6px #ffd1661b;
}
input:focus, textarea:focus, select:focus{
  outline: 2px solid var(--highlight);
  border-color: var(--secondary);
  background: #fffde8;
}

/* Prevent absolute for cards/content, only for fun icons allowed */

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