/* === MAIN CONTENT (INDEX PAGE) === */

/* --- Hero Section --- */
.hero-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 60px); /* Full height minus header */
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--primary-pink);
}

.hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.download-btn-dark {
    background: var(--primary-pink);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

/* --- Features Section --- */
.features-dark {
    padding: 80px 0;
    text-align: center;
}

.features-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    flex-direction: column; /* Stack cards on mobile */
    gap: 40px;
    align-items: center;
}

.card-dark {
    background-color: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 350px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.card-dark h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-dark p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* === DESKTOP-SPECIFIC OVERRIDES FOR INDEX PAGE === */
@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .feature-cards {
        flex-direction: row; /* Layout cards side-by-side */
        flex-wrap: wrap;
        justify-content: center;
    }
}
