/* --- RESET & VARIABLES --- */
:root {
    --black: #050505;
    --charcoal: #1a1a1a;
    --white: #f0f0f0;
    --rust: #8a1c1c; /* Dried blood red */
    --concrete: #888;
    
    --header-font: 'Anton', sans-serif;
    --body-font: 'Courier Prime', monospace;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--header-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: var(--concrete);
}

a {
    text-decoration: none;
    color: var(--white);
    transition: 0.3s;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-family: var(--header-font);
    font-size: 2rem;
    color: var(--rust);
    letter-spacing: 5px;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--rust);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Placeholder for a gritty background image */
    background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%); 
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem; /* Huge text */
    margin-bottom: 20px;
    line-height: 1;
}

.motto {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--white);
    border-left: 3px solid var(--rust);
    padding-left: 15px;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--rust);
    color: var(--white);
    font-family: var(--header-font);
    font-size: 1.5rem;
    border: 2px solid var(--rust);
    text-transform: uppercase;
}

.cta-button:hover {
    background: transparent;
    color: var(--rust);
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 20px;
}

/* --- EVOLUTION SECTION --- */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.stat-block {
    border: 1px solid var(--charcoal);
    padding: 30px;
    text-align: center;
}

.stat-block h3 {
    font-size: 4rem;
    color: var(--rust);
}

/* --- UPDATED CREED CARD STYLING --- */

.creed-card {
    background: var(--charcoal);
    padding: 40px;
    border-left: 5px solid var(--rust);
    transition: transform 0.3s ease;
    position: relative; /* Needed for positioning the verse number */
    overflow: hidden;
}

/* This creates the "Watermark" effect for the Roman Numerals */
.verse {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--header-font);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05); /* Very subtle, barely visible ghost text */
    pointer-events: none;
    z-index: 0;
}

.creed-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1; /* Ensures text sits on top of the verse number */
}

.creed-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #ccc; /* Slightly lighter than concrete for readability */
}

/* Optional: Add a slight red glow on hover */
.creed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 28, 28, 0.2); 
}

/* --- JOIN SECTION --- */
.center-text {
    text-align: center;
}

.signup-form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

input {
    padding: 15px;
    background: transparent;
    border: 1px solid var(--concrete);
    color: var(--white);
    font-family: var(--body-font);
    width: 300px;
}

button {
    padding: 15px 30px;
    background: var(--white);
    color: var(--black);
    font-family: var(--header-font);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

button:hover {
    background: var(--rust);
    color: var(--white);
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--charcoal);
    font-size: 0.8rem;
    color: var(--concrete);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .content-grid { grid-template-columns: 1fr; }
    .signup-form { flex-direction: column; align-items: center; }
    input { width: 100%; }
}
