/* 
   Color Palette: Crimson & Charcoal
   - Primary: #B22B5B (Crimson)
   - Background Dark: #121212
   - Background Light: #1F1F1F
   - Text Light: #F5F5F5
   - Text Dark: #121212
   - Accent: #F08080 (Light Coral for highlights)
*/

:root {
    --color-primary: #B22B5B;
    --color-secondary: #F08080;
    --color-bg-dark: #121212;
    --color-bg-light: #1F1F1F;
    --color-text-light: #F5F5F5;
    --color-text-dark: #121212;
    --font-family-headings: 'Georgia', serif;
    --font-family-body: 'Helvetica Neue', Arial, sans-serif;
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

ul, ol {
    list-style-position: inside;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Sharp border-style */
}

/* --- Section Styling --- */
.section {
    padding: 64px 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    color: var(--color-text-light);
}

.section-intro {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(245, 245, 245, 0.8);
}

/* --- Header & Navigation --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text-light);
    z-index: 100;
    font-family: var(--font-family-headings);
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav .nav-list a {
    color: var(--color-text-light);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    z-index: 99;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
}

.mobile-nav a {
    color: var(--color-text-light);
    font-size: 18px;
    display: block;
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }
    #menu-toggle:checked ~ .mobile-nav { max-height: 400px; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp border-style */
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
}


/* --- Hero Section (fullscreen-center) --- */
.hero-fullscreen {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(56px, 9vw, 90px);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 32px;
    opacity: 0.9;
}

/* --- Benefits Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 19px;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    padding-left: 60px;
    padding-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    background-color: var(--color-bg-dark);
    border: 3px solid var(--color-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-title {
    font-size: 22px;
    color: var(--color-secondary);
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--color-primary);
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--color-text-light);
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: bold;
    font-family: var(--font-family-headings);
    display: block;
}

.stat-label {
    font-size: 16px;
    margin: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(32px, 5vw, 44px);
    color: var(--color-text-light);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Checklist Block --- */
.checklist-grid {
    display: grid;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-light);
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.checklist-icon {
    font-size: 24px;
    color: var(--color-primary);
    margin-right: 16px;
    font-weight: bold;
}

.checklist-item p {
    margin: 0;
    font-size: 17px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* --- Numbered Steps --- */
.steps-grid {
    display: grid;
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 32px;
    padding-left: 80px;
    background-color: var(--color-bg-dark);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.30);
}

.step-number {
    position: absolute;
    left: 20px;
    top: 32px;
    font-size: 48px;
    font-weight: bold;
    color: var(--color-primary);
    opacity: 0.4;
    font-family: var(--font-family-headings);
}

.step-title {
    font-size: 24px;
    color: var(--color-text-light);
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Page Header --- */
.page-header {
    padding: 60px 0;
    text-align: center;
}
.page-title {
    font-size: clamp(40px, 7vw, 64px);
}
.page-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

/* --- Program Page (grid-6cards) --- */
.program-grid {
    display: grid;
    gap: 24px;
}

.program-card {
    background-color: var(--color-bg-dark);
    padding: 32px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.program-card-title {
    font-size: 22px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Image Feature Section --- */
.image-feature-container {
    display: grid;
    gap: 32px;
    align-items: center;
}
.image-feature-visual img {
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
    .image-feature-container { grid-template-columns: 1fr 1fr; }
}

/* --- Mission Page (split-layout) --- */
.split-layout-container {
    display: grid;
    gap: 48px;
    align-items: center;
}
.split-layout-image img {
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.values-title {
    font-size: 24px;
    margin-top: 32px;
    color: var(--color-secondary);
}
.values-list {
    list-style: none;
    padding-left: 0;
}
.values-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}
.values-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}
@media (min-width: 992px) {
    .split-layout-container { grid-template-columns: 45% 55%; }
}

/* --- Manifesto Section --- */
.manifesto-section blockquote {
    border-left: 5px solid var(--color-primary);
    padding-left: 32px;
    margin: 0 auto;
    max-width: 800px;
}
.manifesto-section blockquote p {
    font-size: clamp(20px, 4vw, 28px);
    font-style: italic;
    font-family: var(--font-family-headings);
    line-height: 1.5;
}

/* --- Contact Page --- */
.contact-layout-container {
    display: grid;
    gap: 48px;
}
@media (min-width: 992px) {
    .contact-layout-container { grid-template-columns: 60% 40%; }
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-text-light);
    font-size: 16px;
    border-radius: 0;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-info-wrapper {
    background-color: var(--color-bg-dark);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.contact-detail-item {
    margin-bottom: 24px;
}
.contact-detail-item h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.contact-detail-item p {
    margin: 0;
    line-height: 1.5;
}

/* --- Legal & Thank You Pages --- */
.legal-content h1, .thank-you-title {
    font-size: clamp(36px, 6vw, 56px);
    text-align: center;
    margin-bottom: 32px;
}
.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
}
.legal-content p, .legal-content li {
    font-size: 17px;
    line-height: 1.8;
}
.text-center { text-align: center; }
.thank-you-text { font-size: 18px; max-width: 700px; margin: 0 auto 40px auto; }
.next-steps h2 { font-size: 24px; text-align: center; }
.next-steps-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }


/* --- Footer --- */
.site-footer {
    background-color: var(--color-bg-light) !important;
    color: var(--color-text-light) !important;
    padding-top: 48px;
}

.footer-container {
    display: grid;
    gap: 32px;
    padding-bottom: 48px;
}

.footer-column .footer-heading {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-family: var(--font-family-headings);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-column a {
    color: rgba(245, 245, 245, 0.8) !important;
}

.footer-links a:hover, .footer-column a:hover {
    color: var(--color-primary) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

@media (min-width: 576px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); }
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(120%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 0;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 0;
}
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}