/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1e3a8a;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #059669;
}

.brand-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(30, 58, 138, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight-text {
    background: linear-gradient(135deg, #1e3a8a, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-weight: 600;
    color: #1e3a8a;
}

.hero-gradient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        padding: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Program Overview */
.program-overview {
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon-large {
    font-size: 3rem;
    margin-right: 1rem;
}

.card-title {
    color: #1e3a8a;
    margin: 0;
}

.card-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #059669;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Curriculum Timeline */
.curriculum-highlights {
    background: white;
}

.curriculum-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(to bottom, #1e3a8a, #059669);
}

.timeline-marker {
    flex-shrink: 0;
    margin-right: 2rem;
}

.marker-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-title {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    color: #059669;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #64748b;
    margin-bottom: 1rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.curriculum-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Success Metrics */
.success-metrics {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: white;
}

.success-metrics .section-title,
.success-metrics .section-subtitle {
    color: white;
}

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

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Implementation CTA */
.implementation-cta {
    background: #f8fafc;
    text-align: center;
}

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

.cta-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    color: #1e3a8a;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-feature {
        justify-content: center;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-title {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-contact a {
    color: #fbbf24;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-attribution {
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
*:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .overview-card {
        border: 2px solid #1e3a8a;
    }
}


/* Page-Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb li {
    color: #64748b;
    font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '→';
    margin-left: 0.5rem;
    color: #94a3b8;
}

.breadcrumb a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #059669;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    line-height: 1.6;
}

/* Curriculum Levels */
.curriculum-levels {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.level-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.level-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.level-info {
    flex: 1;
}

.level-title {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.level-duration {
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
}

.level-description {
    margin-bottom: 2rem;
}

.level-description p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
}

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

.unit-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.unit-title {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.unit-duration {
    color: #059669;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.unit-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.unit-topics li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.unit-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}

.unit-portfolio {
    background: rgba(30, 58, 138, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    font-size: 0.875rem;
}

.unit-portfolio strong {
    color: #1e3a8a;
}

.level-outcomes {
    background: rgba(5, 150, 105, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.level-outcomes h4 {
    color: #059669;
    margin-bottom: 1rem;
}

.level-outcomes ul {
    list-style: none;
    padding: 0;
}

.level-outcomes li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.level-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Portfolio Framework */
.portfolio-framework {
    background: #f8fafc;
}

.portfolio-progression {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.portfolio-level {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.portfolio-level h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-content h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Assessment Framework */
.assessment-framework {
    background: white;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.assessment-category {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
    text-align: center;
}

.assessment-category h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.competency-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.competency-list li {
    padding: 0.75rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.competency-list li:last-child {
    border-bottom: none;
}

.competency-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Next Steps CTA */
.next-steps-cta {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: white;
    text-align: center;
}

.next-steps-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.next-steps-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .level-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .level-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .level-title {
        font-size: 1.5rem;
    }
    
    .level-units {
        grid-template-columns: 1fr;
    }
    
    .unit-card {
        padding: 1.5rem;
    }
    
    .portfolio-items {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        flex-direction: column;
        text-align: center;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .level-card {
        padding: 1.5rem;
    }
    
    .unit-card {
        padding: 1rem;
    }
    
    .portfolio-level {
        padding: 1.5rem;
    }
    
    .assessment-category {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .page-header {
        background: none !important;
        border-bottom: 2px solid #000 !important;
    }
    
    .level-card,
    .portfolio-level,
    .assessment-category {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .next-steps-cta {
        background: none !important;
        color: #000 !important;
        border: 2px solid #000 !important;
    }
}


/* Resources Section Styles */

/* Resource Navigation */
.resource-nav {
    background: #f8fafc;
    padding: 3rem 0;
}

.resource-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.resource-nav-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.resource-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.nav-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-nav-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.resource-nav-card p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Resource Sections */
.resource-section {
    padding: 4rem 0;
}

.resource-section:nth-child(even) {
    background: #f8fafc;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.resource-card.featured {
    border: 2px solid #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.02), rgba(30, 58, 138, 0.02));
}

.resource-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.resource-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.resource-meta {
    flex: 1;
}

.resource-meta h3,
.resource-meta h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag.new {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.tag.hot {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.resource-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: #1e3a8a;
}

.resource-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Category Sections */
.resource-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-title {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
    padding-bottom: 0.5rem;
}

/* Organization Cards */
.organization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.organization-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.organization-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.org-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.org-logo {
    font-size: 3rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.org-info h4 {
    color: #1e3a8a;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.org-focus {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.org-contributions {
    margin-bottom: 1.5rem;
}

.org-contributions h5 {
    color: #059669;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.org-contributions ul {
    list-style: none;
    padding: 0;
}

.org-contributions li {
    padding: 0.25rem 0;
    color: #475569;
    position: relative;
    padding-left: 1rem;
    font-size: 0.875rem;
}

.org-contributions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e3a8a;
}

/* Research Papers */
.papers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.paper-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.paper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.paper-card.featured {
    border: 2px solid #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.02), rgba(30, 58, 138, 0.02));
}

.paper-header h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.4;
}

.paper-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.paper-venue,
.paper-date {
    font-size: 0.75rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.paper-abstract {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.paper-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Learning Resources */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.learning-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.learning-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.learning-header {
    margin-bottom: 1rem;
}

.learning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.learning-header h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.learning-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.learning-level {
    margin-bottom: 1.5rem;
}

.level-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.level-badge.beginner {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.level-badge.intermediate {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.level-badge.advanced {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* Resource Submission CTA */
.resource-submission-cta {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.resource-submission-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.resource-submission-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .resource-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .resource-grid,
    .organization-grid,
    .papers-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card,
    .organization-card,
    .paper-card,
    .learning-card {
        padding: 1.5rem;
    }
    
    .resource-header {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .org-header {
        flex-direction: column;
        text-align: center;
    }
    
    .org-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .resource-actions {
        justify-content: center;
    }
    
    .paper-meta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .resource-nav-card {
        padding: 1.5rem;
    }
    
    .category-section {
        padding: 1.5rem;
    }
    
    .resource-card,
    .organization-card,
    .paper-card,
    .learning-card {
        padding: 1rem;
    }
    
    .resource-icon,
    .org-logo,
    .learning-icon {
        font-size: 2rem;
    }
}

/* Search and Filter (for future enhancement) */
.resource-search {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1e3a8a;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background: #1e3a8a;
    color: white;
}

/* Print Styles */
@media print {
    .resource-nav,
    .resource-submission-cta {
        background: none !important;
        color: #000 !important;
    }
    
    .resource-card,
    .organization-card,
    .paper-card,
    .learning-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .resource-actions {
        display: none !important;
    }
}

