/* ── START PAGE CSS ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    background: #E8D9C0;
    color: #1A1A1A;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ── */
.start-header {
    background: #1A1A1A;
    color: white;
    text-align: center;
    padding: 16px 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── MAIN ── */
.start-main {
    flex: 1;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding: 36px 24px 40px;
}

/* ── 2-SPALTEN GRID ── */
.start-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 32px;
}

.start-rechts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── HERO ── */
.hero-titel {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1.1;
    color: #1A1A1A;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.hero-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3;
    color: #2A2A2A;
}

.hero-text strong {
    font-weight: 400;
}

/* ── SO FUNKTIONIERT ES ── */
.so-funktioniert {
    background: white;
    border-radius: 16px;
    padding: 24px 22px 28px;
    height: 100%;
    box-sizing: border-box;
}

.so-titel {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 1.35rem;
    color: #C8973A;
    margin-bottom: 22px;
}

.schritte-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.schritt-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.schritt-nummer {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #C8973A;
    color: #C8973A;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.schritt-inhalt {
    flex: 1;
}

.schritt-kopf {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.schritt-kopf strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1A1A1A;
}

.schritt-inhalt p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.3;
}

.info-bubble {
    width: 20px;
    height: 20px;
    background: #C8973A;
    color: white;
    border: none;
    border-radius: 50%;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

/* ── NAME INPUT SECTION ── */
.name-section,
.name-section-kasten {
    background: white;
    border-radius: 16px;
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    box-sizing: border-box;
}

.name-section-kasten {
    background: white;
    border-radius: 16px;
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.name-input {
    width: 100%;
    padding: 18px 22px;
    background: #F5F0EA;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #1A1A1A;
    outline: none;
    transition: border-color 0.2s;
}

.name-input::placeholder {
    color: #AAA;
}

.name-input:focus {
    border-color: #C8973A;
}

.name-hinweis {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #3A3A3A;
    line-height: 1.4;
	padding-top:10px;
	padding-bottom: 10px;
}

/* ── START BUTTON ── */
.start-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-start {
    background: rgba(255,255,255,0.35);
    color: rgba(26,26,26,0.4);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 10px 32px;
    border-radius: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: not-allowed;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    pointer-events: none;
}

.btn-start.aktiv {
    background: #C8973A;
    color: white;
    border-color: #C8973A;
    cursor: pointer;
    pointer-events: auto;
}

.btn-start.aktiv:hover {
    background: #a67828;
    border-color: #a67828;
    color: white;
}

/* ── FOOTER ── */
.start-footer {
    background: #1A1A1A;
    color: #888;
    text-align: center;
    padding: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .start-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .start-main {
        padding: 12px 16px 24px;
    }
    .hero-titel {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .hero-text {
        font-size: 1rem;
        line-height: 1.3;
    }
    .so-funktioniert {
        padding: 14px 14px 18px;
    }
    .so-titel {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .schritte-liste {
        gap: 10px;
    }
    .schritt-inhalt p {
        font-size: 1rem;
        margin-top: 2px;
    }
    .name-input {
        padding: 11px 14px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    .start-btn-wrapper {
        margin-top: 5px;
    }
}
