/* style.css */
:root {
    --bg-dark: #121212;
    --bg-lighter: #1a1a1a;
    --text-main: #d3cbb8; /* Aged parchment color */
    --accent-red: rgba(139, 0, 0, 0.6);
    --accent-blue: rgba(28, 59, 90, 0.6);
    --border-gray: #333333;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Crimson Text', serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Navigation */
header {
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-gray);
    backdrop-filter: blur(5px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.2rem;
    margin: 0;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--bg-lighter) 0%, var(--bg-dark) 100%);
    text-align: center;
    padding-top: 60px;
}

.hero-logo {
    max-width: 90%;
    max-height: 65vh;
    border: 4px solid #000;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.9);
}

.hero-content h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
    color: #a8a397;
}

.primary-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 12px 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.primary-btn:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(211, 203, 184, 0.4);
}

/* Content Section */
.split-section {
    display: flex;
    padding: 6rem 10%;
    align-items: center;
    gap: 4rem;
    background-color: #0f0f0f;
    border-top: 1px solid var(--border-gray);
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #bfb8a8;
}

.image-content {
    flex: 1;
}

.feature-image {
    width: 100%;
    border-radius: 4px;
    /* This shadow creates the red/blue aesthetic from the Capitol image */
    box-shadow: -15px 15px 0px var(--accent-red), 15px -15px 0px var(--accent-blue);
    transition: transform 0.4s ease;
    border: 2px solid #000;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem;
    background: #050505;
    border-top: 1px solid var(--border-gray);
    font-size: 1rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
    
    .feature-image {
        box-shadow: -10px 10px 0px var(--accent-red), 10px -10px 0px var(--accent-blue);
    }
    
    nav ul {
        gap: 1.5rem;
    }
}