/* ========================================
   ADMIN HOME CONTENT ??
   ======================================== */

.admin-home {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== DASHBOARD HEADER ========== */
.dashboard-header {
    margin-bottom: 32px;
}

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.dashboard-header h1 i {
    color: #1e3a8a;
}

.subtitle {
    font-size: 16px;
    color: #6b7280;
}

/* ========== STATS GRID ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.stat-primary .stat-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.stat-success .stat-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.stat-warning .stat-icon {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.stat-info .stat-icon {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    display: block;
}

.stat-change {
    font-size: 12px;
    color: #6b7280;
}

.stat-change.positive {
    color: #059669;
}

/* ========== QUICK ACTIONS ========== */
.quick-actions {
    margin-top: 40px;
}

.quick-actions h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.action-card:hover {
    border-color: #1e3a8a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.1);
}

.action-card i {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 12px;
    display: block;
}

.action-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ========== PUBLIC HOME ========== */
.public-home {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 24px;
    color: white;
    margin-bottom: 60px;
}

.hero-section i {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background: white;
    color: #1e3a8a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========== FEATURES SECTION ========== */
.features-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: #1e3a8a;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section h2 {
        font-size: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
