/* Michael Stout Training Custom Styles */

:root {
    --primary-blue: #2563eb;
    --hero-blue: #1d4ed8;
    --light-blue: #60a5fa;
    --success-green: #059669;
    --info-blue: #0891b2;
    --warning-orange: #d97706;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hero-blue), var(--primary-blue));
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-icon i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Featured Course Section */
.featured-course {
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.featured-course-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem;
}

.featured-course-header h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-meta {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.featured-course-content {
    background: white;
    padding: 1.5rem;
}

.course-description {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.course-features {
    color: #374151;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.course-features li {
    margin-bottom: 0.25rem;
}

.course-badge {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-block;
}

.course-details {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.course-stats .stat-item {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.course-stats .stat-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Quick Access Section */
.quick-access-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.quick-access-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.access-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.quick-access-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.quick-access-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Training Modules Section */
.training-module-header {
    padding: 0.75rem 1.5rem;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.training-module-header.certification-prep {
    background: var(--primary-blue);
    color: white;
}

.training-module-header.practical-skills {
    background: var(--success-green);
    color: white;
}

.training-module-header h4 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
}

.training-module-content {
    background: white;
    padding: 1rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    margin-bottom: 0.5rem;
}

.module-list li:last-child {
    margin-bottom: 0;
}

.module-list a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.module-list a:hover {
    color: var(--hero-blue);
    text-decoration: underline;
}

.module-list a i {
    margin-right: 0.5rem;
    width: 1rem;
    font-size: 0.9rem;
}

/* Help Section */
.help-section {
    background: #cffafe;
    color: #134e4a;
    padding: 2rem 0;
}

.help-section h4 {
    margin-bottom: 0.5rem;
    color: #134e4a;
    font-weight: 600;
}

.help-section p {
    color: #134e4a;
    margin-bottom: 0;
}

.btn-support {
    background-color: transparent;
    border: 2px solid #06b6d4;
    color: #06b6d4;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
}

.btn-support:hover {
    background-color: #06b6d4;
    border-color: #06b6d4;
    color: white;
}

/* Bottom Features Section */
.bottom-feature {
    padding: 1.5rem;
    text-align: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.bottom-feature h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bottom-feature p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Button Customizations */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--hero-blue);
    border-color: var(--hero-blue);
}

.btn-info {
    background-color: var(--info-blue);
    border-color: var(--info-blue);
}

.btn-info:hover {
    background-color: #0e7490;
    border-color: #0e7490;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .featured-course {
        padding: 1.5rem;
    }
    
    .course-details {
        margin-top: 1.5rem;
    }
}
