/* base.css - Core styles extracted from main.css, components.css, and responsive.css */

/* Typography */
body {
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #101620;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Optima', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #FFFFFF;
}

/* Colors */
:root {
    --primary-bg: #101620;
    --secondary-bg: #1A2A42;
    --darker-bg: #0D1320;
    --accent: #DECA9C;
    --text: #FFFFFF;
    --text-secondary: #E2E8F0;
    --border: #1E293B;
}

/* Common elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--accent);
    margin: 15px auto 0;
}

/* Transitions */
a, button, .featured-article, .leader, .contact-info {
    transition: all 0.3s ease;
}