/* NGI Navigator - Home Page Styles */

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    background: linear-gradient(
        41deg,
        rgba(32, 83, 116, 1) 0%,
        rgba(31, 86, 118, 1) 74%,
        rgba(0, 178, 191, 1) 100%
    );
    color: white;
    padding: 4rem 2rem;
    margin: -1.5rem -2rem 2rem -2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-body {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.hero-body strong {
    color: #fbbf24;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: white;
    color: var(--primary);
}

.hero .btn-primary:hover {
    background: #f1f5f9;
}

.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
    margin-bottom: 3rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat-item a {
    text-decoration: none;
    color: inherit;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   Section Titles
   ===================================================== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-action {
    text-align: center;
    margin-top: 2rem;
}

/* =====================================================
   Categories Section
   ===================================================== */
.categories-section {
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.category-name {
    font-weight: 600;
    color: var(--text);
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =====================================================
   Featured Section
   ===================================================== */
.featured-section {
    margin-bottom: 2rem;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1.5rem;
        margin: -1rem -1rem 1.5rem -1rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

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

    .stat-value {
        font-size: 2rem;
    }
}
