/* ===================== */
/*       RESET & BOXES    */
/* ===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  background-color: white;
  color: black; /* Grundfarbe für Text */
}

/* ===================== */
/*       TYPOGRAPHY       */
/* ===================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
  color: black;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: black;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===================== */
/*       BUTTONS          */
/* ===================== */
.button-1 {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
}

.button-1:hover {
  background-color: #0056b3;
}


/* ===================== */
/*       FOOTER          */
/* ===================== */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  margin-bottom: 1.5rem;
}

.legal-links a {
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}

.legal-links a:hover {
  color: #ec4899; /* Herz-Pink */
}

.footer-section .contact-info a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section .contact-info a:hover {
  color: #ec4899; /* Herz-Pink */
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons .social-icon {
  width: 24px;  /* Ursprungsgröße wiederhergestellt */
  height: 24px; /* Ursprungsgröße wiederhergestellt */
}

.social-icons .social-icon path {
  transition: fill 0.2s;
}

/* LinkedIn bleibt blau */
.social-icons a.hover-linkedin .social-icon path {
  fill: #0a66c2;
}

/* Herz-Abschnitt */
.heart-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.heart-icon {
  width: 20px;
  height: 20px;
  fill: #ec4899; /* Herz-Pink */
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
}
.language-switch {
  text-align: center;
  margin-top: 2rem;
}

.lang-btn {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: white;
  color: #1a2a40;
  font-weight: 600;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.lang-btn:hover {
  background: #ec4899;
  color: white;
  border-color: #ec4899;
}
@media (max-width: 768px) {
  .lang-btn {
    background: #f3f4f6; /* leichtes Hellgrau statt weiß */
    border-color: #cbd5e1; /* etwas dunkler */
  }
}
/* ---------- MOBILE FIX: Herz + Copyright harmonisch & mittig ---------- */
@media (max-width: 767px) {
  /* Herzbereich kompakt & mittig */
  .heart-section {
    justify-content: center;
    text-align: center;
    font-size: 0.9rem; /* etwas kleiner für mobile Harmonie */
    gap: 0.25rem;
  }

  .heart-section .heart-icon {
    width: 16px;
    height: 16px;
    fill: #ec4899; /* Herz-Pink */
    vertical-align: middle;
  }
}
/* Extra-Anpassung für sehr kleine Geräte */
@media (max-width: 400px) {
  .heart-section {
    font-size: 0.8rem;
  }
}
/* ===================== */
/*       GLOBAL ICONS     */
/* ===================== */

/* Abstand oben für den Abschnitt */
.content-below-featured {
  padding-top: 80px; /* Abstand über der Überschrift */
}

/* Wrapper für die Icons */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 nebeneinander auf Desktop */
  gap: 40px; /* Abstand zwischen den Grid-Items */
  max-width: 1000px;
  margin: 0 auto;
}

/* Einzelne Items */
.icons-grid .item {
  text-align: center; /* Überschrift und Text zentrieren */
}

/* Kreise */
.icon-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px auto; /* Abstand unterhalb des Kreises */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Überschrift unter dem Kreis */
.icons-grid .item h3 {
  margin-bottom: 20px; /* Abstand zum Text */
}

/* Text unter der Überschrift */
.icons-grid .item p {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .icons-grid {
    grid-template-columns: 1fr; /* Untereinander auf Mobil */
    gap: 30px;
  }

  .icon-circle {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
  }
}


/* ===================== */
/*       LINKS            */
/* ===================== */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* ===================== */
/*       FAQ            */
/* ===================== */

.faq-container {
            max-width: 800px;
            padding-top: 0px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .faq-item {
            border-bottom: 1px solid #ddd;
        }
        .faq-question {
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            transition: background 0.3s;
            color: black;
        }
        .faq-question:hover {
            background-color: #f0f0f0;
        }
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 15px;
            color: #007bff;
        }
        .faq-question.active::after {
            content: '−';
        }
        .faq-answer {
            display: none;
            padding: 15px;
            background-color: #fafafa;
            color: black;
        }
        .faq-answer.active {
            display: block;
        }
        .faq-header {
            max-width: 800px;
            margin: 20px auto;
            text-align: center;
            font-weight: bold;
            color: #222;
        }
        @media (max-width: 740px) {
            .faq-question {
                padding: 10px;
            }
            .faq-answer {
                padding: 10px;
            }
        }