/*.hero-container {*/
/*    position: relative;*/
/*    min-height: 100vh;*/
/*}*/

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/_custom/woman_street_46769337.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background-color: rgba(0, 0, 0, 0.6);*/
    background-color: rgb(191 204 210 / 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.content-wrapper {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title span {
    display: block;
    color: #60A5FA;
}

.hero-description {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .button-container {
        flex-direction: row;
    }
}

.primary-button {
    padding: 0.75rem 2rem;
    background-color: #2563EB;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.primary-button:hover {
    background-color: #1D4ED8;
}

.primary-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.primary-button:hover svg {
    transform: translateX(0.25rem);
}

.secondary-button {
    padding: 0.75rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: background-color 0.2s;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
