/* ===================================================
   CSS RESET & BASE STYLES
   ===================================================*/
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #2A2014;
  background: #FEF8F2;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url('../assets/bg-texture.png'); /* Only if you provide a subtle organic texture */
}
*, *:before, *:after {
  box-sizing: inherit;
}
:focus {
  outline: 2px solid #FDBF3E;
  outline-offset: 2px;
}
a {
  color: #733B18;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #417321;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3F2C17;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* ===============
   CONTAINERS
   =============== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 24px 8px; margin-bottom: 40px; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 12px; }
}

/* ===================================================
   HEADER & NAVIGATION
   ===================================================*/
header {
  width: 100%;
  background: #E6DEC8;
  box-shadow: 0 2px 12px rgba(180, 153, 102, 0.08);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 12px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 18px;
  background: transparent;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: #5C4525;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: #CEE3CB;
  color: #417321;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #417321;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: #D4D8C1;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================================
   MOBILE MENU OVERLAY
   ===================================================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 1003;
  background: rgba(245, 241, 227, 0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 0 0;
  font-size: 2.1rem;
  color: #733B18;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #CEE3CB;
  color: #417321;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: #5C4525;
  padding: 12px 6px 12px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  min-width: 64vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CEE3CB;
  color: #417321;
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* ===================================================
   HERO SECTIONS
   ===================================================*/
.hero, .hero-national, .hero-streetfood, .hero-reportagen, .hero-kochkurse, .hero-contact {
  background: #DEEED8 url('../assets/organic-blob.svg') bottom right no-repeat;
  background-size: 400px auto;
  border-radius: 0 0 48px 0/0 0 70px 0;
  padding-top: 60px; padding-bottom: 38px;
  margin-bottom: 48px;
  box-shadow: 0 8px 42px rgba(150, 130, 107, 0.10);
}
.hero .subheadline, .hero-kochkurse .subheadline {
  font-size: 1.18rem;
  font-family: "Open Sans", Arial, sans-serif;
  color: #417321;
  margin-bottom: 18px;
  margin-top: -18px;
  font-weight: 600;
}
.hero .btn, .hero-national .btn, .hero-streetfood .btn, .hero-reportagen .btn, .hero-kochkurse .btn, .hero-contact .btn {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero, .hero-national, .hero-streetfood, .hero-reportagen, .hero-kochkurse, .hero-contact {
    padding-top: 34px; padding-bottom: 20px;
    background-size: 180px auto;
    margin-bottom: 28px;
    border-radius: 0 0 24px 0/0 0 28px 0;
  }
}

/* ===================================================
   FEATURE & CARD GRIDS (NATURE ORGANIC LAYOUT)
   ===================================================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.feature-grid > div {
  background: #F8F5EE;
  border-radius: 22px 42px 18px 22px/35px 22px 24px 32px;
  box-shadow: 0 2px 18px rgba(136, 110, 50, 0.08);
  padding: 24px 18px 16px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #E3E0D1;
  transition: box-shadow 0.25s, transform 0.22s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(60, 70, 40, 0.18);
  transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
  width: 42px; height: 42px; object-fit: contain;
  margin-bottom: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F8F5EE;
  border-radius: 18px 30px 18px 14px/24px 30px 22px 18px;
  box-shadow: 0 2px 12px rgba(136, 110, 50, 0.08);
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(105, 70, 47, 0.16);
  transform: translateY(-6px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px;
}
@media (max-width: 768px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* ================
   SERVICES LISTING
   ================ */
.service-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-listing > div {
  background: #F5F9F5;
  border-radius: 24px 12px 26px 22px/15px 22px 24px 28px;
  box-shadow: 0 1px 12px rgba(131, 163, 120, 0.10);
  border: 1.4px solid #E4ECD8;
  padding: 22px 16px 14px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.service-listing > div:hover {
  box-shadow: 0 2px 22px rgba(115, 59, 24, 0.13);
  transform: translateY(-4px);
}
.service-listing span {
  margin-top: 6px;
  color: #417321;
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .service-listing {
    flex-direction: column;
    gap: 16px;
  }
  .service-listing > div {
    min-width: unset; max-width: unset;
  }
}

/* =========================
   SECTIONS & LAYOUT PATTERNS
   ========================= */
.features, .about-snippet, .services, .testimonials, .contact-teaser,
.about-mission, .team-overview, .why-us,
.kitchen-features, .service-teasers, .streetfood-features, .streetfood-experiences, .streetfood-guides,
.report-features, .report-services, .course-highlights, .courses-overview, .testimonials-courses,
.contact-details-section, .services-contact-overview, .thank-you, .cookie-policy, .privacy-policy, .gdpr-policy, .terms-of-use {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .features, .about-snippet, .services, .testimonials, .contact-teaser,
  .about-mission, .team-overview, .why-us,
  .kitchen-features, .service-teasers, .streetfood-features, .streetfood-experiences, .streetfood-guides,
  .report-features, .report-services, .course-highlights, .courses-overview, .testimonials-courses,
  .contact-details-section, .services-contact-overview, .thank-you, .cookie-policy, .privacy-policy, .gdpr-policy, .terms-of-use {
    margin-bottom: 38px;
    padding: 26px 8px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =====================
   TESTIMONIALS & CARDS
   ===================== */
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 18px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9FFF7;
  border-radius: 26px 26px 18px 26px/24px 30px 34px 18px;
  box-shadow: 0 2px 20px rgba(72, 93, 68, 0.10);
  border-left: 6px solid #7BC042;
  border-top: 1.5px solid #E7F8CB;
  border-bottom: 1.5px solid #E7F8CB;
  color: #293F21;
  font-size: 1.08rem;
  min-width: 230px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(110, 173, 92, 0.13);
}
.testimonial-card p {
  font-style: italic;
  color: #294E23;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 0px;
}
.testimonial-name {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  color: #417321;
  margin-top: 3px;
}
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================
   BUTTONS & LINKS
   ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  border-radius: 18px 36px 13px 28px/18px 36px 20px 18px;
  border: none;
  background: #733B18;
  color: #FFFAF3;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(103,59,24,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  text-decoration: none;
  margin-right: 16px;
  margin-bottom: 6px;
}
.btn-primary {
  background: #733B18;
  color: #FFF8E5;
}
.btn-primary:hover, .btn-primary:focus {
  background: #417321;
  color: #FDF9ED;
  box-shadow: 0 6px 24px rgba(115, 99, 24, 0.19);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #FDBF3E;
  color: #713B18;
  font-weight: 700;
  border: 2px solid #733B18;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E9C882;
  color: #417321;
  border-color: #417321;
}
.btn:active {
  transform: scale(0.99);
}
.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* ===============
   ORGANIC ELEMENTS
   =============== */
section, .container, .content-wrapper, .feature-grid > div, .service-listing > div, .testimonial-card, .card {
  /* Subtle organic shadow and border-radius applied above. */
}

/* ==============
   ACCENTS & DETAILS
   ============= */
hr {
  border: none;
  border-top: 1.5px dashed #C7A66F;
  margin: 32px 0;
}
img {
  max-width: 100%;
  border-radius: 18px;
  display: block;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* Content lists and organic shapes */
ul, ol {
  list-style: disc inside;
}
.feature-item ul, .feature-item ol { padding-left: 0; }

/* ===============
   CONTACT DETAILS SECTION
   =============== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.contact-details img {
  width: 20px; height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 6px;
}
.map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F3F9F7;
  border-radius: 22px;
  padding: 14px 18px;
  margin-top: 12px;
}
.map img {
  width: 46px; height: 46px;
  margin-right: 6px;
  border-radius: 50%;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #334022;
  color: #F7F3EA;
  padding-top: 26px;
  padding-bottom: 12px;
  margin-top: 56px;
  position: relative;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  color: #FFE9C0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FDBF3E;
}
.footer-contact {
  margin-top: 8px;
  font-size: 0.99rem;
  color: #D7D6CB;
}
.footer-contact a {
  color: #FDBF3E;
  text-decoration: underline;
}
.footer-copy {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #CEBB84;
}
@media (max-width: 700px) {
  .footer-nav { gap: 12px; font-size: 0.98rem; }
  .footer-contact, .footer-copy { font-size: 0.94rem; }
}

/* =================
   COOKIE BANNER
   ================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #213B1E;
  color: #FDF9ED;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 0 30px 6px rgba(95, 117, 74, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.6,0,.4,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #FFFBF7;
  max-width: 550px;
  font-size: 1.08rem;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 18px 24px 13px 28px/18px 22px 20px 18px;
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 700;
  margin-right: 8px;
  transition: background 0.20s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}
.cookie-btn.accept {
  background: #7BC042;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #417321;
}
.cookie-btn.reject {
  background: #FDBF3E;
  color: #733B18;
  border: 2px solid #417321;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F8E1A0;
  color: #417321;
  border-color: #417321;
}
.cookie-btn.settings {
  background: #334022;
  color: #FFF8E5;
  border: 2px solid #FDBF3E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #417321;
  color: #FDF9ED;
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px 4px 10px 4px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 9px;
  }
}

/* ========================
   COOKIE SETTINGS MODAL
   ======================== */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40, 60, 30, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F0F8EA;
  border-radius: 36px 20px 34px 24px/20px 38px 32px 18px;
  box-shadow: 0 10px 42px 10px rgba(90,115,65,0.25);
  color: #2a3f13;
  max-width: 410px;
  width: 92vw;
  padding: 36px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  position: relative;
  animation: cookieModalSlide 0.48s cubic-bezier(.34,1.8,.61,.8);
}
@keyframes cookieModalSlide {
  from {transform: translateY(90px) scale(0.98); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-modal-content h3 {
  margin-bottom: 8px;
  color: #417321;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.18rem;
}
.cookie-modal-content ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 0.99rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #BFDFAA;
  border-radius: 18px;
  transition: 0.3s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #417321;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(110,150,72,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(15px);
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #417321;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ====================
   RESPONSIVE UTILITIES
   ==================== */
@media (max-width: 480px) {
  .container { padding: 0 3px; }
  .content-wrapper { gap: 6px; }
  .footer-nav { flex-wrap: wrap; gap: 10px; }
}

/* ==============
   HELPER CLASSES
   ============= */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}
.text-center {
  text-align: center !important;
}
.align-center { align-items: center !important; }

/* ====================
   MEDIA QUERIES
   ==================== */
@media (max-width: 650px) {
  .feature-grid > div, .service-listing > div, .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
  h1, h2, h3 {
    word-break: break-word;
  }
}

/* ===============================
   ACCESSIBLE & CONSISTENT BUTTONS
   =============================== */
button, .btn, .cookie-btn {
  user-select: none;
}

/* ===================
   SELECTION STYLING
   =================== */
::selection {
  background: #CAEAA9;
  color: #3A2D14;
}

/* ====================
   DARK TEXT ON CARDS
   ==================== */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-name {
  color: #293F21;
}

/* ================
   ORGANIC BORDERS & TEXTURES (VISUALS)
   ================ */
/* Make sure the organic SVG backgrounds and textures are present in /assets/css referenced locations. If not, remove those background-image rules above for full compatibility. */
