body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background: #f4f8f4;
  color: #2f3e2f;
}

/* HERO (Magnolia Style) */
.hero {
  background: linear-gradient(rgba(58,125,68,0.65), rgba(58,125,68,0.65)),
              url("Copilot_vision_image.png") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 60px 20px 40px;
  height: 50vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    height: 45vh;
    padding: 50px 20px 30px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
    padding: 40px 20px 20px;
  }
}

/* LOGO-WRAPPER (zentriert + kontrollierte Größe) */
.logo-white-bg {
  display: flex;
  justify-content: center;
  align-items: center;

  width: clamp(140px, 23vw, 240px);
  height: clamp(140px, 23vw, 240px);

  border-radius: 50%;
  overflow: hidden; /* wichtig für Edge */
  margin-bottom: 20px;

  /* Glow round */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.logo-white-bg img {
  width: clamp(140px, 23vw, 240px);
  height: auto;
  display: block;
}

/* WEISSER KREIS UM DAS LOGO */
.logo-circle {
  background: white;
  border-radius: 50%;
  padding: 3px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  
  /* sanfter Glow */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  overflow: hidden; /* WICHTIG für Microsoft Edge */
}

/* LOGO IM KREIS */
.logo-circle img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero h1 {
  margin: 10px 0;
  font-size: 2.4em;
  font-weight: 600;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2em;
  max-width: 600px;
  margin: auto;
}

section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

h2 {
  color: #3a7d44;
  margin-bottom: 10px;
  border-bottom: 2px solid #e0efe0;
  padding-bottom: 5px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.cta {
  background: #e8f5e9;
  border-left: 6px solid #6bbf59;
}

iframe {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 40px 10px;
  font-size: 0.8em;
  color: #777;
  border-top: 1px solid #e0e0e0;
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: #6bbf59;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.2s;
}

.button:hover {
  background: #5aa94c;
  transform: translateY(-1px);
}

.info-item {
  margin-bottom: 12px;
  border-bottom: 1px dashed #cfe3cf;
  padding-bottom: 8px;
}

.info-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-item summary::-webkit-details-marker {
  display: none;
}

.info-item p {
  margin-top: 8px;
  font-size: 0.95em;
  color: #4a5a4a;
}

/* Pfeil Animation */
.arrow {
  transition: transform 0.3s ease;
}

details[open] .arrow {
  transform: rotate(180deg);
}

a {
  color: #3a7d44;
  text-decoration: none;
}

/* Desktop */
#map-desktop { display: block; }
#map-tablet { display: none; }
#map-mobile { display: none; }

/* Tablet */
@media (max-width: 1024px) {
  #map-desktop { display: none; }
  #map-tablet { display: block; }
  #map-mobile { display: none; }
}

/* Mobil */
@media (max-width: 768px) {
  #map-desktop { display: none; }
  #map-tablet { display: none; }
  #map-mobile { display: block; }
}
