/* /css */
/* File: style.css */

/* CSS-Variablen */
:root {
  --primary-color: #e8501b;
  --secondary-color: #111;
  --body-bg: #f5f5f5;
  --text-color: #333;
  --font-base: "Open Sans", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

/* Basis-Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY & TYPOGRAFIE */
body {
  font-family: var(--font-base);
  background: var(--body-bg);
  color: var(--text-color);
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

/* LINKS */
a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--primary-color);
}

/* NAVIGATION */
.main-nav {
  background: var(--secondary-color);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 5px 0;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}
.nav-links li a.highlight {
  color: #fff;
  background: var(--primary-color);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
}
.nav-links li a.highlight:hover {
  background: #c74217;
}

/* HERO-BEREICH */
.hero,
.subpage-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1920&q=80');
}
#lebensmittel-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1920&q=80');
}
#verpackungen-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=1920&q=80');
}
#obst-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=1920&q=80');
}
#unterhosen-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1596516109370-29001ec8ec36?auto=format&fit=crop&w=1920&q=80');
}
#training-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1920&q=80');
}
#faq-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
}
#kontakt-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1423666639041-f140881c50bc?auto=format&fit=crop&w=1920&q=80');
}
.overlay {
  /* Overlay is now handled in background-image */
  display: none;
}
.hero-content,
.subpage-hero .hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* CTA-BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 14px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #c74217;
}

/* TEASER */
.teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: -80px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
}
.teaser-item {
  background: #fff;
  border-radius: 12px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.teaser-item:hover {
  transform: translateY(-5px);
}
.teaser-image {
  height: 200px;
  overflow: hidden;
}
.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.teaser-item:hover .teaser-image img {
  transform: scale(1.05);
}
.teaser-content {
  padding: 2rem;
}
.teaser-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.more-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* CONTENT-BEREICHE */
.content-section {
  background: #fff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Zwei-Spalten-Layout für Listen-Bereiche (lebensmittel.html etc.) */
.lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.lists-container .list-column {
  min-width: 0;
}
@media (max-width: 768px) {
  .lists-container {
    grid-template-columns: 1fr;
  }
}

.checklist,
.warning-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.checklist li,
.warning-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.checklist li::before {
  content: "✔";
  color: var(--primary-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
  font-weight: bold;
}
.warning-list li::before {
  content: "✘";
  color: var(--primary-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
  font-weight: bold;
}

/* INFO-BOX */
.info-box {
  background: #fafafa;
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 4px;
}
.info-box h3 {
  margin-bottom: 0.5rem;
}

/* TRAINING */
.training-block {
  margin-bottom: 2rem;
}

/* FRUIT-SECTIONS (obst.html) */
.fruit-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.fruit-section img {
  width: 150px;
  border-radius: 8px;
}
.fruit-section h2 {
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 2rem;
}

/* KONTAKT-FORM */
.contact-form,
.social-links {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  flex: 1 1 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-form form,
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form form input,
.contact-form form textarea,
.newsletter-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.newsletter-form {
  margin-top: 1rem;
}

/* SOCIAL LINKS */
.social-links ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.social-links ul li {
  margin-bottom: 0.5rem;
}
.social-links ul li a {
  color: var(--primary-color);
  font-weight: bold;
}
.social-links {
  margin-top: 2rem;
}

/* FLEX LAYOUT in kontakt.html */
.container.content-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

/* NEWSLETTER SECTION (Revenue Generation) */
.newsletter-section {
  margin: 4rem auto;
}
.newsletter-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #c74217 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232, 80, 27, 0.3);
}
.newsletter-box h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.newsletter-box p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  padding: 14px;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
}
.newsletter-form button {
  cursor: pointer;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}

/* PRODUCTS SECTION (Affiliate Revenue) */
.products-section {
  margin: 4rem auto;
}
.products-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(232, 80, 27, 0.15);
}
.product-image {
  height: 250px;
  overflow: hidden;
  background: #f9f9f9;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.product-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.product-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1rem 0;
}
.product-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  margin-top: 0.5rem;
}
.product-btn:hover {
  background: #c74217;
  color: #fff;
}

/* FOOTER */
.main-footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 1.5rem 0;
  margin-top: 2rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-content a {
  color: #fff;
  font-weight: bold;
}
.footer-content a:hover {
  color: var(--primary-color);
}
