* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* DEBUG */
}

@font-face {
    font-family: "Mallory Compact";
    src: url("../assets/Mallory Compact Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/SF-Pro-Display-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../assets/SF-Pro-Display-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.navbar {
    width: 100vw;
    height: 8vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);

}

.logo {
    height: 3rem;
    display: flex;
    align-items: left;
}

.logo img {
    width: 100%;
    height: 100%;
}

.menu {
    display: flex;
    gap: 30px;

    & a {
        display: block;
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-family: "SF Pro Display", sans serif;
        font-size: 20px;
        font-weight: 600;
        padding: 8px 12px;
        transition: 0.5s;
        opacity: 0.7;

        &:hover {
            color: #CC2A33;
            font-family: "SF Pro Display", sans serif;
            transition: 0.5s;
            opacity: 1;
            transform: scale(1.05);
        }
    }

    & a.active {
        color: #CC2A33;
        font-family: "SF Pro Display", sans serif;
        opacity: 1;
        transform: scale(1.05);
    }
}

.brand {
    width: 315px;
    height: 200px;
    border: 2px solid #C2C2C2;
    border-radius: 30px;

}

.brand img {
    width: 315px;
    height: 200px;
    object-fit: cover;
    border-radius: 30px;
}

.tlo {
    width: 100%;
    height: 100vh;
    background-color: #F5F5F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3em;
    gap: 2rem;
}

.tekst {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 2rem;
    line-height: 150%;
    margin-bottom: 0.5rem;
    width: 900px;
}

.tekst a:hover {
    transform: scale(1.05);
}

.tekst a {
    color: #CC2A33;
    text-decoration: none;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    transition: 0.5s;
    padding: 0.25em;
    position: relative;
}

.tekst a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #CC2A33;
    transition: width 0.5s;
    z-index: -1;
}

.tekst a:hover {
    color: white;
    transform: scale(1.05);
}

.tekst a:hover::before {
    width: 100%;
}

.siatka {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: left;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}


.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CC2A33;
    color: white;
    padding: 1rem;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 30px;
    width: 300px;
    margin-bottom: 1em;
    transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.cta:hover {
    background: #F4F0E2;
    color: black;
    transform: scale(1.05);
}

.a {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


footer {
    width: 100%;
    height: 40vh;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    display: flex;
}

footer h1 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    padding-top: 1em;
}



.newsletter {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    justify-content: center;
    margin-top: 2rem;
}

.email {
    background: #F9F9F9;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #C2C2C2;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #C2C2C2;
    width: 600px;
    text-align: left;
}

.site-map {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 2rem;

    & a {
        display: block;
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-family: "SF Pro Display", sans serif;
        font-size: 20px;
        font-weight: 600;
        padding: 8px 12px;
        transition: 0.5s;
        opacity: 0.7;

        &:hover {
            color: #CC2A33;
            font-family: "SF Pro Display", sans serif;
            transition: 0.5s;
            opacity: 1;
            transform: scale(1.05);
        }
    }
}


.disclaimer {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 2rem;
    line-height: 150%;
    margin-bottom: 0.5rem;
    max-width: 850px;
    text-align: justify;
}