/* ============================================================
   Coming-Soon – BC Traktor Schwerin
   Farben & Font exakt wie die alte Seite (traktorboxen.de)
   ============================================================ */

:root {
    --orange: #b66600;   /* Vereinsname, Headline, Links */
    --blue:   #485f6e;   /* Fließtext, Subline, Footer   */
    --white:  #ffffff;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--white);
    color: var(--blue);
    /* Sticky-Footer-Layout: Header oben, Main füllt, Footer unten */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- Header (weiß, Logo links, Name in Orange) ---------- */

.header {
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* dezenter Schatten wie alter Sticky-Header */
    padding: 12px 24px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1170px;      /* Container-Breite der alten Seite */
    margin: 0 auto;
}

.header__logo {
    height: 80px;
    width: auto;
}

.header__name {
    color: var(--orange);
    font-size: 28px;
    font-weight: 700;
}

/* ---------- Main (zentrierte Botschaft) ---------- */

.main {
    flex: 1;                /* schiebt den Footer nach unten */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

.main__title {
    color: var(--orange);
    font-size: clamp(32px, 6vw, 56px); /* groß auf Desktop, passt sich mobil an */
    font-weight: 700;
    line-height: 1.15;
    max-width: 900px;
}

.main__subtitle {
    color: var(--blue);
    font-size: clamp(17px, 2.5vw, 22px);
    margin-top: 16px;
    max-width: 640px;
}

/* ---------- Kontaktblock ---------- */

.contact {
    margin-top: 56px;
}

.contact__heading {
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.contact__details {
    font-style: normal;     /* <address> ist standardmäßig kursiv */
    font-size: 17px;
    line-height: 1.7;
}

.contact__details a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.contact__details a:hover,
.contact__details a:focus {
    text-decoration: underline;
}

.contact__hours {
    font-size: 15px;
}

.contact__note {
    margin-top: 24px;
    font-size: 16px;
    max-width: 520px;
}

/* ---------- Footer ---------- */

.footer {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    font-size: 14px;
    padding: 14px 24px;
}

/* ---------- Mobil ---------- */

@media (max-width: 600px) {
    .header__logo {
        height: 56px;
    }
    .header__name {
        font-size: 20px;
    }
    .contact {
        margin-top: 40px;
    }
}
