/* styles.css - Desktop-optimiert */

/* Basis & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #f4f7f8; color: #333; line-height: 1.6; }
a { text-decoration: none; }

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #006868;
}
.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.logo {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
}
.nav-links a:hover {
  text-decoration: underline;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 104, 104, 0.9);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .nav-links.nav-open {
    max-height: 500px;
    padding: 1rem 0;
  }
}

/* Sicherstellen, dass Desktop-Nav immer sichtbar ist */
@media (min-width: 769px) {
  .nav-links {
    position: static !important;
    flex-direction: row !important;
    max-height: none !important;
    background: transparent !important;
  }
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

/* Hero */
.hero {
  background: #009999;
  color: #fff;
  padding: 6rem 1rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
}

/* Cards (Vision) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}
.card img {
  width: 60px;
  margin-bottom: 1rem;
  background: none;
}
.card h3 {
  color: #006868;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.card p {
  font-size: 1rem;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.about-content img {
  width: 220px;
  border-radius: 10px;
  background: none;
}
.about-text {
  max-width: 600px;
  text-align: left; /* Links ausgerichteter Text im Desktop-Layout */
}

/* Dienstleistungen */
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
}
.service-list li {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  text-align: center;
}
.service-list li:hover {
  transform: translateY(-4px);
}
.note {
  margin-top: 1.5rem;
  font-style: italic;
}

/* Kontakt */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}
.btn-whatsapp img {
  width: 28px;
  background: none;
}

/* Footer */
footer {
  background: #006868;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}
