.hero-section {
    position: relative;
    padding: 4rem 1rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(236, 72, 153, 0.6),
            rgba(190, 24, 93, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-text p {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-primary {
    background: white;
    color: #db2777;
    /* pink-600 */
}

.btn-primary:hover {
    background: #f3f4f6;
    /* gray-100 */
}

.btn-secondary {
    border: 1px solid white;
    background: rgba(219, 39, 119, 0.5);
    backdrop-filter: blur(6px);
    color: white;
}

.btn-secondary:hover {
    background: rgba(190, 24, 93, 0.5);
}

/* Responsive */
@media (min-width: 640px) {
    .hero-text h2 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-text h2 {
        font-size: 2.75rem;
    }
}