:root {
  --bg: #0b0b0c;
  --card: #121315;
  --text: #EAEAEA;
  --muted: #A6A8AD;
  --accent: #00FF66;
  --border: #222428;
}

/* -------------------------
   Base
------------------------- */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
}
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,255,102,.25);
  border-radius: 8px;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

h1, h2, h3 { color: var(--text); }
h1 .accent, h2 .accent { color: var(--accent); }
.muted { color: var(--muted); }

/* -------------------------
   Header / Navigation
------------------------- */
.header {
  position: sticky; top: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav .left { display: flex; align-items: center; gap: 12px; }
.nav img.logo {
  height: 44px;           /* feste Höhe für Navi */
  width: auto;            /* proportional */
  object-fit: contain;
  border-radius: 6px;     /* leichte Abrundung, kein Kreis */
  image-rendering: auto;
}
.nav .brand { font-weight: 700; letter-spacing: .3px; }

/* Desktop-Links */
.nav .links a {
  margin-left: 18px; padding: 8px 10px;
  border-radius: 10px; border: 1px solid transparent;
}
.nav .links a:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,102,.1);
}

/* Mobile Menü */
.hamburger {
  display: none;
  border: 1px solid var(--border);
  background: transparent; color: var(--text);
  padding: 8px 10px; border-radius: 10px;
}
.mobile-menu {
  display: none;
  position: absolute; top: 64px; left: 0; right: 0;
  background: rgba(12,12,13,.98);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  display: block; padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a:hover { background: #0f1012; color: var(--accent); }

@media (max-width: 800px) {
  .nav .brand { display: none; }
  .nav .links { display: none; }
  .hamburger { display: inline-block; }
}

/* -------------------------
   Layout Helpers
------------------------- */
.main { padding: 28px 0; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
}
.btn {
  display: inline-block;
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 12px;
  transition: border-color .25s, color .25s, transform .1s ease-in-out;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn:active { transform: translateY(1px); }

/* -------------------------
   Startseite: zentriertes Logo
------------------------- */
.center-full {
  min-height: calc(100dvh - 64px); /* unter der Headerhöhe */
  display: flex; align-items: center; justify-content: center;
}
.center-full img {
  width: 500px;           /* abgestimmt auf dein 500px-Logo */
  max-width: 90vw;        /* auf kleineren Screens anpassen */
  height: auto;           /* Seitenverhältnis behalten */
  border-radius: 12px;    /* leichte Abrundung passend zum Design */
  box-shadow: 0 10px 40px rgba(0,255,102,.15);
}

/* -------------------------
   Album-Gitter
------------------------- */
.album-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
}
.thumb {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.thumb img {
  display: block; width: 100%; height: 200px; object-fit: cover;
}

/* -------------------------
   Social Links (Icon-Leiste)
   HTML-Beispiel:
   <ul class="social-links">
     <li><a class="yt" href="..."><i class="fab fa-youtube"></i><span class="label">YouTube</span></a></li>
     ...
   </ul>
------------------------- */
/* Robust gegen überschreibende Regeln anderswo */
ul.social-links,
.social-links,
.social-links li {
  list-style: none !important;   /* Bullets endgültig weg */
  margin: 0;
  padding: 0;
}

/* Nebeneinander & zentriert */
ul.social-links {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin: 1.5em 0;
}

/* Einzelne Items */
.social-links li { flex: 0 0 auto; }

/* Link & Icon/Text nebeneinander */
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.2em;
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, transform .1s ease-in-out;
}

.social-links a:hover { transform: translateY(-2px); }

/* Hoverfarben pro Plattform */
.social-links a.yt:hover { color: #FF0033; }
.social-links a.fb:hover { color: #1877F2; }
.social-links a.ig:hover { color: #E4405F; }
.social-links a.tt:hover { color: #69C9D0; }

/* Mobile: nur Icons */
@media (max-width: 480px) {
  .social-links .label { display: none; }
  .social-links a { font-size: 1.6em; }
}
/* -------------------------
   Footer
------------------------- */
.footer {
  color: var(--muted);
  text-align: center; padding: 24px 0 40px;
  border-top: 1px solid var(--border); margin-top: 40px;
}

/* -------------------------
   Utilities
------------------------- */
.hidden { display: none !important; }
.center { text-align: center; }
