/* ===== Landing Page Styles ===== */

/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, var(--site-primary, #0d6efd) 0%, var(--site-secondary, #6c757d) 100%);
    margin-top: -1rem;
    margin-left: -12px;
    margin-right: -12px;
}

.landing-hero-icon {
    font-size: 5rem;
    opacity: 0.85;
    display: block;
}

/* Feature Cards */
.landing-feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 0.75rem;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.landing-feature-icon {
    color: var(--site-primary, #0d6efd);
}

/* Audience Sections */
.landing-audience-section {
    background-color: #f8f9fa;
}

.landing-audience-icon {
    color: var(--site-primary, #0d6efd);
    opacity: 0.7;
}

/* Stats Bar */
.landing-stats-bar {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    margin-left: -12px;
    margin-right: -12px;
}

/* CTA Section */
.landing-cta {
    background-color: #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .landing-hero .display-3 {
        font-size: 2rem;
    }

    .landing-hero .lead {
        font-size: 1.1rem;
    }

    .landing-hero-icon {
        font-size: 3.5rem;
    }

    .landing-stats-bar .display-4 {
        font-size: 2rem;
    }

    .landing-audience-icon {
        font-size: 5rem !important;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .landing-hero .display-3 {
        font-size: 1.75rem;
    }

    .landing-stats-bar .display-4 {
        font-size: 1.5rem;
    }
}
