@import "base.css";

body {
    height: 100dvh;
    background-color: #000002;
    color: #64646c;
    font-family: Inter, serif;
    background-image: url("/assets/AcinexCom_Teaser_Background.png");

    background-size: contain;
    background-repeat: no-repeat;
}

#content {
    padding: 4.43%;
    display: grid;
    min-height: 100dvh;
    box-sizing: border-box;
    grid-template-rows: repeat(3, auto);
    align-content: space-between;
}

.header {
    display: grid;
    grid-template-columns: 1fr auto;
    color: #f2f4f5;

    .logo {
        height: 100%;
        display: grid;
        gap: 2px 16px;
        font-weight: 300;
        grid-template-rows: 1fr auto;
        grid-template-columns: auto 1fr;
        text-transform: uppercase;

        .name {
            font-size: 38px;
            letter-spacing: 14px;
            align-self: end;
        }

        .slogan {
            font-size: 13px;
        }

        img {
            grid-row: 1 / 3;
            height: 82px;
            display: block;
        }
    }

    .teaser {
        display: flex;
        gap: 8px;
        align-items: center;
        height: 18px;
        font-family: Rajdhani, serif;
        letter-spacing: 5px;

        span {
            text-transform: uppercase;
        }

        .dot {
            height: 8px;
            aspect-ratio: 1;
            background: #5071f5;
            border-radius: 50%;
        }
    }
}

.side {
    max-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    > .heading {
        text-transform: uppercase;
        font-family: Rajdhani, serif;
        color: #f2f4f5;
        font-weight: 300;
        font-size: 40px;
        letter-spacing: 11px;
    }

    .bar {
        width: 132px;
        height: 2px;
        background-image: linear-gradient(
                to right,
                #45bdee,
                #281d53 30%,
                #02040c
        );
    }


    p {
        padding-inline-end: 10px;
        line-height: 1.8;
        font-size: 18px;
    }

    .teaser {
        text-transform: uppercase;
        display: flex;
        margin-block-start: 3rem;
        flex-direction: column;
        gap: 8px;
        font-weight: 500;

        .slogan {
            letter-spacing: 2px;
        }

        .heading {
            font-size: 23px;
            letter-spacing: 7px;
        }

        .name {
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 7px;
        }
    }
}

.footer {
    padding-block: 1rem;
    display: flex;
    gap: 2rem;
    font-size: 12px;

    .copyright {
        border-right: 1px solid;
        padding-inline-end: 2rem;
    }

    a {
        color: inherit;
        text-transform: uppercase;
        text-decoration: none;
    }
}

.gradient-text {
    /* Fallback, falls background-clip: text nicht unterstützt wird */
    color: #7e9fff;
    width: max-content;
    background-image: linear-gradient(
            110deg,
            #66d9ff 0%,
            #9eb8ff 38%,
            #765cff 68%,
            #d86dff 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}