.hero-section-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-glass-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-glass-layer img {
    position: absolute;
    width: 110px;
    opacity: 0.9;
}

.hero-section-wrapper > *:not(.hero-glass-layer) {
    z-index: 1;
}

.hero-text-block {
    color: #2c3e50;
    font-family: "Comfortaa", sans-serif;
    text-transform: lowercase;
    line-height: 1;
}

.hero-title-main,
.hero-title-sub,
.hero-subtitle-top,
.hero-subtitle-bottom {
    font-size: clamp(36px, 7vw, 100px);
}

.hero-title-main {
    font-weight: 700;
}

.hero-title-sub,
.hero-subtitle-top,
.hero-subtitle-bottom {
    font-weight: 300;
}

.hero-top {
    margin-top: 10px;
}

.hero-bottom {
    align-self: flex-end;
    text-align: right;
}

.hero-highlight-text {
    border: 4px solid var(--color-violet);
    border-radius: 100px;
    padding: 2px 22px;
    background: rgba(232, 235, 237, 0.5);
}

.hero-description {
    margin: 30px 0;
    max-width: 450px;
    font-size: 22px;
    color: #4d5d7a;
}

.hero-button-area {
    width: 100%;
    max-width: 540px;
    height: 60px;
    background: var(--color-strawberry);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    transition: background 0.2s, transform 0.15s;
}

.hero-button-area:hover {
    background: var(--color-strawberry-hover);
    color: var(--color-white);
}

.hero-button-text {
    font-size: 20px;
}
