﻿.home-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center 30%;
}

    /* Your existing soft vignette */
    .home-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient( ellipse at center, rgba(255,255,255,0.00) 60%, /* was 48% */
        rgba(255,255,255,0.06) 80%, /* was 0.12 */
        rgba(255,255,255,0.12) 100% /* was 0.28 */
        );
    }

    /* ✨ New: bottom fade (this removes the hard edge) */
    .home-hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 220px;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.6) 65%, rgba(255,255,255,1) 100% );
    }


.home-hero-media img,
.home-hero-media video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.home-hero-content {
    max-width: 850px;
}

    .home-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    }

    .home-hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
        font-weight: 400;
    }

    .home-hero-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

.home-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #222222;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.home-mission {
    width: 100%;
    padding: 90px 20px;
    background-color: #ffffff;
}

.home-mission-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

    .home-mission-inner h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .home-mission-inner p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin: 0;
    }

.home-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #f3efe8;
}

.home-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.home-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

    .home-two-col.reverse .home-media {
        order: 2;
    }

    .home-two-col.reverse .home-text {
        order: 1;
    }

.home-media img,
.home-media video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.home-text h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.home-text h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.home-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

@media (max-width: 900px) {
    .home-two-col {
        grid-template-columns: 1fr;
    }

        .home-two-col.reverse .home-media,
        .home-two-col.reverse .home-text {
            order: unset;
        }

    .home-hero-content h1 {
        font-size: 2.3rem;
    }

    .home-hero-content h2 {
        font-size: 1.25rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 70px; /* same vertical line as Ask button */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .scroll-indicator img {
        width: 42px;
        height: auto;
    }

    /* subtle hover (nice touch) */
    .scroll-indicator:hover {
        opacity: 1;
        transform: translateX(-50%) translateY(4px);
    }

#mission {
    scroll-margin-top: 110px;
}

