/* ======================================================
   Vortex Reisen & Genuss - NATURE ORGANIC FLEXBOX CSS
   Responsive, modern, unmistakably nature inspired
   ======================================================
   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,
u, i, center,
dl, dt, dd, menu, 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, 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; box-sizing: border-box; }
body { line-height: 1.6; background: #F5F7F1; color: #2C3E50; min-height: 100vh; }
section, nav, footer, header, main { display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; border: 0; }
button, input, select, textarea { font: inherit; background: none; border: none; outline: none; }

/* ========================
   BRAND & ORGANIC COLORS
   ======================== */
:root {
  --color-primary: #2C3E50; /* Dunkelblau, erdig/natürlich */
  --color-secondary: #E67E22; /* Orange/Erde, Akzent */
  --color-accent: #F1C40F; /* Gelb/Herbstlaub */
  --color-green: #5D9440; /* Waldgrün, natürlich */
  --color-forest: #41774C;
  --color-beige: #F5F7F1; /* Naturhell, Hintergrund */
  --color-brown: #B6916E; /* Holz-Braun */
  --color-sand: #EEE7DD;
  --color-bg-card: #FAF9F6;
  --color-shadow: rgba(93, 148, 64, 0.12);
  --color-hr: #DAD8CA;
  --color-text: #2C3E50;
  --color-text-light: #F5F7F1;
  --shadow-card: 0 6px 32px 0 var(--color-shadow);
}

/* ========================
   TYPOGRAPHY
   ======================== */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--color-beige);
  color: var(--color-text);
}
h1,h2,h3,h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, li, ul, ol, blockquote { font-size: 1rem; color: var(--color-text); margin-bottom: 14px; }
strong, b { font-weight: 700; color: var(--color-green); }
em, i { font-style: italic; }
a { color: var(--color-primary); }
a:hover { color: var(--color-green); text-decoration: underline; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* ========================
   LAYOUT SPACING & CONTAINER
   ======================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px 40px 30px 36px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 18px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-image-section {
  display: flex; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: stretch; }
}

/* Organic divider */
hr {
  border: 0;
  height: 2px;
  background: var(--color-hr);
  border-radius: 3px;
  margin: 30px 0;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: var(--color-beige);
  padding: 10px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  position: sticky; top: 0; z-index: 50;
}
header .container { flex-direction: row; align-items: center; justify-content: space-between; gap: 0; }
.logo img { height: 52px; margin-right: 30px; }
@media (max-width: 600px) {
  .logo img { height: 40px; margin-right: 8px; }
}
.main-nav { display: flex; gap: 20px; align-items: center; }
.main-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 24px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-green);
  color: var(--color-text-light);
}
.cta-btn {
  background: var(--color-green);
  color: var(--color-text-light) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  padding: 11px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  margin-left: 18px;
  transition: background 0.18s, transform 0.14s, box-shadow 0.17s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 var(--color-shadow);
}

/* ========== BURGER MENU ========= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  color: var(--color-text-light);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 20px;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #f5f7f1EE;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.73,.16,.14,1.18);
  box-shadow: -4px 0 32px 0 var(--color-shadow);
  padding-top: 18px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-green);
  color: var(--color-text-light);
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  width: 40px; height: 40px;
  margin: 14px 24px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 32px;
  padding-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.28rem;
  color: var(--color-primary);
  background: transparent;
  padding: 10px 0;
  border-radius: 24px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: var(--color-text-light);
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(140deg, #f5f7f1 85%, #E67E22 150%);
  min-height: 320px;
  margin-bottom: 60px;
  padding: 2rem 0 2.5rem;
  border-radius: 0 80px 48px 0/0 60px 36px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  display: flex;
  flex-direction: column;
}
.hero .container { justify-content: flex-start; }
.hero .content-wrapper {
  max-width: 760px;
  gap: 18px;
}
.hero h1 { color: var(--color-green); }
.hero p { font-size: 1.25rem; color: var(--color-forest); }
.hero .cta-btn {
  margin-top: 14px;
  background: var(--color-secondary);
  color: var(--color-text-light) !important;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--color-green);
  color: var(--color-text-light) !important;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 28px 18px 0/0 22px 13px 0;
    min-height: 170px;
    margin-bottom: 30px;
    padding: 1.1rem 0 1.7rem;
  }
}

/* =========================
   CARDS / OFFER GRID
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 6px;
}
.feature-grid > li {
  background: var(--color-sand);
  box-shadow: 0 4px 18px 0 var(--color-shadow);
  border-radius: 32px 24px 24px 32px;
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature-grid > li:hover {
  box-shadow: 0 6px 34px 0 var(--color-shadow);
  transform: translateY(-6px) scale(1.015);
}
.feature-grid img {
  width: 34px; height: 34px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid > li { min-width: 170px; padding: 15px 12px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 14px; }
  .feature-grid > li { min-width: unset; width: 100%; padding: 16px 10px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: var(--color-bg-card); border-radius: 26px; box-shadow: var(--shadow-card); padding: 24px; display: flex; flex-direction: column; gap: 14px; }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .content-grid { flex-direction: column; gap: 12px; }
}

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

/* Feature list (no icons) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   TESTIMONIAL CARDS
   ======================== */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--color-green);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 40px 26px 40px 26px;
  box-shadow: 0 4px 23px 0 var(--color-shadow);
  min-width: 270px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card strong {
  color: var(--color-accent); font-size: 1rem; margin-left: 16px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 var(--color-green);
  transform: translateY(-3px) scale(1.012);
}
@media (max-width: 900px) {
  .testimonial-carousel { flex-direction: column; gap: 14px; }
  .testimonial-card { min-width: unset; font-size: 1rem; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 14px; font-size: 0.99rem; }
}

/* Ensure testimonial text contrasts highly */
.testimonial-card p, .testimonial-card strong {
  color: #fff !important;
}

/* ========================
   BUTTONS / INTERACTIVE
   ======================== */
button, .cta-btn {
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.12s, box-shadow 0.16s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ========== LINKS ========= */
.footer-nav a {
  color: var(--color-primary);
  margin-right: 16px;
  font-size: 0.99rem;
  transition: color 0.13s;
}
.footer-nav a:last-child { margin-right: 0; }
.footer-nav a:hover, .footer-nav a:focus { color: var(--color-green); text-decoration: underline; }

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--color-bg-card);
  padding: 48px 0 30px 0;
  margin-top: 80px;
  border-radius: 60px 0 0 0/42px 0 0 0;
  box-shadow: 0 -2px 14px 0 var(--color-shadow);
}
footer .container { flex-direction: row; gap: 48px; align-items: flex-start; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-info img { width: 62px; height: 62px; border-radius: 50%; box-shadow: 0 2px 10px 0 var(--color-shadow); background: var(--color-green); }
.footer-info p { color: var(--color-primary); font-size: 1rem; }
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 18px; align-items: stretch; }
  .footer-info { flex-direction: row; }
}
@media (max-width: 600px) {
  footer { padding: 24px 0 18px 0; margin-top: 34px; border-radius: 22px 0 0 0/16px 0 0 0; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-info { flex-direction: column; gap: 7px; }
  .footer-info img { width: 36px; height: 36px; }
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--color-forest);
  color: var(--color-text-light);
  padding: 20px 32px;
  z-index: 9000;
  box-shadow: 0 -2px 28px 0 var(--color-shadow);
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  animation: fadeInCookie 0.7s;
}
@keyframes fadeInCookie { from { opacity: 0; bottom: -40px; } to { opacity: 1; bottom: 0; } }
.cookie-banner p { margin: 0; font-size: 1rem; color: var(--color-text-light); }
.cookie-banner .cookie-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  border-radius: 24px;
  margin-right: 10px;
  padding: 9px 24px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 var(--color-shadow);
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-btn:last-child { margin-right: 0; }
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-green);
  color: var(--color-text-light);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-secondary);
  color: var(--color-beige);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--color-green);
  color: var(--color-accent);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 13px; padding: 18px 10px; font-size: 0.91rem; }
  .cookie-banner .cookie-btn { width: 100%; margin-bottom: 6px; }
}

/* Modal Overlay for Cookie Categories */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.32);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeInModal 0.33s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal-content {
  background: var(--color-bg-card);
  border-radius: 36px 36px 24px 24px;
  padding: 38px 24px 24px 24px;
  min-width: 310px;
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 6px 28px 0 var(--color-shadow);
  position: relative;
  animation: popInModal 0.38s cubic-bezier(.71,-0.16,.3,1.18);
}
@keyframes popInModal { from { transform: scale(0.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal-content h3 { font-size: 1.35rem; margin-bottom: 20px; color: var(--color-green); }
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px; margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 42px; height: 22px; border-radius: 14px;
  background: var(--color-hr);
  position: relative;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute; left: 0; top: 0;
  width: 42px; height: 22px; border-radius: 14px;
  background: var(--color-hr);
  transition: background 0.20s;
}
.cookie-toggle input:checked + .slider {
  background: var(--color-green);
}
.cookie-toggle .slider:after {
  content: "";
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%; background: #fff;
  transition: transform 0.23s;
}
.cookie-toggle input:checked + .slider:after {
  transform: translateX(20px);
  background: var(--color-accent);
}
/* Essential cookies always enabled */
.cookie-category[data-essential="true"] .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex; flex-direction: row; justify-content: flex-end; align-items: center; gap: 18px;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}
.cookie-modal-close {
  background: var(--color-green);
  border-radius: 50%; color: #fff; width: 32px; height: 32px; position: absolute; right: 14px; top: 8px;
  font-size: 1.3rem; border: none; cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-secondary); color: var(--color-primary);
}

/* ========================
   MISC 
   ======================== */
strong { color: var(--color-green); }
b { color: var(--color-secondary); }
mark { background: var(--color-accent); color: var(--color-primary); border-radius: 2px; padding: 0 4px; }

/* Responsive Images */
img, svg { max-width: 100%; height: auto; }

/* List spacing for organic feel */
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

/* ========================
   ORGANIC SHAPES & TEXTURES
   ======================== */
.section, .card, .feature-grid > li, .testimonial-card, .hero, footer {
  border-radius: 40px 35px 28px 42px;
  /* Subtle organic shadows - all natural */
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

/* Subtle paper texture as background for hero and .section on large screens */
@media (min-width: 1200px) {
  .section, .hero {
    background-image: url('../assets/paper-texture.png');
    background-size: auto 170%;
    background-repeat: repeat;
    background-blend-mode: lighten;
  }
}

/* ========================
   SPACING UTILITIES & CLEANUP
   ======================== */
.mt-20 { margin-top: 20px !important; } .mb-16 { margin-bottom: 16px !important; }
.pt-32 { padding-top: 32px !important; } .pb-24 { padding-bottom: 24px !important; }

/* ========================
   RESPONSIVE STYLES
   ======================== */
@media (max-width: 900px) {
  .container { max-width: 98vw; padding: 0 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 4px; }
  ul, ol { gap: 7px; }
}

/* ========================
   FORM ELEMENTS
   ======================== */
input, textarea, select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-hr);
  font-size: 1rem;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px var(--color-accent);
}

/* ========================
   ANIMATIONS
   ======================== */
.cta-btn, .cookie-btn, .feature-grid > li, .testimonial-card, .card, .card-content {
  transition: box-shadow 0.14s, transform 0.13s, background 0.13s, color 0.12s;
}

@media (hover: hover) {
  .feature-grid > li:hover, .cta-btn:hover, .testimonial-card:hover { filter: brightness(1.01) saturate(1.13); }
}

/* ========================
   Z-INDEX LAYERS
   ======================== */
header { z-index: 50; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 9000; }
.cookie-modal { z-index: 9999; }

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