/* ======== CSS FÜR CHRISTIAN GÄRLICH – BARRIEREFREI OPTIMIERT ======== */
.young-glazier-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.young-glazier-header {
  text-align: center;
  margin-bottom: 3rem;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #171a1c; /* Dunkler für maximalen Kontrast */
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.title-line {
  width: 60px;
  height: 2px;
  background: #0056b3; /* Dunkleres Blau für besseren Kontrast */
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 600; /* Fetter für bessere Lesbarkeit */
  color: #0056b3; /* Kräftiges, dunkles Blau (Kontrast > 4.5:1) */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.company-info {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a5568; /* Dunkles, neutrales Grau (Kontrast > 4.5:1) */
  margin-top: 0.5rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.profile-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.profile-image:hover img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 86, 179, 0.95); /* Deckendes, dunkles Blau für Lesbarkeit */
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Leichter Schatten für Sicherheit */
}

.intro-text {
  padding: 1rem;
}

.intro-text .highlight {
  font-size: 1.5rem;
  color: #171a1c; /* Sehr dunkel für hohen Kontrast */
  line-height: 1.4;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0056b3;
  padding-left: 1rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7; /* Mehr Zeilenabstand für Komfort */
  color: #2d3748; /* Sehr dunkles Grau für maximale Lesbarkeit */
}

.quick-contact {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0056b3; /* An dunkles Farbschema angepasst */
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
  border: 2px solid transparent;
}
.cta-button:hover, .cta-button:focus {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
  border-color: #003875;
  outline: none; /* Styling über 'border' für Fokus */
}

/* NEU: Spezifischer Stil für den Unternehmens-Button (von gaerlich.org) */
.cta-button.company-button {
  margin-top: 1.5rem;
  background-color: #0056b3;
}
.cta-button.company-button:hover {
  background-color: #004494;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .main-title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.4rem;
  }
  .quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .phone-link {
    margin-left: 0;
    justify-content: center;
  }
}