.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15svh;
}

.hero-glass {
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid hsla(0, 0%, 100%, 0.35);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 1rem;
    z-index: 2;
}

.hero-text {
    min-width: 320px;
    max-width: 320px;
    margin: 1rem;
    text-align: center;
}

.hero-text h1 {
    color: hsl(0 0% 100%);
    margin-bottom: 1rem;
}

.hero-h1-1 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(0 0% 95%);
}

.hero-h1-3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(0 0% 90%);
}

.hero-profile-pic {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 1rem;
    border: 1px solid hsl(0 0% 0%);
    border-radius: 2rem;
}

.hero-btns {
    display: flex;
    justify-content: space-evenly;
    margin-top: 0.5rem;
}

.hero-btn-one,
.hero-btn-two {
    color: hsl(0 0% 0%);
    font-size: 1.25rem;
    background-color: hsl(0 0% 100%);
    padding: 12px 16px;
    border: 1px solid hsl(0 0% 0%);
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-btn-one {
    margin-right: 0.5rem;
}

.hero-btn-two {
    background-color: hsl(225 100% 50%);
    color: hsl(0 0% 100%);
}

.hero-btn-one:hover {
    transform: scale(1.05);
    background-color: hsl(0 0% 80%);
}

.hero-btn-two:hover {
    transform: scale(1.05);
    background-color: hsl(225 100% 60%);
}

.lighthouse-img {
    border: 1px solid hsl(0 0% 90%);
    border-bottom: none;
}

.fig-card {
    background-color: hsl(0 0% 100%);
    border: 1px solid hsl(0 0% 90%);
    border-top: none;
    padding: 2rem;
    padding-top: 0;
    text-align: center;
    width: 318px;
}

.fig-card-top {
    border-top: 1px solid hsl(0 0% 90%);
}

@media (max-width: 802px) {
    .hero-glass {
        max-width: calc(320px + 4rem);
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 640px;
    }

    .hero-center {
        padding-top: 8px;
    }

    .hero-glass {
        padding: 0.5rem;
    }

    .hero-bg {
        height: 632px;
    }
}