* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background-color: #05070f;
    background-image: url("../images/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    max-width: 230px;
    width: 100%;
}

.logo a img{
    width: 100%;
}

.website-btn {
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.website-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.website-btn-text small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.website-btn-text strong {
    font-size: 25px;
}

.website-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #070b1a;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-banner {
    flex: 1;
    width: min(1320px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 40px 15px 70px;
}

.hero-banner-header{
    display: flex;
    flex-direction: column;
}

.hero-kicker {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
    background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: 90px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 26px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f2f2f2 20%,
        #d9d9d9 40%,
        #bfbfbf 60%,
        #e6e6e6 80%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-btn {
    display: inline-block;
    text-decoration: none;
    max-width: 320px;
}

.register-btn img{
    width: 100%;
    height: 100%;
}

.register-btn:hover {
    transform: translateY(-2px);
}

.register-btn:active {
    transform: translateY(2px);
}

.footer-website-btn{
    display: none;
}

@media (max-width: 991px) {
    .site-header {
        width: min(980px, 94%);
        padding: 20px 0;
    }

    .logo a {
        font-size: 24px;
    }

    .website-btn {
        padding: 10px 12px;
        gap: 10px;
    }

    .website-btn-text small {
        font-size: 11px;
    }

    .website-btn-text strong {
        font-size: 16px;
    }

    .website-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .hero-banner {
        width: min(980px, 94%);
    }

    .hero-kicker {
        margin-bottom: 10px;
    }

    .hero-title {
        letter-spacing: 0;
        margin-bottom: 22px;
    }
}

@media (max-width: 575px) {

    .page-shell{
        position: relative;
    }

    .page-shell:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: RGBA(255, 255, 255, 0.7);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 70%);
    }

    .site-header {
        align-items: center;
        padding: 15px 0;
        justify-content: center;
        position: relative;
        z-index: 3;
    }

    .website-btn {
        display: none;
    }

    .hero-banner {
        justify-content: space-between;
        padding: 35px 15px;
        width: 100%;
        position: relative;
        z-index: 3;
    }

    .hero-kicker {
        font-size: 18px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1;
    }

    .register-btn {
        width: 100%;
        text-align: center;
        margin-top: auto;
        margin-bottom: 30px;
        max-width: 280px;
    }

    .footer-website-btn{
        display: inline-flex;
        flex-direction: column;
        row-gap: 5px;
        text-decoration: none;
        background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
