:root{
  --bg:#6b7280;              /* Mittelgrau (Shirt-Farbe) */
  --card:#4b5563;            /* Dunkleres Grau für Karten */
  --text:#ffffff;            /* Weiß */
  --muted:rgba(255,255,255,.85);
  --accent:#ffffff;
  --line:rgba(255,255,255,.18);
  --bordeaux:#7a1f2b;        /* Weinrot / Bordeaux */
}

/* ===== Basis ===== */

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{
  color: var(--text);
  text-decoration: none;
  font-weight:600;
}

a:hover{
  text-decoration: underline;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* ===== Header / Navigation ===== */

header{
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.10);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.brand{
  font-weight:900;
  font-size:20px;
  letter-spacing:.5px;
}

.links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.links a{
  font-weight:700;
  opacity:.9;
}

.links a:hover{
  opacity:1;
}

/* ===== Karten ===== */

.card{
  background: var(--card);
  border-radius:18px;
  padding:22px;
  border:1px solid var(--line);
}

/* ===== Typografie ===== */

h1{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.2;
}

h2{
  margin:0 0 10px;
  font-size:22px;
}

p{
  margin:10px 0;
  color: var(--muted);
}

/* ===== Tabellen ===== */

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
}

.table th,
.table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  text-align:left;
}

.table th{
  font-weight:800;
  color:var(--text);
}

.table tr:last-child td{
  border-bottom:none;
}

/* ===== Buttons ===== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.10);
  color: var(--text);
  font-weight:800;
  transition:.2s ease;
}

.btn:hover{
  background: rgba(255,255,255,.18);
}

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

.btnrow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

/* ===== Hero ===== */

.hero{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
}

.hero img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.hero .caption{
  padding:10px 14px;
  background: rgba(0,0,0,.25);
  font-size:14px;
}

/* ===== Badge ===== */

.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.15);
  font-weight:800;
  font-size:14px;
  margin-bottom:10px;
}

/* ===== Branding MUT² etc. ===== */

.brandline{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin:26px 0 14px;
}

.brandtag{
  display:inline-flex;
  align-items:flex-start;
  padding:10px 0;
  border:none;
  background:transparent;
  font-weight:500;              /* nicht fett */
  font-size:32px;               /* etwas größer */
  letter-spacing:1px;
  text-transform:uppercase;
}

.brandtag sup{
  font-size: 0.8em;        /* etwas größer */
  position: relative;
  top: -0.38em;            /* weniger hoch */
  margin-left: 6px;        /* weniger Abstand */
  color: var(--bordeaux);
  font-weight: 800;        /* kräftiger */
}

/* ===== Sprachumschalter ===== */

.langswitch{
  display:flex;
  gap:8px;
}

.langswitch a{
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  background: rgba(255,255,255,.10);
}

.langswitch a.active{
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color:white;
}

/* ===== Footer ===== */

.footer{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:14px;
  color: var(--muted);
}

/* ===== Responsive ===== */

@media (max-width: 900px){

  .hero img{
    height:250px;
  }

  .brandtag{
    font-size:22px;
  }

  h1{
    font-size:28px;
  }

}
