/* Homepage — loaded after styles.css */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9f6f2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Slightly toward top so more of the upper part of the photo shows (vs center/center crop) */
    background: url('../images/balloon.jpg') center 70% / cover no-repeat;
    opacity: 0.40;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 4rem 2rem;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #012a4a;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #e6b3cc;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    background: #012a4a;
    color: white;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #e6b3cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #012a4a;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.featured {
    padding: 5rem 0;
    background: white;
}

.see-all-container {
    text-align: center;
    margin-top: 3rem;
}

.see-all-link {
    color: #012a4a;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #e6b3cc;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #e6b3cc;
    border-color: #012a4a;
}

.process-teaser {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff9fb 0%, #faf8f5 100%);
    text-align: center;
}

.process-teaser .section-subtitle {
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.about {
    padding: 5rem 0;
    background: #faf8f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    text-align: center;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #012a4a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: #012a4a;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    /*
     * Portrait phones are very tall; 70vh made the hero huge so the balloon
     * looked “fully” visible vs desktop. Use a landscape frame (like desktop crop)
     * instead of a tall strip.
     */
    .hero {
        min-height: 0;
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: min(420px, 55vh);
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-image {
        width: 160px;
        height: 160px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-image-wrapper img {
        max-width: 280px;
    }

    .feature {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 200px;
        max-height: min(380px, 50vh);
    }

    .hero-content {
        padding: 1.75rem 1.25rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-image {
        width: 140px;
        height: 140px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}
