/* JARL ARDC Materials - Shared Styles */

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

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.project-number {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

nav {
    background: #34495e;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

nav a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.content {
    padding: 60px 40px;
}

.section {
    margin-bottom: 50px;
}

h2 {
    color: #1e3c72;
    font-size: 2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
}

.info-box {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #3498db;
}

.info-box strong {
    color: #2c3e50;
    font-size: 1.1em;
}

ul {
    margin: 20px 0 20px 40px;
}

li {
    margin: 10px 0;
    line-height: 1.8;
}

.evidence-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.evidence-link a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
}

.evidence-link a:hover {
    background: white;
    color: #667eea;
    transform: scale(1.05);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.metric-number {
    font-size: 3em;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1em;
    opacity: 0.9;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 30px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    nav a {
        display: block;
        margin: 5px 0;
    }
}
