/* style.css */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: #FF9800;
}

a:hover {
  color: #FFA726;
}

/* Header & Logo */
header {
  background-color: #1E1E1E;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-title {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 1rem;
}

.logo {
  width: 120px;               /* etwas größer für sichtbare Details */
  height: 120px;              /* gleichmäßiges Seitenverhältnis */
  object-fit: contain;
  border-radius: 100%;         /* betont die Kreisform */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.08);     /* leichter Zoom beim Hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* 3D-Tiefe */
}


.logo-title:hover .logo {
  transform: scale(1.05);
}

.site-title h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #FF9800;
}

.site-title p {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.85;
}

/* Navigation */
nav, .navbar {
  background-color: #1E1E1E;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 1rem;
  font-size: 1.1rem;
}

nav a, .navbar a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

/* Burger Menü */
.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #FF9800;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .navbar {
    display: none;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .navbar.active {
    display: flex;
  }
}

/* Karten & Sektionen */
.section-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem;
}

.section-card {
  background-color: #1E1E1E;
  border-radius: 8px;
  margin: 1rem;
  padding: 1rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.section-card img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.section-card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.section-card-link:hover .section-card,
.section-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
}
/* Leistungen */
.leistungen-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.leistungen-liste li {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.leistungen-liste li h3 {
  font-size: 1.2rem;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 10px;
}

.leistungen-liste li h3 i {
  color: #d47b00; /* Akzentfarbe passend zum Logo */
  font-size: 1.5rem;
}

.leistungen-liste li p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Container zentriert */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 📱 Mobile Ansicht: 1 Karte pro Zeile */
@media (max-width: 600px) {
  .leistungen-liste {
    grid-template-columns: 1fr;
  }
}


/* Container wächst, Footer bleibt unten */
.container {
  flex: 1;
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}


/* Kontaktformular */
.kontakt-formular {
  background: #1E1E1E;
  padding: 2rem;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,152,0,0.2);
}

.kontakt-formular input,
.kontakt-formular textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2b2b2b;
  color: white;
}

.kontakt-formular button {
  background-color: #FF9800;
  border: none;
  padding: 12px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.kontakt-formular button:hover {
  background-color: #ffa726;
}

/* Kontaktkarte */
.contact-card {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border: 3px solid #0077b6;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
  color: #000;
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #0077b6;
}

.contact-card a {
  color: #0077b6;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}

.qr-section {
  text-align: center;
  margin-top: 1rem;
}

.qr {
  max-width: 150px;
  margin-top: 0.5rem;
  border: 2px solid #0077b6;
  border-radius: 10px;
  padding: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #1E1E1E;
  color: #aaa;
  font-size: 14px;
  margin-top: auto;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d47b00, #ff9f1a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(212, 123, 0, 0.3);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.button i {
  font-size: 1.2rem;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(212, 123, 0, 0.4);
  background: linear-gradient(135deg, #ff9f1a, #d47b00);
}
