/* HOMEPAGE ANFANG */
/* HOMEPAGE ANFANG */
/* HOMEPAGE ANFANG */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f9fafb;
  color: #111;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

.text-center {
  text-align: center;
}


/* Hero BEGINN */
.hero {
  background: #000000;
  font-family: 'Merriweather';
  padding: 5rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: -5rem;
}

.hero-text h1 {
  font-size: 4.9rem;
  font-weight: 900;
  margin-bottom: 0rem;
  color: #23F65B;
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 3px;
  text-underline-offset: 20px;
  text-rendering: optimizeLegibility;
  text-shadow: 0px 0px 20px #23F65B;
}

.hero-text .subtitle {
  font-size: 36px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  margin-bottom: 1rem;
  color: #fff;
}

.subtitle .highlight {
    color: #B7B3FE;
}

.model-container {
    width: 120%;
    height: 550px;
    position: relative;
    margin-left: -10%;
}

model-viewer {
    width: 100%;
    height: 115%;
    border-radius: 8px;
}

/* Hero ENDE */

/* Learn More Transition */
.learn-more-transition {
  background: #000000;
  padding: 2rem 0;
  text-align: center;
}

.learn-more-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.learn-more-text {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  padding-top: 4rem;
}

.arrow-down {
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.arrow-down:hover {
  transform: translateY(5px);
  color: #23F65B;
}

/* Statistics Section */
.statistics {
  background: #000000;
  color: #fff;
  padding: 6rem 0;
  font-family: 'Merriweather', serif;
}

.statistics-inner {
  display: flex;
  align-items: center;
}

/* Statistics Content */
.statistics-content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

/* Header Text */
.stats-header {
  text-align: center;
}

.stats-intro {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.stats-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 4px;
  text-underline-offset: 15px;
}

.stats-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
}

.stats-description .highlight, .stats-conclusion .highlight {
  color: #23F65B;
  text-decoration: underline;
  font-weight: 700;
}

/* Babies Grid Container */
.babies-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0;
}

.babies-grid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer Text */
.stats-footer {
  text-align: center;
}

.stats-conclusion {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .statistics-inner {
    grid-template-columns: 1fr; /* Einspaltig auf Handy */
    gap: 3rem;
  }
  
  .iv-bag {
    max-width: 200px;
  }
  
  .stats-number {
    font-size: 3rem;
  }
  
  .stats-intro,
  .stats-description {
    font-size: 1.2rem;
  }
  
  .stats-conclusion {
    font-size: 1.1rem;
  }
}
/* Statistics ENDE  */

/* Population Growth BEGINN */
.section#population {
  background: #ffffff;
  padding: 4rem 0;
  font-family: 'Merriweather', serif;
}

.population-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Population Chart */
.population-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.population-chart {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}

/* Population Content */
.population-content {
  padding-left: 2rem;
}

.population-title {
  font-size: 3rem;
  font-weight: 900;
  color: #23F65B;
  margin-bottom: 0.5rem;
}

.population-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Learn More Button */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #B7B3FE, #9C95FE);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(183, 179, 254, 0.3);
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 179, 254, 0.4);
  background: linear-gradient(135deg, #9C95FE, #8A84FE);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Population Footer */
.population-footer {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.additional-info {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0rem;
  font-weight: 400;
}

/* World Map */
.world-map-container {
  /* das wirkt hella bullshitted aber damit ist die world map aligned mit den restlichen elementen, sieht vorallen mit dem abschnitt darunter gut aus */
  margin: -8rem ;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.world-map {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.conclusion-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  margin-top: 0rem;
  margin-bottom: -2rem;
  font-weight: 400;
}

/* Highlight Styles */
.highlight-green {
  color: #23F65B;
  font-weight: 700;
  /* Keine Unterstreichung, nur visuelle Markierung */
}

.highlight-blue {
  color: #B7B3FE;
  font-weight: 700;
  /* Keine Unterstreichung, nur visuelle Markierung */
}

/* Responsive Design */
@media (max-width: 768px) {
  .population-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .population-content {
    padding-left: 0;
    text-align: center;
  }
  
  .population-title {
    font-size: 2.5rem;
  }
  
  .population-text,
  .additional-info,
  .conclusion-text {
    font-size: 1rem;
  }
  
  .learn-more-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Population Growth ENDE */

/* Improvements BEGINN */
.improvements {
  background: #f9fafb;
  padding: 1rem 0;
  font-family: 'Merriweather', serif;
}

/* Header (links ausgerichtet) */
.improvements-header {
  text-align: left;
  margin-bottom: 4rem;
}

.improvements-title {
  font-size: 3rem;
  font-weight: 900;
  color: #23F65B;
  margin-bottom: 0rem;
}

.improvements-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  max-width: 600px;
}

/* Erstes Grid - EXAKT wie .hero-inner */
.improvements-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Zweites Grid - gespiegelt */
.improvements-inner-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: -2rem;
}

/* Text-Styling wie .hero-text */
.improvements-text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
}

.improvements-text .iron-intro {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 1rem;
  font-weight: 400;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}

.improvements-text .iron-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #23F65B;
  margin-bottom: 0.5rem;
}

.improvements-text .iron-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  margin-bottom: 2rem;
}

.improvements-text .solution-text {
  font-size: 1.7rem;
  color: #111;
  font-weight: 500;
}

/* Bild-Container wie .hero-img */
.improvements-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hospital-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
}

.body-diagram {
  max-width: 400px;
  height: auto;
}

/* Highlight Styles */
.highlight-red {
  color: #ef4444;
  font-weight: 700;
}

.highlight-purple {
  color: #B7B3FE;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .improvements-inner,
  .improvements-inner-reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .improvements-title {
    font-size: 2.5rem;
  }
  
  .improvements-subtitle {
    font-size: 1rem;
  }
  
  .improvements-text {
    font-size: 1rem;
  }
  
  .improvements-text .iron-amount {
    font-size: 2rem;
  }
  
  .hospital-image {
    max-width: 250px;
  }
  
  .body-diagram {
    max-width: 200px;
  }
}
/* Improvements ENDE */

/* Chelation Therapy BEGINN */
.therapy {
  background: #f9fafb;
  padding: 3rem 0;
  font-family: 'Merriweather', serif;
}

.therapy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: start;
}

.therapy-text {
  padding-right: 2rem;
}

.therapy-title {
  font-size: 3rem;
  font-weight: 900;
  color: #23F65B;
  margin-bottom: 2rem;
}

.therapy-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 80%;
}

.therapy-problem {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  max-width: 60%;
}

.therapy-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.molecule-image {
  max-width: 110%;
  height: auto;
}
/* Chelation Therapy ENDE */

/* Our Goal BEGINN */
.goal {
  background: #f9fafb;
  padding: 6rem 0;
  font-family: 'Merriweather', serif;
  margin-bottom: -8rem;
}

.goal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.goal-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bacteria-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.goal-text {
  padding-left: 2rem;
}

.goal-title {
  font-size: 3rem;
  font-weight: 900;
  color: #23F65B;
  margin-bottom: 2rem;
}

.goal-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  max-width: 80%;
}

.goal-additional {
  background: #f9fafb;
  padding: 4rem 0;
  font-family: 'Merriweather', serif;
}

.goal-top-section,
.goal-bottom-section {
  text-align: left;
  margin: 2rem 0;
}

.goal-divider {
  border: none;
  height: 2px;
  background-color: #ccc;
  width: 60%;
  margin: 2rem auto;
}

.goal-intro-text,
.goal-conclusion-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

.goal-image-placeholder {
  margin: 3rem 0;
  text-align: center;
}

.goal-image-placeholder img {
  max-width: 100%; /* Bild passt sich Container-Breite an */
  height: auto; /* Höhe passt sich proportional an */
}


/* Responsive Design */
@media (max-width: 768px) {
  .therapy-inner,
  .goal-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .therapy-text,
  .goal-text {
    padding: 0;
    text-align: center;
  }
  
  .therapy-title,
  .goal-title {
    font-size: 2.5rem;
  }
  
  .therapy-description,
  .therapy-problem,
  .goal-description {
    font-size: 1rem;
  }
}
/* Our Goal ENDE */

/* Footer BEGINN */
.explore-more {
  background: #ffffff;
  padding: 1rem 0;
  text-align: center;
  font-family: 'Merriweather', serif;
}

.explore-text {
  text-align: left;
}

.explore-header {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.explore-title {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  text-decoration: underline;
  text-decoration-color: #23F65B;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
  margin-bottom: 6.5rem;
}

.microbe-mascot {
  width: 350px;
  height: auto;
}

.explore-subtitle {
  text-align: left;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 4rem;
  font-weight: 700;
  margin: 0;
}

/* Navigation Cards */
.nav-cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: -2rem;
}

.nav-card {
  width: 300px;
  text-decoration: none;
  color: inherit;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-label {
  background: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}