/**
 * common.css
 */

/* Banner */

.banner {
    min-height: 960px;
    max-height: 960px;
}
.banner .text {
    width: 45%;
    max-width: 640px;
    animation: bannerText 1.4s ease-out .3s forwards;
}
.banner .title {
    color: #444444;
    text-transform: uppercase;
    font-weight: 200;
    line-height: 1.5em !important;
    --title-size: clamp(20px, 2.4vw, 30px);
}
.banner .title,
.banner .slogan {
    letter-spacing: 0.08em;
    word-spacing: 0.2em;
}

/* Banner Home */

.home .banner .text {
    background: #ffffff;
    top: 3%;
    left: 41%;
    width: 20%;
    min-width: 220px;
    padding: 130px 5px 40px 5px;
    text-align: center;
    text-transform: uppercase;
    transform: none;
    animation: bannerText 2.0s ease-out .5s forwards;
}
.home .banner .text .title {
    color: var(--color-primary) !important;
    font-size: calc(var(--title-size) * 1.4);
    font-weight: 300;
}
.home .banner .text .slogan {
    color: #444444;
    font-size: calc(var(--title-size) * 0.42);
    font-weight: 200;
    line-height: 1.4;
    text-shadow: none;
    word-spacing: 0.1em;
}

/* Banner misc */

.programmierung .banner .text {
    top: 65%;
    left: 77%;
}
.unternehmen .banner .title,
.programmierung .banner .title,
.impressum .banner .title {
    color: #ffffff;
}

h1 {
    text-align: center;
}


/* Wissenswertes */

.content-section.bgImage.wissenswertes {
    background-image: url("../media/img/img-wissenswertes.jpg");
}
.content-section.bgImage.wissenswertes2 {
    background-image: url("../media/img/img-wissenswertes2.jpg");
}
.content-section.bgImage.wissenswertes .icon-wrap svg,
.content-section.bgImage.wissenswertes2 .icon-wrap svg {
    stroke: #ffffff;
}
.content-section.bgImage.wissenswertes .content,
.content-section.bgImage.wissenswertes2 .content {
    color: #ffffff;
}

/* Benutzerregistrierung */

.content-section.register {
    background-image: url("../media/img/img-register.jpg");
    padding-bottom: 100px;
}
.content-section.register .content {
    font-size: clamp(20px, 0.8vw + 17px, 23px);
}
.content-section .button {
    font-size: clamp(20px, 0.8vw + 17px, 23px);
    font-weight: 400;
    margin-top: 50px;
}


/* Link zu termin-online-buchen.de (orange) */

.tob-link,
.tob-link:hover {
    color: #ff9900 !important;
    font-weight: 600;
}


/* Mobile Seiten */

@media (max-width: 768px) {
    .banner {
        min-height: 480px;
        max-height: 480px;
        text-align: center;
    }
    .banner::before,
    .banner.gradient::before {
        background: linear-gradient(
                180deg,
                rgb(229 237 248 / .99) 0%,
                rgb(234 241 249 / .96) 15%,
                rgb(240 245 250 / .88) 30%,
                rgb(247 249 252 / .60) 48%,
                rgb(255 255 255 / .18) 62%,
                transparent 78%
        );
    }
    .banner .text {
        width: 100%;
    }
    .banner .title {
        color: #666666 !important;
    }
}
@media (orientation: landscape) and (max-height: 500px) {
    .banner {
        min-height: 300px;
        max-height: 300px;
    }
}