@font-face {
  font-family: 'SF';
  src: url('fonts/SFProText-Semibold.ttf') format('ttf');
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.home-page {
    background-image: url(./img/home-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-page__header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%);
}

.container {
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.subtitle {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1.1px;
    margin-bottom: 0;
}

.title {
    max-width: 1165px;
    text-align: center;
    font-size: 96px;
    background: linear-gradient(93deg, #FFD667 0%, #DEC26B 34.42%, #FFEAA3 47.66%, #E2C354 62.52%, #FFE374 90.95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 110%;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.text {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    max-width: 860px;
    text-align: center;
    letter-spacing: 0.7px;
}


.header-terms {
    color: white;
    text-align: center;
    padding: 20px;
    background-color: #0a74da;
}

.btn {
    background: linear-gradient(93deg, #FFD667 0%, #DEC26B 34.42%, #FFEAA3 47.66%, #E2C354 62.52%, #FFE374 90.95%);
    font-size: 24px;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
    color: #314949;
}

footer {
    color: white;
    text-align: center;
    padding-bottom: 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: 100px;
    justify-content: center;
}

footer a {
    color: #CBCBCB;
    font-size: 13px;
}


@media (max-width: 1280px) {
    .logo {
        font-size: 36px;
    }

    .title {
        font-size: 80px;
    }

    .subtitle {
        font-size: 40px;
    }

    .text {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .logo {
        font-size: 30px;
    }

    .title {
        font-size: 70px;
        padding: 0px 20px;
    }

    .subtitle {
        font-size: 35px;
    }

    .text {
        font-size: 18px;
        padding: 0 80px;
    }

    footer {
        gap: 20px
    }
}

@media (max-width: 640px) {
    .home-page {
        background-image: url(./img/home-bg-mobile.jpg);
    }

    .home-page__header {
        top: 45px;
    }

    .logo {
        font-size: 24px;
    }

    .btn {
        font-size: 15px;
    }

    .title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .subtitle {
        font-size: 20px;
    }

    .text {
        padding: 0px 30px;
        font-size: 16px;
    }

    footer {
        justify-content: space-between;
        padding: 20px 15px;
    }

    footer a {
        font-size: 10px;
    }
}

