/* =========================================================
   DRY:FUEL Website – Basis
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background-color: #000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   Navigation
   ========================================================= */

nav {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 24px 20px;
    background-color: #000;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 22px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav a:hover {
    opacity: 0.7;
}


/* =========================================================
   Startseite / Hero
   ========================================================= */

main.hero {
    width: 100%;
    max-width: none;
    min-height: calc(100vh - 72px);
    margin: 0;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: #050505;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.04) 45%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        url("../bilder/Favorit-nr1.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(-8px);
}

.brand-logo {
    margin: 0 0 18px 0;
    font-size: 82px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f4f4ef;
}

.hero .claim {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #d2d2cc;
}


/* =========================================================
   Normale Unterseiten: Impressum / Datenschutz
   ========================================================= */

main:not(.hero) {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px 60px 24px;
    text-align: left;
}

main:not(.hero) h1 {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

main:not(.hero) h2 {
    margin-top: 42px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.3;
}

main:not(.hero) p {
    line-height: 1.7;
    color: #dddddd;
}

main:not(.hero) ul {
    line-height: 1.7;
    margin: 10px 0 30px 20px;
    padding: 0;
}


/* =========================================================
   Footer
   ========================================================= */

footer {
    margin: 0;
    padding: 18px 20px 24px 20px;
    background-color: #000;
    color: #9a9a9a;
    font-size: 12px;
    letter-spacing: 0.5px;
}

footer a {
    color: #9a9a9a;
    text-decoration: none;
    margin-right: 8px;
}

footer a:hover {
    color: #ffffff;
    opacity: 0.65;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
    nav a {
        margin: 0 14px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .brand-logo {
        font-size: 56px;
        letter-spacing: 2px;
    }

    .hero .claim {
        font-size: 12px;
        letter-spacing: 4px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 20px 10px;
    }

    nav a {
        display: inline-block;
        margin: 0 8px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    main.hero {
        min-height: calc(100vh - 62px);
        padding: 0 18px;
        background-position: center center;
    }

    .brand-logo {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .hero .claim {
        font-size: 11px;
        letter-spacing: 3px;
    }

    main:not(.hero) {
        padding: 60px 20px 50px 20px;
    }
}