/* ============================================
   SECTION: Hero
   Description: Main landing banner with heading,
   CTA buttons, hero image, and decorative pink
   background elements (swirls, dots).
   ============================================ */

.hero {
    position: relative;
    background-color: var(--color-primary-bg);
    overflow: hidden;
    padding: var(--space-4xl) 0;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-3xl);
}

/* Hero text content */
.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
    color: var(--color-gray-900);
}

.hero__accent {
    font-family: var(--font-accent);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-700);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero image */
.hero__image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero__image {
    border-radius: var(--radius-xl);
    max-width: 100%;
    height: auto;
}

/* Decorative elements */
.hero__decor {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-primary-light);
    opacity: 0.5;
    z-index: 1;
}

.hero__decor--top-right {
    top: -60px;
    right: -60px;
}

.hero__decor--bottom-left {
    bottom: -80px;
    left: -80px;
}

/* ----- Mobile Responsive ----- */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: var(--text-3xl);
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }
}
