/* Grundstil */
:root {
  --primary: #f6bcd8;
  --primary-dark: #e38ab6;
  --accent: #ff80aa;
  --text: #222222;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container & Sektionen */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

/* Header / Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(246,188,216,0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(248,213,230,0.65), transparent 55%);
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 360px;
  width: 80%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  color: #555;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #222;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, background 0.1s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(246,188,216,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.btn-twitch {
  background: var(--accent);
  color: #fff;
}

.btn-twitch:hover {
  background: #ff5c96;
}

/* Sektion Überschriften */
.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title span {
  color: var(--accent);
}

/* Über mich */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.about-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(246,188,216,0.35);
  color: #555;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.about-text p + p {
  margin-top: 0.75rem;
}

.about-badge-box {
  background: rgba(255,255,255,0.9);
  border-radius: 1.5rem;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.7);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.badge {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  font-size: 0.8rem;
}

/* Cards (Streams + Tools) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.3rem;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-sub {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.35rem;
}

/* Kontaktformular */
.contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(0,0,0,0.1);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(246,188,216,0.7);
  border-color: transparent;
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 0.8rem;
}

.form-note {
  font-size: 0.8rem;
  color: #777;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.checkbox-row input {
  width: auto;
}

/* Footer */
footer {
  padding: 2rem 0 1.5rem;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid rgba(0,0,0,0.04);
  margin-top: 1rem;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Responsiv */
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.7rem;
  }
}

/* Profilbild im Über-mich-Bereich */
.about-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
  border: 4px solid rgba(255,255,255,0.9);
}

/* Aktuelle Events */
.events-box {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.7rem;
}

.event-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.event-date {
  min-width: 70px;
  padding: 0.35rem 0.55rem;
  border-radius: 0.9rem;
  background: rgba(246,188,216,0.3);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.event-content {
  flex: 1;
  font-size: 0.9rem;
}

.event-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.event-banner {
  width: 64px;
  height: 64px;
  border-radius: 0.6rem;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,0,0,0.04);
}

.event-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.games-wrapper {
  max-width: 420px;
  margin: 0 auto;      /* zentriert den Block */
  text-align: center;  /* Inhalt unter der Überschrift mittig */
}
.game-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.8rem;
}

.game-list li {
  margin-bottom: 0.25rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
  padding: 0.9rem 0;
  display: none; /* wird per JS eingeblendet */
}

.cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.cookie-banner__text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
