/* ========================================
   TRAINING PAGES STYLES
   Professional LMS Theme
   ======================================== */

/* CSS Variables - Matching existing theme */
:root {
    --primary-navy: #1a2332;
    --primary-gold: #d4af37;
    --accent-teal: #2c5f5d;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e8ebed;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HERO SECTION
   ======================================== */

.training-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-nav i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.breadcrumb-nav span {
    color: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.hero-meta i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

/* ========================================
   TRAINING OVERVIEW SECTION
   ======================================== */

.training-overview-section {
    padding: 6rem 0;
    background: var(--white);
}

.overview-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* ========================================
   SKILLS SECTION
   ======================================== */

.skills-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.skill-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
}

.skill-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.skill-card i {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.skill-card:hover i {
    color: var(--primary-gold);
}

.skill-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.skill-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */

.audience-section {
    padding: 6rem 0;
    background: var(--white);
}

.audience-card {
    text-align: center;
    padding: 2rem;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c99d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.audience-card:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 3rem;
    color: var(--white);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.audience-card p {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* ========================================
   OUTCOMES SECTION
   ======================================== */

.outcomes-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.section-intro {
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.outcome-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 4px solid var(--accent-teal);
    transition: var(--transition-base);
}

.outcome-card:hover {
    border-left-color: var(--primary-gold);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.outcome-card i {
    font-size: 2rem;
    color: var(--accent-teal);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.outcome-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.outcome-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.training-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enroll,
.btn-contact-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-enroll {
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-enroll:hover {
    background: #f0c851;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-contact-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-section h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991.98px) {
    .training-hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .training-overview-section,
    .skills-section,
    .audience-section,
    .outcomes-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-enroll,
    .btn-contact-alt {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .skill-card,
    .audience-card {
        padding: 2rem 1.5rem;
    }
}
