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

:root {
  --color-primary: #b52966;
  --color-primary-dark: #8f1f50;
  --color-bg: #f9f9f9;
  --color-text: #333;
  --color-muted: #666;
  --color-white: #fff;
  --max-width: 1100px;
  --header-height: 64px;
}

body {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* ── Navigation ────────────────────────────────────── */
header {
  background-color: var(--color-white);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--color-primary);
}

/* ── Sections ───────────────────────────────────────── */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* ── Hero ───────────────────────────────────────────── */
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--header-height));
  padding: 2rem;
}

#hero h1 {
  margin-bottom: 2.5rem;
}

#hero p {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.hero-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.hero-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

#hero img {
    width: 600px;
    max-width: 90%;
    margin-bottom: 1.5rem;
}

/* ── Button ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-ringana {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.btn-ringana:hover {
  background-color: var(--color-primary-dark);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .btn {
    text-align: center;
    width: 80%;
  }
}

/* ── Cards ──────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
}

/* ── Contact Form ───────────────────────────────────── */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 600px;
}

#contact-form label {
  font-weight: 600;
}

#contact-form input,
#contact-form textarea {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  background-color: var(--color-white);
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

main {
  padding-bottom: 4rem;
}

/* ── Impressum ──────────────────────────────────────── */
#impressum h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

#impressum p {
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

#impressum a {
  color: var(--color-primary);
  text-decoration: none;
}

#impressum a:hover {
  text-decoration: underline;
}
