/* ===================================
   CAREER PATHWAY PAGES - CHT STYLING
   Complete Hospitality Training
   =================================== */

/* Container */
.career-pathway-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

/* Hero Section */
.career-hero {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 3px solid #c41e3a; /* CHT Red */
}

.career-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
}

/* Section Spacing */
.career-section {
    margin-bottom: 50px;
}

.career-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 24px;
    margin-top: 0;
    line-height: 1.3;
}

.career-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.4;
}

.career-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.career-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Stat Callout Box */
.stat-callout {
    background: #f8f8f8;
    border-left: 5px solid #c41e3a; /* CHT Red */
    padding: 30px;
    margin: 30px 0;
    max-width: 600px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #c41e3a; /* CHT Red */
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
}

/* Course Card */
.course-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.course-card:hover {
    border-color: #c41e3a; /* CHT Red */
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.1);
}

.course-card h3 {
    color: #c41e3a; /* CHT Red */
    margin-top: 0;
}

.course-card p {
    margin-bottom: 20px;
}

.btn-course-link {
    display: inline-block;
    color: #c41e3a; /* CHT Red */
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-course-link:hover {
    color: #9a1829;
    text-decoration: underline;
}

/* Pathway Cards Grid */
.pathway-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.pathway-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.pathway-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pathway-card h4 {
    color: #c41e3a; /* CHT Red */
    margin-top: 0;
}

.pathway-card p {
    font-size: 15px;
    margin-bottom: 16px;
}

.pathway-card a {
    color: #c41e3a; /* CHT Red */
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.pathway-card a:hover {
    text-decoration: underline;
}

/* CTA Section */
.career-cta {
    background: #f8f8f8;
    padding: 50px 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
}

.career-cta h3 {
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #c41e3a; /* CHT Red */
    color: #ffffff;
}

.btn-primary:hover {
    background: #9a1829;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #c41e3a; /* CHT Red */
    border-color: #c41e3a;
}

.btn-secondary:hover {
    background: #c41e3a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-pathway-page {
        padding: 20px 15px;
    }
    
    .career-hero {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .career-hero h1 {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .career-section h2 {
        font-size: 26px;
    }
    
    .career-section h3 {
        font-size: 22px;
    }
    
    .career-section h4 {
        font-size: 18px;
    }
    
    .stat-callout {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .pathway-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pathway-card {
        padding: 20px;
    }
    
    .career-cta {
        padding: 30px 20px;
    }
    
    .career-cta h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .career-cta,
    .cta-buttons {
        display: none;
    }
    
    .career-hero {
        border-bottom: 2px solid #000;
    }
    
    .stat-callout {
        border-left-color: #000;
    }
}
