/* CSS für Webseite VOIDCOM Vorstellung */
/* Autor: Raik Schumacher */
/* Datum: 31.01.2026 */
:root{
    --bg:#0B0E11;
    --text:#F2F4F8;
    --muted:rgba(242,244,248,.72);
    --faint:rgba(242,244,248,.45);
    --line:rgba(242,244,248,.16);
    --accent:#C9A24D; /* gold */
    --radius:18px;
    --shadow:0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}

html,body{height:100%}

body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:
    radial-gradient(1100px 800px at 0% -10%, rgba(201,162,77,.12), transparent 58%),
    radial-gradient(900px 600px at 100% 10%, rgba(143,174,214,.07), transparent 60%),
    var(--bg);
    color:var(--text);
    overflow:hidden;
}

/* ===== Menü oben rechts (ausklappbar/collapsable) ===== */
.topbar{
    position:fixed;
    top:18px; right:18px;
    z-index:60;
    display:flex;
    align-items:flex-start;
    gap:10px;
    user-select:none;
}

.lang-pill{
    border-color: #60606028;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #60606028;
}

.menu-lang{
    padding: 10px 10px;
}

.menu-btn{
    width:44px; height:44px;
    display:grid; place-items:center;
    border-radius:999px;
    border:1px solid rgba(242,244,248,.12);
    background:rgba(255,255,255,.02);
    box-shadow:var(--shadow);
    cursor:pointer;
}

.menu-btn:hover{border-color:rgba(201,162,77,.35)}
.hamburger{ width:18px; height:12px; position:relative; }

.hamburger span{
    position:absolute; left:0; right:0;
    height:2px; border-radius:2px;
    background:rgba(242,244,248,.85);
}

.hamburger span:nth-child(1){top:0}
.hamburger span:nth-child(2){top:5px; opacity:.75}
.hamburger span:nth-child(3){bottom:0; opacity:.6}

.menu{
    width:min(260px, calc(100vw - 90px));
    border-radius:var(--radius);
    border:1px solid rgba(242,244,248,.10);
    background:rgba(11,14,17,.72);
    backdrop-filter: blur(10px);
    box-shadow:var(--shadow);
    padding:10px;
    transform-origin: top right;
    transform: scale(.98);
    opacity:0;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
}

.menu.open{
    opacity:1;
    transform: scale(1);
    pointer-events:auto;
}

.menu a{
    display:block;
    padding:10px 10px;
    border-radius:12px;
    color:var(--muted);
    text-decoration:none;
    font-size:14px;
    border:1px solid transparent;
}

.menu a:hover{
    color:var(--text);
    border-color:rgba(201,162,77,.25);
    background:rgba(255,255,255,.02);
}

/* ===== Hilfe Button (unten-rechts) ===== */
.helpwrap{
    position:fixed;
    bottom:18px; right:18px;
    z-index:60;
    display:flex;
    align-items:flex-end;
    gap:10px;
    user-select:none;
}

.help-btn{
    width:44px; height:44px;
    display:grid; place-items:center;
    border-radius:999px;
    border:1px solid rgba(242,244,248,.12);
    background:rgba(255,255,255,.02);
    box-shadow:var(--shadow);
    cursor:pointer;
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    font-weight:700;
    color:rgba(242,244,248,.85);
}

.help-btn:hover{border-color:rgba(201,162,77,.35)}
.help{
    width:min(340px, calc(100vw - 90px));
    border-radius:var(--radius);
    border:1px solid rgba(242,244,248,.10);
    background:rgba(11,14,17,.72);
    backdrop-filter: blur(10px);
    box-shadow:var(--shadow);
    padding:12px 12px;
    transform-origin: bottom right;
    transform: translateX(10px) scale(.98);
    opacity:0;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
}

.help.open{
    opacity:1;
    transform: translateX(0) scale(1);
    pointer-events:auto;
}

.help .title{
    margin:0 0 6px;
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-weight:600;
    font-size:12px;
    color:var(--faint);
}

.help .txt{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.65;
}

/* ===== Vollbild Sektionen ===== */
.viewport{ height:100vh; width:100%; position:relative; }
.stack{
    height:100vh; width:100%;
    transform: translateY(0);
    transition: transform .75s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}

.section{
    height:100vh; width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: clamp(18px, 3vw, 44px);
    position:relative;
    border-bottom:1px solid rgba(242,244,248,.06);
}

/* ===== Pfeil Button ===== */
.down{
    position:absolute;
    bottom: clamp(18px, 5vh, 46px);
    left:50%;
    transform: translateX(-50%);
    width:44px; height:44px;
    border-radius:999px;
    border:1px solid rgba(242,244,248,.12);
    background:rgba(255,255,255,.02);
    display:grid;
    place-items:center;
    cursor:pointer;
}

.down:hover{border-color:rgba(201,162,77,.35)}

.arrow{
    width: 14px; height: 14px;
    border-right: 2px solid rgba(242,244,248,.75);
    border-bottom: 2px solid rgba(242,244,248,.75);
    transform: rotate(45deg);
    margin-top:-4px;
}

/* ===== Sektion 1 (Landing) ===== */
.s1{ flex-direction:column; }
.logo-wrap{
    position:absolute;
    top: clamp(34px, 5vh, 70px);
    left:50%;
    transform: translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.logo-placeholder{
    width: 240px;
    height: 92px;
    border-radius: 14px;
    border:1px solid rgba(242,244,248,.14);
    background: rgba(255,255,255,.02);
    display:grid;
    place-items:center;
    box-shadow:var(--shadow);
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
    font-weight:600;
    color:rgba(242,244,248,.88);
    font-size:16px;
    line-height:1.1;
    text-align:center;
}

.tagline-wrap{
    margin-top: 12vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 16px;
}

.tagline{
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    font-weight:500;
    text-align:center;
    letter-spacing:.10em;
    color:var(--text);
    font-size: clamp(22px, 2.6vw, 40px);
    line-height:1.2;
    display:inline-block;
}

.tagline-rule{
    width: 60%;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    opacity: .95;
}

/* ===== Allgemeine Inhaltselemente ===== */
.panel{
    width:min(900px, 100%);
    border-radius:var(--radius);
    border:1px solid rgba(242,244,248,.10);
    background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.015));
    box-shadow:var(--shadow);
    padding: clamp(18px, 3vw, 34px);
}

.p{
    margin:0;
    color:var(--muted);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height:1.85;
}

.grid{
    width:min(900px,100%);
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 900px){
    .grid{ grid-template-columns: 1fr; }
}

.card{
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(242,244,248,.10);
    background: rgba(255,255,255,.02);
}

.card h3{
    margin: 0 0 10px;
    font-family: "Space Grotesk", Inter, system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    font-size: 12px;
    color: var(--faint);
}

.card p{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.section-head{
    width:min(900px,100%);
    display:flex;
    flex-direction:column;
    gap: 8px;
    margin-bottom: 14px;
}

.h-title{
    margin:0;
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    text-transform:uppercase;
    letter-spacing:.20em;
    font-weight:600;
    font-size: 14px;
    color: var(--text);
}

.h-sub{
    margin:0;
    color: var(--faint);
    font-size: 13px;
    line-height: 1.6;
    max-width: 76ch;
}

/* ===== Sektion 2 (Statement) ===== */
.s2{
    flex-direction:column;
    justify-content:center;
    gap: 22px;
}

.statement{
    width:min(900px, 100%);
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap: 10px;
    padding: 6px 0;
}

.statement-top{
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing:.12em;
    font-weight: 700;
    color: var(--text);
    font-size: clamp(14px, 1.6vw, 18px);
    margin:0;
}

.statement-rule{
    width: min(340px, 62%);
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    opacity: .95;
}

.statement-bottom{
    margin:0;
    color: var(--muted);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    letter-spacing: .02em;
}

/* ===== Zeitlinie/Timeline ===== */
.timeline{
    width:min(900px,100%);
    display:grid;
    gap: 12px;
}

.event{
    display:grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(242,244,248,.08);
    background: rgba(0,0,0,.08);
}
@media (max-width: 560px){
    .event{ grid-template-columns: 1fr; }
}

.year{
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(242,244,248,.92);
}

.desc{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}
.desc strong{ color: var(--text); font-weight: 700; }

.small{
    width:min(900px,100%);
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ===== Zeitlinie/Timeline ===== */
.status{
    width: min(900px, 100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 16px;
    border: 1px solid rgba(201,162,77,.28);
    background: rgba(201,162,77,.07);
    border-radius: 14px;
}

.status-left{
    font-family:"Space Grotesk", Inter, system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 600;
    color: rgba(242,244,248,.92);
}

.status-right{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
    .stack{transition:none}
}