/* style.css – NaturGenuss Düsseldorf Corporate Professional Design (Flexbox only) */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F7F7EC;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background: #F7F7EC;
  color: #22303B;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #245A37;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
p {
  margin-bottom: 1.3em;
}
a {
  color: #245A37;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #7BB069;
  outline: none;
}
strong {
  font-weight: 600;
}

/* LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,90,55,.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(36,90,55,.06);
  padding: 28px 22px 24px 22px;
  flex: 1 1 340px;
  min-width: 270px;
  transition: box-shadow .18s;
  border: 1px solid #E6EAE3;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(36,90,55,0.11);
  border-color: #7BB069;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

/* HERO BANNER */
.hero {
  padding: 60px 0 50px 0;
  background: linear-gradient(90deg,#f7f7ec 65%, #e6eae3 100%);
  display: flex;
  align-items: center;
  min-height: 360px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 18px rgba(36,90,55,0.045);
}
.hero .content-wrapper {
  gap: 20px;
}
.hero h1 {
  font-size: 2.4rem;
}
.hero .subheadline {
  color: #245A37;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.8em;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 30px 0;
    min-height: 180px;
    border-radius: 0 0 12px 12px;
  }
  .hero .content-wrapper h1 {
    font-size: 1.55rem;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #E6EAE3;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 38px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #245A37;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background .17s, color .17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6EAE3;
  color: #193124;
}

/* Mobile burger */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 16px;
  background: #245A37;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 7px;
  padding: 6px 14px 4px;
  cursor: pointer;
  z-index: 1203;
  transition: background .2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #7BB069;
  outline: none;
}

@media (max-width: 970px) {
  .main-nav {
    gap: 10px;
    font-size: 0.94rem;
  }
  .logo {
    margin-right: 18px;
  }
}
@media (max-width: 820px) {
  .main-nav a {
    padding: 8px 7px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile nav overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 20px rgba(36,90,55,0.13);
  z-index: 1205;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(0.55,0.11,0.12,0.91);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  color: #245A37;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 20px 2px 0;
  cursor: pointer;
  transition: color .19s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #7BB069;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 18px 28px 0 38px;
  gap: 13px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #245A37;
  padding: 12px 0;
  border-radius: 8px;
  transition: background .18s, color .18s;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F7F7EC;
  color: #7BB069;
  outline: none;
}
@media (max-width: 370px) {
  .mobile-menu {
    width: 100%;
    max-width: none;
  }
  .mobile-nav {
    padding-left: 15px;
  }
}

/* CTA & BUTTONS */
.cta {
  display: inline-block;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #245A37;
  border: none;
  border-radius: 26px;
  box-shadow: 0 1px 10px rgba(36,90,55,.07);
  transition: background .16s, box-shadow .14s, transform .12s;
  text-align: center;
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 8px;
}
.cta.primary {
  background: #7BB069;
  color: #fff;
  box-shadow: 0 2px 16px rgba(123,176,105,0.09);
}
.cta:hover,
.cta:focus {
  background: #193124;
  transform: translateY(-1px) scale(1.027);
  box-shadow: 0 4px 20px rgba(36,90,55,0.13);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #245A37;
  color: #fff;
}

button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

/* Feature Icons */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 2px 0;
}
.feature-icons img {
  height: 40px;
  width: 40px;
  background: #F7F7EC;
  border-radius: 8px;
  padding: 7px;
  box-shadow: 0 1px 6px rgba(36,90,55,.03);
  transition: box-shadow .18s, border .18s;
  border: 1.5px solid #E6EAE3;
}
.feature-icons img:hover {
  box-shadow: 0 2px 14px rgba(36,90,55,.08);
  border-color: #7BB069;
}

/* LISTS */
ul, ol {
  margin-bottom: 1.3em;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 10px;
  padding-left: 0.1em;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  background: #F7F7EC;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(36,90,55,0.07);
  border: 1.5px solid #E6EAE3;
  margin-bottom: 20px;
  margin-top: 8px;
  min-width: 220px;
  color: #22303B;
  font-size: 1.08rem;
  transition: box-shadow .18s, border-color .16s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: #7BB069;
  box-shadow: 0 4px 30px rgba(36,90,55,0.12);
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #245A37;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  opacity: 0.96;
}

/* FORM ELEMENTS (if present)*/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 9px 13px;
  margin-bottom: 14px;
  border: 1.3px solid #bdd6c4;
  border-radius: 6px;
  background: #fff;
  color: #22303B;
  transition: border .15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #7BB069;
  box-shadow: 0 2px 9px rgba(123,176,105,0.12);
}

/* FOOTER STYLES */
footer {
  background: #245A37;
  color: #fff;
  margin-top: 60px;
  padding: 34px 0 15px 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 20px rgba(36,90,55,0.08);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .16s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #7BB069;
  color: #245A37;
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-branding img {
  max-height: 32px;
}
.footer-branding span {
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (max-width: 970px) {
  footer {
    border-radius: 12px 12px 0 0;
    margin-top: 32px;
    padding: 28px 0 9px 0;
  }
}
@media (max-width: 520px) {
  .footer-nav {
    gap: 10px;
  }
  .footer-branding {
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #22303B;
  box-shadow: 0 -2px 16px rgba(36,90,55,0.11);
  border-top: 2px solid #7BB069;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 1400;
  opacity: 1;
  transition: opacity .33s;
  padding: 18px 16px 18px 16px;
  gap: 16px;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.08rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 18px;
  font-size: 1.03rem;
  border: none;
  background: #245A37;
  color: #fff;
  margin: 0 0 0 0;
  font-weight: 600;
  transition: background .16s, color .13s, box-shadow .16s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: #E6EAE3;
  color: #245A37;
  border: 1px solid #bdd6c4;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #7BB069;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #bdd6c4;
  color: #245A37;
}

@media (min-width: 520px) {
  #cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 15px 60px;
  }
  .cookie-banner-content {
    flex: 2;
    font-size: 1.08rem;
  }
  .cookie-banner-buttons {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* COOKIE MODAL (PREFERENCES) */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 1600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,59,0.22);
  align-items: center;
  justify-content: center;
  transition: background .23s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  padding: 32px 30px 24px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(36,90,55,0.14);
  max-width: 440px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popupIn .33s cubic-bezier(.39,1.3,.38,1.01);
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(50px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 11px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #245A37;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #7BB069;
  outline: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.cookie-category strong {
  font-size: 1.08rem;
  margin-right: 6px;
}
.cookie-switch {
  display: inline-block;
  width: 40px;
  height: 21px;
  position: relative;
}
.cookie-switch input {
  display: none;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #bdd6c4;
  border-radius: 14px;
  transition: .23s;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .23s;
  box-shadow: 0 1px 4px rgba(36,90,55,.12);
}
.cookie-switch input:checked + .cookie-slider {
  background: #245A37;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(19px);
  background: #7BB069;
}
.cookie-category.disabled label,
.cookie-category.disabled strong {
  opacity: .52;
  cursor: not-allowed;
}

/* FEATURED LISTS (SERVICE/FEATURE ITEMS) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 9px;
  background: #F7F7EC;
  margin-bottom: 20px;
  border: 1.2px solid #E6EAE3;
  box-shadow: 0 1px 8px rgba(36,90,55,.04);
}

/* RESPONSIVE SPACING */
@media (max-width: 600px) {
  .section {
    padding: 22px 5px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    padding: 13px 8px;
  }
  .feature-icons {
    gap: 10px;
  }
}

/* HEADINGS: RESPONSIVE SCALE */
@media (max-width: 600px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.06rem; }
}

/* SCROLLBAR MODERNIZATION */
::-webkit-scrollbar { width: 12px; background: #F7F7EC; }
::-webkit-scrollbar-thumb { background: #E6EAE3; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #bdd6c4; }

/* MISC */
hr {
  border: 0;
  height: 1px;
  background: #E6EAE3;
  margin: 30px 0;
}

/* Visually Hidden for Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

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