/* =========================================================
   NC HERO — shared canvas hero for all NeuroChild pages
   Mobile-first: base = mobile, scale up via min-width
   ========================================================= */

.nc-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background-color: #041A19;
}

.nc-hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    max-width: none;
    margin: 0;
}

.nc-hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.nc-hero__overlay--gradient-center {
    background: transparent;
}

.nc-hero__content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.nc-hero__content--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nc-hero__title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.nc-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 700px;
}

.nc-hero__content--center .nc-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.nc-hero__subtitle--small {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.nc-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 2rem;
    width: 100%;
}

.nc-hero__content--center .nc-hero__actions {
    align-items: center;
}

.nc-hero__btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: none;
    backdrop-filter: blur(10px);
}

.nc-hero__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(0, 164, 153, 0.8);
}

.nc-hero__btn--outline:hover {
    background: rgba(0, 164, 153, 0.2);
    border-color: rgba(0, 164, 153, 1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .nc-hero {
        min-height: 70vh;
    }

    .nc-hero__actions {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.2rem;
        width: auto;
    }

    .nc-hero__content--center .nc-hero__actions {
        justify-content: center;
        align-items: center;
    }

    .nc-hero__btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .nc-hero {
        min-height: 85vh;
    }

    .nc-hero__content {
        padding: 4rem 2rem 6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nc-hero__content { animation: none; }
    .nc-hero__btn     { transition: none; }
}
