/* Workplace Learning Research Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #FDFBF7;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.nav-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3A1213;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3A1213;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #3A1213;
    transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Hero Section - Rust/Amber gradient for industrial feel */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #75352D 0%, #5a2820 50%, #3A1213 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
}

.back-link {
    position: absolute;
    top: 5.5rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h1 .highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.meta-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.section-cream {
    background-color: #F1DDC4;
}

.section-white {
    background-color: #FDFBF7;
}

.section-dark {
    background: linear-gradient(180deg, #3A1213 0%, #2a0d0e 100%);
    color: white;
}

.section-label {
    font-size: 0.85rem;
    color: #92A4D2;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-dark .section-label {
    color: #92A4D2;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #3A1213;
}

.section-dark h2 {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
}

.section-subtitle-dark {
    font-size: 1.1rem;
    color: #75352D;
    margin-bottom: 2rem;
    font-style: italic;
}

.section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

/* Stakes Section */
.stakes-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.stakes-text .lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #3A1213;
}

.stakes-text p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.stakes-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-callout {
    padding: 2rem;
    border-radius: 12px;
}

.stat-primary {
    background: #75352D;
    color: white;
}

.stat-secondary {
    background: #3A1213;
    color: white;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Method Cards */
.method-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: #F1DDC4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #75352D;
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #3A1213;
}

.method-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Two Studies Section */
.two-studies {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 3rem;
}

.studies-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.study-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.study-card {
    background: #3A1213;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}

.study-number {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #92A4D2;
    margin-bottom: 0.75rem;
    display: block;
}

.study-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.study-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.study-journal {
    font-size: 0.85rem;
    color: #92A4D2;
    font-style: italic;
}

/* Key Finding */
.key-finding {
    background: rgba(146, 164, 210, 0.15);
    border-left: 4px solid #92A4D2;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    border-radius: 0 12px 12px 0;
}

.key-finding p {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Theme Cards */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.theme-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.theme-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.theme-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #92A4D2;
    color: #3A1213;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.theme-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: white;
}

.theme-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Quote Section */
.section-quote {
    background: #F1DDC4;
    padding: 5rem 2rem;
}

.big-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.big-quote blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    color: #3A1213;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.big-quote cite {
    font-size: 1rem;
    color: #75352D;
    font-style: normal;
}

/* Passion Quote */
.passion-quote {
    background: #75352D;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.passion-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

.passion-quote em {
    color: #92A4D2;
    font-style: italic;
}

.competency-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

/* Competency Cards */
.competency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.competency-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 3px solid #92A4D2;
    transition: all 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.competency-card h3 {
    font-size: 1.15rem;
    color: #3A1213;
    margin-bottom: 1rem;
}

.competency-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Ranking Insight */
.ranking-insight {
    background: #3A1213;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.ranking-insight h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.ranking-insight p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.7;
}

.ranking-insight strong {
    color: #92A4D2;
}

/* Connection Section */
.connection-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.connection-side {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid;
}

.connection-side:first-child {
    border-color: #92A4D2;
}

.connection-side:last-child {
    border-color: #75352D;
}

.connection-side h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #3A1213;
}

.connection-side ul {
    list-style: none;
}

.connection-side li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.connection-side li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #92A4D2;
}

.connection-side:last-child li::before {
    color: #75352D;
}

.connection-bridge {
    text-align: center;
    padding: 1.5rem;
}

.bridge-arrow {
    font-size: 2.5rem;
    color: #75352D;
    margin-bottom: 0.5rem;
}

.connection-bridge p {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.connection-insight {
    background: #F1DDC4;
    padding: 2rem 2.5rem;
    border-radius: 12px;
}

.connection-insight p {
    font-size: 1.1rem;
    color: #3A1213;
    margin: 0;
    line-height: 1.7;
}

/* Takeaway Section */
.section-takeaway {
    background: linear-gradient(135deg, #75352D 0%, #3A1213 100%);
    color: white;
    padding: 6rem 2rem;
}

.takeaway-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.takeaway-text {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.takeaway-text em {
    color: #92A4D2;
    font-style: italic;
}

.takeaway-subtext {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Implications Grid */
.implications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.implication-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #92A4D2;
}

.implication-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3A1213;
}

.implication-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Paper Cards */
.papers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.paper-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.paper-badge {
    display: inline-block;
    background: #92A4D2;
    color: #3A1213;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.paper-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3A1213;
    line-height: 1.4;
}

.paper-authors {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.paper-journal {
    font-size: 0.9rem;
    color: #75352D;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.paper-link {
    display: inline-block;
    color: #75352D;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.paper-link:hover {
    color: #3A1213;
}

/* Footer */
.page-footer {
    background: #3A1213;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-back {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
    .stakes-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stakes-stats {
        flex-direction: row;
    }
    
    .method-layout {
        grid-template-columns: 1fr;
    }
    
    .study-cards,
    .papers-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-grid,
    .competency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .connection-visual {
        grid-template-columns: 1fr;
    }
    
    .connection-bridge {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 700px) {
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero {
        padding: 5rem 1.5rem 2rem;
    }
    
    .back-link {
        top: 5rem;
        left: 1.5rem;
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .meta-card {
        width: 100%;
    }
    
    .stakes-stats {
        flex-direction: column;
    }
    
    .themes-grid,
    .competency-grid,
    .implications-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .passion-quote {
        padding: 2rem;
    }
    
    .passion-quote p {
        font-size: 1.25rem;
    }
    
    .big-quote blockquote {
        font-size: 1.2rem;
    }
}