:root{
  --text: 236 244 255;
  --muted: 160 178 200;

  --accent: 79 195 247;   /* cyan */
  --accent2: 56 189 248;

  --max: 1180px;
  --pill: 999px;
}

*{ box-sizing:border-box; margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial; }
html{ scroll-behavior:smooth; height:100%; }

body{
  height:100%;
  color: rgb(var(--text));
  background: #05060a;
  min-height:100vh;
  overflow-x:hidden;
  display:flex;
  flex-direction:column;
}

.container{ width:min(var(--max), 92vw); margin:0 auto; }

/* ===== BACKGROUND (clean transitions) ===== */
/* ===== BACKGROUND – FAST GAR NICHT VERDUNKELT ===== */
.hero-bg{
  position: fixed;
  inset: 0;
  z-index: -3;

  background: url("../img/hero.jpg") center / cover no-repeat;

  opacity: 0.85;              /* <-- SEHR SICHTBAR */
  filter: saturate(1.05) contrast(1.02);
}

/* nur ganz leichte Lesbarkeits-Hilfe oben */
.hero-fade-top{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.10) 25%,
    rgba(0,0,0,0.00) 50%
  );
}


.hero-vignette{
  position: fixed; inset:0; z-index:-2; pointer-events:none;
  background: radial-gradient(70% 55% at 50% 40%, transparent 38%, rgba(0, 0, 0, 0.329) 100%);
}

.hero-fade-bottom{
  position: fixed; inset:0; z-index:-1; pointer-events:none;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 26%, rgba(0,0,0,0) 58%);
}

/* ===== HEADER ===== */
.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

.nav{
  display:grid;
  grid-template-columns: 1fr auto 1fr; /* brand | links | actions */
  align-items:center;
  padding: 18px 0;
  gap: 18px;
}

/* brand more left */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: rgb(var(--text));
  justify-self:start;
  margin-left: -70px;  /* <-- NOCH weiter nach links */
}

.brand img{
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(var(--accent), .20));
}

.brand .name{
  font-weight: 1000;
  letter-spacing: 2.8px;
  font-size: 1.06rem;
  line-height: 1;
  text-transform: uppercase;
}

/* links centered */
.links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
}

.links a{
  position:relative;
  text-decoration:none;
  color: rgba(236,244,255,.78);
  font-weight: 900;
  font-size: .80rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color .18s ease;
}

.links a::after{
  content:"";
  position:absolute;
  left:0; bottom: 4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent),1), rgba(var(--accent2),1));
  transition: width .22s ease;
  opacity:.95;
}

.links a:hover{ color: rgba(236,244,255,.96); }
.links a:hover::after{ width:100%; }
.links a.active{ color: rgba(236,244,255,.96); }
.links a.active::after{ width:100%; }

/* right actions */
.actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
}

/* ===== DISCORD PILL BUTTON (always visible) ===== */
/* ===============================
   PRIMARY BLUE PILL BUTTON
   =============================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;              /* groß & länglich */
  border-radius: 999px;            /* pill */

  background: linear-gradient(
    180deg,
    rgb(79 195 247) 0%,
    rgb(56 189 248) 100%
  );

  color: #ffffff;                  /* TEXT WEISS */
  font-weight: 1000;
  font-size: 0.95rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  border: none;
  text-decoration: none;
  cursor: pointer;

  box-shadow:
    0 12px 40px rgba(79,195,247,0.35),
    0 0 0 rgba(0,0,0,0);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 65px rgba(79,195,247,0.45),
    0 0 0 rgba(0,0,0,0);
  filter: brightness(1.05);
}

/* kleinere Variante (Navbar Discord) */
.btn-sm{
  padding: 13px 26px;
  font-size: 0.85rem;
}

/* burger */
.burger{
  display:none;
  width: 46px; height: 46px;
  border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}

.burger i{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(236,244,255,.86);
  margin: 6px auto;
  transition: transform .2s ease, opacity .2s ease;
}

/* mobile */
.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(16px);
}

.mobile .mwrap{
  padding: 12px 0 16px;
  display:grid;
  gap: 10px;
}

.mobile a{
  text-decoration:none;
  color: rgba(236,244,255,.90);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 14px 16px;
  border-radius: var(--pill);
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: .82rem;
}
.mobile a:hover{ border-color: rgba(var(--accent), .45); }

/* ===== HERO: left-centered (links ausgerichtet, aber mittig platziert) ===== */
main{
  flex: 1;
  padding: 190px 0 140px;
  display:flex;
  align-items:center;
}

.hero{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;  /* linkszentriert */
}

.micro{
  color: rgba(var(--accent), .95);
  font-weight: 1000;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 18px;
}

.h1{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: .90;
  font-size: clamp(3.8rem, 6.0vw, 5.4rem);
}

.sub{
  margin-top: 18px;
  color: rgba(236,244,255,.66);
  line-height: 1.85;
  font-size: 1.10rem;
  max-width: 70ch;
}

/* ===== PAGES ===== */
.page{ padding: 120px 0 80px; }
.content{ max-width: 920px; margin: 0 auto; }

.page-title{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
}

.page-lead{
  margin-top: 12px;
  color: rgba(236,244,255,.64);
  line-height: 1.85;
  font-size: 1.05rem;
  max-width: 80ch;
}

.toc{
  margin-top: 24px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.toc a{
  text-decoration:none;
  color: rgba(236,244,255,.85);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 10px 14px;
  border-radius: var(--pill);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.toc a:hover{ border-color: rgba(var(--accent), .45); }

.rule{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.rule h2{
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}
.rule p, .rule li{
  color: rgba(236,244,255,.66);
  line-height: 1.9;
  font-size: 1.02rem;
}
.rule ul{ margin-top: 10px; padding-left: 18px; }
.rule .hint{
  margin-top: 12px;
  color: rgba(236,244,255,.55);
  font-size: .95rem;
}

/* ===== FOOTER (logo + dividers + fixed copyright line) ===== */
.footer{
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  padding: 26px 0;
}

.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
  align-items:start;
}

.footer .brandline{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer .brandline img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(var(--accent), .18));
}
.footer .brandline .t{
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer .small{
  color: rgba(236,244,255,.56);
  line-height: 1.75;
  font-size: .95rem;
}

.footer .col-title{
  font-weight: 1000;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: .84rem;
  margin-bottom: 10px;
  color: rgba(236,244,255,.85);
}

.footer .list{
  display:grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer .list a{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(236,244,255,.78);
  text-decoration:none;
}
.footer .list a:hover{ color: rgba(236,244,255,.95); }

.footer .bottomline{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(236,244,255,.50);
  font-size: .85rem;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ grid-template-columns: 1fr auto; }
  .links{ display:none; }
  .burger{ display:block; }
  .brand{ margin-left: -10px; }
  main{ padding: 150px 0 110px; }
  .footer .cols{ grid-template-columns: 1fr; }
}

/* ==========================
   TEAM PAGE
   ========================== */
.team-section{
  margin-top: 34px;
}

.team-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 16px;
}

.team-title{
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 1000;
  margin: 0;
}

.team-line{
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 18px;
  justify-content: start;
  align-items: stretch;
}

.member{
  width: 200px;
  height: 200px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 16px 14px;
  border-radius: 18px;

  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.08);
}

.member:hover{
  transform: translateY(-3px);
  border-color: rgba(79,195,247,.35);
  background: rgba(0,0,0,.20);
}

.avatar{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;

  border: 2px solid rgba(79,195,247,.45);
  box-shadow: 0 14px 50px rgba(79,195,247,.18);

  margin-bottom: 12px;
}

.member-name{
  font-weight: 1000;
  letter-spacing: 1px;
  font-size: 1.02rem;
  color: rgba(236,244,255,.92);
}

.member-badge{
  margin-top: auto; /* immer unten */
  padding: 8px 14px;
  border-radius: 999px;

  /* pro Member überschreibbar */
  background: var(--badge-bg, linear-gradient(180deg, rgb(79 195 247) 0%, rgb(56 189 248) 100%));

  color: #ffffff;
  font-weight: 1000;
  font-size: .76rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 980px){
  .team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .team-grid{
    grid-template-columns: 1fr;
  }
}


