/* assets/css/global.css */
:root{
  --primary:#780096;
  --secondary:#3ac4be;

  --hero-h: 450px;
  --header-h: 80px;

  --ss-gradient:
    radial-gradient(900px 600px at 12% 8%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(160deg,#166b75 0%, #45a8a6 28%, #6e8adb 58%, #7b3bb4 100%);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--ss-gradient);
  background-attachment: fixed;
  color:#fff;
  overflow-x:hidden;
}
a{ color:inherit; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

.soft-divider{
  height:2px; width:80%;
  margin:40px auto;
  border-radius:2px;
  background:linear-gradient(90deg, rgba(255,255,255,.6) 0%, rgba(200,200,200,.4) 100%);
}

/* Header (wie in index-2.html) */
header{
  position: sticky;
  top:0;
  z-index: 1000;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{ height:36px; width:auto; display:block; }

nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
nav a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
}
nav a:hover{ filter:brightness(1.06); }

main{ padding-bottom: 40px; }

/* Footer (wie in index-2.html) */
footer{
  margin-top:40px;
  padding:30px 0;
  background: rgba(0,0,0,0.18);
  border-top:1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.footer-grid h4{ margin:0 0 10px; }
.footer-grid a{ text-decoration:none; opacity:.9; }
.footer-grid a:hover{ opacity:1; text-decoration:underline; }
@media (max-width: 860px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* Font (aus index-2.html) */
@font-face {
  font-family: 'Indie Flower';
  font-style: normal;
  font-weight: 400;
  src: url('https://songstory.de/media/font/indie-flower-v21-latin-regular.woff2') format('woff2');
  font-display: swap;
}
