* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2d3748;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1f5006 0%, #2a6f08 100%);
    color: white;
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(31, 80, 6, 0.2);
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    background: white;
    padding: 20px 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: #1f5006;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-links a:hover {
    background: #f0fce8;
    color: #2a6f08;
    transform: translateY(-1px);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e8f8e8 0%, #f0fce8 100%);
    border: 2px solid #3a8f0a;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(58, 143, 10, 0.1);
}

.info-box strong {
    color: #1f5006;
    font-weight: 600;
}

/* Section Headers */
h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f5006;
    margin: 50px 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #3a8f0a;
    display: inline-block;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f5006;
    margin-top: 30px;
    margin-bottom: 16px;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    margin: 24px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3a8f0a;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Note Boxes */
.note {
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fce8 100%);
    border-left: 5px solid #3a8f0a;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(58, 143, 10, 0.08);
}

.note strong {
    color: #1f5006;
    font-weight: 600;
}

/* Lists */
ul, ol {
    margin: 16px 0 16px 28px;
    line-height: 1.8;
}

li {
    margin-bottom: 12px;
    padding-left: 8px;
}

li strong {
    color: #1f5006;
    font-weight: 600;
}

/* Links */
a {
    color: #1f5006;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: #2a6f08;
    border-bottom-color: #3a8f0a;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #1f5006 0%, #2a6f08 100%);
    color: white;
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    border-top-right-radius: 12px;
}

td {
    padding: 16px;
    border-bottom: 1px solid #e8f8e8;
    vertical-align: top;
}

/* This was the sneaky hover-to-vanish bug */
/* tr:hover {
    background: #f9fcf9;
} */

.phase-header {
    background: linear-gradient(135deg, #e8f8e8 0%, #f0fce8 100%);
    font-weight: 700;
    color: #1f5006;
    padding: 20px 16px !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.week-title {
    display: inline-block;
    background: linear-gradient(135deg, #1f5006 0%, #2a6f08 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

/* Badges */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #1f5006 0%, #2a6f08 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

/* Code */
code {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #2d3748;
}

/* Emphasis */
.emphasis {
    font-weight: 600;
    color: #1f5006;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-top: 5px solid #3a8f0a;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.project-card h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1f5006;
}

/* Resources - Vertical Stack */
.resources-list {
    display: flex;
    flex-direction: column;
}

.resource-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3a8f0a;
}

.resource-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateX(4px);
}

.resource-item strong {
    display: block;
    color: #1f5006;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.resource-item p {
    margin: 8px 0;
    color: #4a5568;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 3px solid #3a8f0a;
    text-align: center;
    color: #718096;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .card, .project-card {
        padding: 20px;
    }
    
    .container {
        padding: 15px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: #3a8f0a;
    color: white;
}

/* Staff Section */
.staff-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin: 30px auto;
    justify-content: center;
    max-width: 1100px;
}

.staff-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 200px;
}

.staff-photo {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.staff-member h3 {
    margin-top: 0;
    font-size: 16px;
    color: #1f5006;
}

.staff-member p {
    font-size: 13px;
    color: #718096;
    margin: 4px 0 0 0;
}
