:root {
  --bg: #1b1f23;
  --text: #e0e0e0;
  --accent: #00a2ff;
  --font: 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.language-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 999;
}

.language-switcher img {
  width: 32px;
  height: auto;
  cursor: pointer;
}

header.hero {
  height: 100vh;
  background: url('img/Cover_vorne.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  max-width: 600px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-buttons a {
  background-color: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  display: inline-block;
  min-width: 140px;
  text-align: center;
}

section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.5rem;
}

.beschreibung ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.beschreibung details {
  margin-top: 2rem;
  background: #2a2d32;
  padding: 1rem;
  border-radius: 4px;
}

.beschreibung summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--accent);
}

.beschreibung details[open] summary {
  margin-bottom: 1rem;
}

.galerie .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.galerie img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 4px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

form input,
form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background: #2c2f33;
  color: var(--text);
}

form button {
  background-color: var(--accent);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  margin-top: 2rem;
}
