/* ========================================
   INDEX.HTML - STARTSEITE (BILDER VOLLSTÃ„NDIG)
   ======================================== */

/* HERO */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 4rem 0;
}

.hero-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-photo img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--dark-color);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* TRUST BAR */
.trust-bar {
  background: white;
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* SERVICES */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-column ul {
  list-style: none;
}

.service-column li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(45, 143, 163, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.service-column strong {
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.5rem;
}

/* ABOUT */
.about-content {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-content p {
  line-height: 1.8;
  color: #555;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.price {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.price span {
  color: var(--primary-color);
  font-weight: 700;
}

.billing-details {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.travel-costs {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.travel-costs h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* TEASER (INDEX) - BILDER VOLLSTÃ„NDIG */
.article-teaser {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.article-teaser:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Teaser Bild - NICHT ABGESCHNITTEN */
.teaser-image {
  flex: 0 0 320px;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: auto;
}

.teaser-image img,
.teaser-image picture img,
.teaser-image figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8f9fa;
  max-height: 400px;
}

.teaser-image picture,
.teaser-image figure {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
}

.teaser-image picture img,
.teaser-image figure img {
  height: auto;
  object-fit: contain;
  background: #f8f9fa;
  max-height: 400px;
}

.teaser-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.teaser-content h2 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin: 0;
  line-height: 1.3;
}

.teaser-date {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.teaser-excerpt {
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* TOOLKIT CTA */
.toolkit-cta-section {
  background: linear-gradient(135deg, #2d8fa3 0%, #1f6f7f 100%);
  padding: 3rem 0;
  color: white;
}

.toolkit-cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-features {
  list-style: none;
  margin-bottom: 2rem;
}

.cta-features li {
  padding: 0.5rem 0;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq-wrapper {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

details {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

details:last-child {
  border-bottom: none;
}

details summary {
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

details summary::after {
  content: "+";
  font-size: 1.5rem;
  transition: var(--transition);
}

details[open] summary::after {
  content: "âˆ’";
}

details p {
  margin-top: 1rem;
  color: #555;
  line-height: 1.6;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.contact-photo img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.contact-details h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #333;
  margin-bottom: 1rem;
  transition: var(--transition);
  font-weight: 500;
}

.info-item:hover {
  color: var(--primary-color);
}

.info-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(45, 143, 163, 0.1);
  border-radius: 50%;
}

.info-item svg {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-flex {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-cta-section .container {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .article-teaser {
    flex-direction: column;
    gap: 0;
  }

  .teaser-image {
    flex-basis: auto;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .teaser-image img {
    max-height: 250px;
  }

  .teaser-content {
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .teaser-content h2 {
    font-size: 1.2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }
}