/* style.css */

:root {
  --header-footer-bg: #16a34a;
  --main-bg: #bbf7d0;
  --accent: #d47006;
  --muted: #334155;
}

html {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #d6eecb; /* freundlicher Grünton */
            color: #2a3d23;
        }
        header {
            display: flex;
            text-align: center;
            align-items: center;
            padding: 20px;
            background: rgba(255,255,255,0.7);
        }
        header img {
            height: 80px;
            margin-right: 20px;
        }
        h1 {
            margin: 0;
            font-size: 2rem;
        }
        h3 {
            margin: 0;
            font-size: 1rem;
        }
        .hero {
            padding: 6px 20px;
            text-align: center;
        }
        .hero h2 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }
        footer {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.6);
            margin-top: 40px;
        }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

		
.subtitle {
  color: #f6e8e6;
  font-size: 20px;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  background: var(--main-bg);
  border-radius: 16px;
  padding: 36px;
}

.card {
  background: #d6eecb; /* freundlicher Grünton */
/*  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 36px; */
  display: flex;
  flex-direction: column;
  align-items: center;
 /* gap: 18px;
  box-shadow: 0 10px 40px rgba(2,6,23,0.3);
  color: var(--muted);*/
}

.wind-wrapper {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

svg {
  width: 100%;
  height: 100%;
}

.mast {
  fill: #94a3b8;
}

.nacelle {
  fill: #06b6d4;
}

.rotor circle {
  fill: #0b1220;
  stroke: #e6eef6;
  stroke-width: 2;
}

.rotor polygon {
  fill: #e6eef6;
  stroke: #94a3b8;
  stroke-width: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotor {
  transform-origin: 0 0;
  animation: spin 6s linear infinite;
}

.legal {
  color: #0b1220;
  font-size: 13px;
  align-items: center;
  margin: 1em;
}

.links {
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
}

a {
  color: #050505;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}
    /* Farbe für 'Aktuelle Seite' */
    .current-page {
      color: #050505; /* z.B. rot */
      /*font-weight: bold;
      margin-bottom: 1rem; */
    }

    /* Farbe für E-Mail-Links */
    a[href^="mailto:"] {
      color: #0066cc; /* z.B. blau */
      text-decoration: underline;
    }

    a[href^="mailto:"]:hover {
      color: #050505; /* dunkler bei Hover */
    }
        /* Farbe für E-Mail-Links */
    a[href^="https://beha-eg.de/"] {
      color: #0066cc; /* z.B. blau */
      text-decoration: underline;
    }

    a[href^="https://beha-eg.de/"]:hover {
      color: #050505; /* dunkler bei Hover */
    }