/* ============ Allgemein ============ */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

h2, h3, h4 {
  color: #ffcc00; /* Goldgelb */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ============ Navigation ============ */
header {
  background: #111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 20px; /* rechts 40px, links 20px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  width: 120px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-right: 40px;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: #ffcc00;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
}

/* ============ Hero ============ */
.hero {
  height: 100vh; /* volle Höhe */
  width: 100%;
  background: url('img/Möglichkeit2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  color: #ffcc00;
}

.hero-content p {
  font-size: 1.4rem;
  color: #ffcc00;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.btn, .orange-btn {
  display: none; /* Entfernt die Terminbuttons komplett */
}

/* ============ Über uns ============ */
.ueber-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 60px 0;
}

.inhaber-text { flex: 1; }
.inhaber-bild { flex: 1; }
.inhaber-bild img { width: 100%; }

/* ============ Team ============ */
.team {
  padding: 60px 0;
  background: #111;
}

.team h3 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.team-card {
  background: #1a1a1a;
  border: 1px solid #333;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}

.team-card:hover { transform: translateY(-6px); }

.slideshow {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideAnimation 8s infinite;
  background: #000;
}

.slideshow img:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.slideshow img:nth-child(2) {
  animation-delay: 4s;
}

@keyframes slideAnimation {
  0% { opacity: 0; }
  12.5% { opacity: 1; }
  37.5% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.team-info { padding: 16px; }
.team-info h4 { margin-bottom: 8px; }

/* Fokus auf Gesichter bei bestimmten Bildern */
.slideshow img[alt="Ali"],
.slideshow img[alt="Sofia"] {
  object-position: center top;
}

/* ============ Galerie ============ */
.meisterwerke {
  padding: 60px 0;
}

.gallery-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gallery-grid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 2px solid #ffcc00;
}

/* ============ Preisliste ============ */
.preisliste {
  padding: 60px 0;
  background: #111;
}

.preisliste-grid {
  display: flex;
  gap: 30px;
}

.preis-box {
  background: #1a1a1a;
  padding: 20px;
  flex: 1;
  border: 1px solid #333;
}

/* ============ Standort ============ */
.standort {
  padding: 60px 0;
}

.map-container { margin-top: 20px; }

/* ============ Footer ============ */
.footer {
  background: #111;
  padding: 40px 0;
  text-align: center;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  padding: 10px;
}

.footer-logo {
  display: block;
  margin: 0 auto;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ============ Icons ============ */
.instagram-link svg {
  transition: transform 0.3s, fill 0.3s;
  vertical-align: middle;
}

.instagram-link:hover svg {
  fill: #ffcc00;
  transform: scale(1.2);
}

.instagram-footer {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.instagram-footer:hover {
  color: #ffcc00;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-content h2 { font-size: 2.2rem; }
  .hero-content p { font-size: 1.1rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ueber-grid,
  .team-grid,
  .preisliste-grid,
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .team-card,
  .preis-box,
  .footer-column {
    width: 100%;
    max-width: 100%;
  }
  .inhaber-bild img {
    width: 90vw;
    max-width: 320px;
  }
  .gallery-grid {
    flex-direction: column;
    gap: 20px;
  }
  .gallery-grid img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .footer-logo { max-width: 200px; }

  .nav-list {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #111;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
  }
  .nav-list.active { display: flex; }
  .menu-toggle { display: block; }
  nav { position: relative; }
}

@media (max-width: 600px) {
  .hero-content h2 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .slideshow { height: 250px; }
  .slideshow img[alt="Ali"],
  .slideshow img[alt="Sofia"] {
    object-position: center 20%;
  }
}

/* === Face-safe framing for team slides (added by ChatGPT) === */

/* Mehr Höhe für weniger Top-Cropping */
.slideshow { height: 340px; }

@media (max-width: 1024px) {
  .slideshow { height: 360px; }
}
@media (max-width: 768px) {
  .slideshow { height: 420px; }
}
@media (max-width: 480px) {
  .slideshow { height: 460px; }
}

/* Sicherstellen, dass alle Slideshow-Bilder korrekt füllen */
.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  background: #000;
}

/* Für diese drei Mitarbeiter die Ausrichtung leicht nach oben verschieben */
.slideshow img[src*="Ayad"],
.slideshow img[src*="Khadir"],
.slideshow img[src*="Ahmed"] {
  object-position: 50% 28%;
}


/* === Meisterwerke Galerie (optimiert für gleiche Größe + volle Sichtbarkeit) === */

.meisterwerke .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
  justify-items: center;
}

/* Einheitliche Bildboxen */
.meisterwerke .gallery-grid img {
  width: 100%;
  height: 280px;               /* gleiche Höhe für alle */
  object-fit: cover;           /* Standard: füllt schön aus */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* 👉 Ausnahme für Dauerwelle-Transformation – alles zeigen */
.meisterwerke .gallery-grid img[src*="Dauerwell-Transformation"] {
  object-fit: contain;         /* zeigt alles */
  background-color: #000;      /* schwarzer Rand bei Querformat */
}

/* leichte Hover-Animation (optional) */
.meisterwerke .gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .meisterwerke .gallery-grid img {
    height: 220px;
  }
}




/* Ende der style.css Datei */