:root {
    --text: #ffffff;
    --headnav-height: 80px;
}

.headnav {
    color: var(--headnav-color);
}

body {
    background-image: url("../../../img/bg_buildstrike.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    display: flex;
    align-items: flex-start; /* Beginn der Seite unter der fixen Headnav */
    justify-content: center; /* horizontal zentrieren */
}

.section {
   /* background-color: rgba(23, 23, 23, 0.15);*/
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    background: none;
    box-shadow: none;
}

.section2 {
    background-image: url("../../../img/bg_buildstrike.jpg");
    filter: saturate(1.4) contrast(1.15) brightness(1.1);
    border-radius: 12px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    box-shadow: 0 6px 18px rgba(60, 58, 58, 0.6);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 18px 0;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.56);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    transition: transform .1s ease, box-shadow .1s ease;
}

.cta-buttons .btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.countdown {
    display: flex;
    justify-content: center;
}

.countdown p {
    background: rgba(0, 0, 0, 0.56);
    padding: 10px 18px;
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.75rem;
    transform: scale(1);
    transition: transform .9s ease;
}

.countdown p:hover {
    transform: translateY(-2px) scale(2.4);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    transition: transform .9s ease;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    margin-top: auto;
}

footer a {
    display: inline-block;
    position: static; /* war: absolute */
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    background: rgba(0, 0, 0, 0.56);
    font-weight: 600;
}

@media (max-width: 880px) {
    .countdown p {
        padding: 10px 18px;
        color: white;
        border-radius: 16px;
        font-weight: 700;
        font-size: 2rem;
    }


    .countdown p:hover {
        transform: scale(1.05);
    }

    .cta-buttons .btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

