/* style.css - v2 High Contrast */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-void: #000000;
    --bg-panel: #0a0a0a;
    --text-marble: #F0F0F0;
    --text-muted: #A0A0A0;
    --accent-blood: #8B0000;
    --font-header: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-void);
    color: var(--text-marble);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-header); letter-spacing: 2px; text-transform: uppercase; }

/* UTILITIES */
.container { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.center { text-align: center; }

/* BUTTONS WITH PULSE */
.btn {
    display: inline-block;
    background: var(--accent-blood);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-header);
    letter-spacing: 1px;
    border: 1px solid var(--accent-blood);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3); /* Subtle Glow */
}
.btn:hover { 
    background: transparent; 
    border: 1px solid var(--accent-blood); 
    color: var(--accent-blood); 
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.8); /* Intense Glow */
}

/* VISUAL FX: FILM GRAIN */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* SECTIONS */
section { padding: 80px 0; border-bottom: 1px solid #151515; }

/* HERO SECTION (Background Image Logic) */
.hero { 
    height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column;
    text-align: center;
    position: relative;
    /* This assumes you have an image named hero-bg.jpg */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,1)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    border-bottom: 1px solid #222;
}
.red-line { 
    width: 2px; height: 100px; 
    background: var(--accent-blood); 
    margin: 0 auto 20px; 
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.5);
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.hero p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 40px; font-style: italic; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

/* MANIFESTO */
.manifesto-block { border-left: 2px solid var(--accent-blood); padding-left: 30px; margin: 40px 0; }
.manifesto h2 { color: var(--text-muted); font-size: 1.5rem; margin-bottom: 20px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.quote-box { text-align:center; font-size:1.2rem; border-top:1px solid #222; padding-top:20px; margin-top:40px; }
.sub-quote { color:var(--text-muted); font-size:0.9rem; display:block; margin-top:5px; }

/* ANCHOR SECTION */
.anchor-section { background-color: #050505; }

/* OPT-IN FORM */
.opt-in { background: var(--bg-panel); border: 1px solid #222; padding: 40px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.form-group { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
input[type="email"] {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    width: 60%;
    min-width: 250px;
    font-family: var(--font-body);
    font-size: 1rem;
}
input[type="email"]:focus { border-color: var(--accent-blood); outline: none; }

/* SUCCESS / ERROR STATES */
.success-box { padding: 30px; border: 1px solid var(--accent-blood); background: #1a0505; margin-top: 20px; animation: fadeIn 0.5s ease; }
.success-title { color: #fff; font-size: 1.2rem; margin-bottom: 20px; font-family: var(--font-header); }
.success-msg { font-size:0.8rem; color:var(--text-muted); margin-top: 15px; }
.error-msg { margin-top:20px; color:var(--accent-blood); font-weight:bold; }

/* FOOTER */
footer { padding: 40px 0; text-align: center; font-size: 0.9rem; color: #444; }
.footer-link { color: #666; text-decoration: none; border-bottom: 1px solid #444; transition: color 0.3s; }
.footer-link:hover { color: #fff; border-color: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) { 
    .split-grid { grid-template-columns: 1fr; } 
    .hero h1 { font-size: 2rem; } 
    input[type="email"] { width: 100%; margin-bottom: 10px; }
    .hero { background-attachment: scroll; } /* Fix for some mobile browsers */
}

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }