/* --- Değişkenler --- */
:root {
    --color-black: #111111;
    --color-red: #D32F2F;       /* Devrim Kırmızısı */
    --color-red-dark: #b71c1c;
    --color-white: #ffffff;
    --color-grey: #f4f4f4;
    --color-text: #212121;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto Condensed', sans-serif;
    
    --shadow: 5px 5px 0px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; filter: grayscale(100%) contrast(1.2); }

/* --- Alert Bar --- */
.alert-bar { background-color: var(--color-red); color: var(--color-white); padding: 8px 0; font-size: 0.9rem; text-align: center; }
.alert-bar strong { text-transform: uppercase; margin-right: 5px; color: #ffeb3b; }

/* --- Header --- */
.justice-header {
    background-color: var(--color-white);
    padding: 20px 0;
    border-bottom: 3px solid var(--color-black);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-black); letter-spacing: -1px; display: flex; align-items: center; }
.red-box { background-color: var(--color-red); color: var(--color-white); padding: 0 5px; margin-left: 2px; }

.bold-nav ul { display: flex; gap: 30px; align-items: center; }
.bold-nav a { font-weight: 700; color: var(--color-black); font-size: 1.1rem; text-transform: uppercase; }
.bold-nav a:hover, .bold-nav a.active { color: var(--color-red); text-decoration: underline; }

.btn-red { background-color: var(--color-red); color: var(--color-white) !important; padding: 10px 25px; font-weight: bold; text-transform: uppercase; border: 2px solid var(--color-red); }
.btn-red:hover { background-color: var(--color-white); color: var(--color-red) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 30px; height: 4px; background-color: var(--color-black); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background-color: var(--color-black); z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: 0.4s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: var(--color-white); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; color: var(--color-white); margin: 15px 0; text-transform: uppercase; }

/* --- Hero --- */
.hero { position: relative; height: 600px; display: flex; align-items: center; justify-content: flex-start; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: -1; }

.hero-content { z-index: 1; color: var(--color-white); padding: 20px; }
.hero h1 { font-family: var(--font-heading); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; text-transform: uppercase; }
.highlight { background-color: var(--color-red); padding: 0 10px; }
.hero p { font-size: 1.5rem; margin-bottom: 40px; max-width: 600px; font-weight: 300; }

.hero-actions { display: flex; gap: 20px; }
.btn { padding: 15px 40px; font-weight: bold; cursor: pointer; text-transform: uppercase; font-family: var(--font-heading); font-size: 1.2rem; border: none; }
.btn-white { background-color: var(--color-white); color: var(--color-black); }
.btn-white:hover { background-color: var(--color-red); color: var(--color-white); }
.btn-border { border: 3px solid var(--color-white); background: transparent; color: var(--color-white); }
.btn-border:hover { background: var(--color-white); color: var(--color-black); }

/* --- Grid --- */
.section-padding { padding: 80px 0; }
.section-title, .page-head { margin-bottom: 60px; }
.section-title h2, .page-head h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-black); margin-bottom: 10px; text-transform: uppercase; }
.red-line { width: 100px; height: 5px; background: var(--color-red); }

.campaign-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.campaign-card { background: var(--color-grey); padding: 30px; border: 2px solid var(--color-black); box-shadow: var(--shadow); transition: 0.3s; }
.campaign-card:hover { transform: translateY(-5px); background: var(--color-black); color: var(--color-white); }
.card-tag { font-weight: bold; color: var(--color-red); margin-bottom: 10px; font-family: var(--font-heading); }
.campaign-card h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; line-height: 1; }
.campaign-card p { margin-bottom: 20px; font-size: 1.1rem; }
.link-arrow { font-weight: bold; text-transform: uppercase; border-bottom: 2px solid var(--color-red); }

/* --- Banner --- */
.manifesto-banner { background-color: var(--color-black); color: var(--color-white); padding: 80px 0; text-align: center; }
.manifesto-banner h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 20px; }
.manifesto-banner p { font-size: 1.3rem; margin-bottom: 40px; }
.btn-red-large { background: var(--color-red); color: #fff; padding: 20px 50px; font-size: 1.5rem; font-family: var(--font-heading); text-transform: uppercase; font-weight: bold; }
.btn-red-large:hover { background: var(--color-white); color: var(--color-black); }

/* --- About & Split --- */
.split-layout, .report-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--color-red); }
.bold-list { list-style: square; margin-top: 20px; padding-left: 20px; font-weight: bold; font-size: 1.2rem; }
.border-frame { padding: 10px; border: 5px solid var(--color-black); }

/* --- Testimonials --- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.story-box { background: var(--color-white); border: 2px solid #ccc; padding: 40px; position: relative; }
.quote-icon { font-size: 4rem; color: var(--color-red); position: absolute; top: 10px; left: 20px; opacity: 0.2; font-family: var(--font-heading); }
.story-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }
.story-box p { font-style: italic; margin-bottom: 20px; font-size: 1.1rem; }
.story-author { font-weight: bold; text-align: right; color: var(--color-red); }

/* --- Contact & Forms --- */
.info-side h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.info-row { margin-bottom: 15px; font-size: 1.2rem; }
.alert-box { background: #fff3cd; color: #856404; padding: 15px; border: 1px solid #ffeeba; margin-top: 20px; font-weight: bold; }

.bold-form .form-group { margin-bottom: 25px; }
.bold-form label { display: block; margin-bottom: 5px; font-weight: bold; text-transform: uppercase; font-family: var(--font-heading); }
.bold-form input, .bold-form select, .bold-form textarea { width: 100%; padding: 15px; border: 2px solid var(--color-black); font-family: var(--font-body); font-size: 1rem; background: #fff; }
.bold-form input:focus { border-color: var(--color-red); outline: none; }
.btn-black { background-color: var(--color-black); color: #fff; width: 100%; padding: 15px; font-size: 1.2rem; font-weight: bold; cursor: pointer; border: none; font-family: var(--font-heading); text-transform: uppercase; }
.btn-black:hover { background-color: var(--color-red); }

/* --- Legal --- */
.rights-doc { max-width: 800px; margin: 0 auto; background: var(--color-grey); padding: 60px; border: 1px solid #ccc; }
.rights-doc h1 { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; }
.meta { text-align: center; font-style: italic; color: #555; }
.black-line { width: 100%; height: 2px; background: var(--color-black); margin: 30px 0; }
.rights-doc h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-top: 30px; margin-bottom: 10px; color: var(--color-red); }

/* --- Footer --- */
.justice-footer { background-color: var(--color-black); color: var(--color-white); padding: 60px 0; margin-top: auto; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 20px; }
.f-brand { font-family: var(--font-heading); font-size: 2rem; }
.f-links a { color: #ccc; margin: 0 15px; font-weight: bold; text-transform: uppercase; }
.f-links a:hover { color: var(--color-red); }
.copyright { text-align: center; padding-top: 20px; font-size: 0.9rem; opacity: 0.6; }

@media (max-width: 992px) {
    .bold-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 3rem; }
    .split-layout, .report-wrapper, .story-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; }
}