/* Design System & CSS Variables */
:root {
    /* Colors */
    --primary-blue: #2B2FC4;
    --dark-blue: #1a1e8a;
    --deep-blue: #0d1180;
    --marigold-yellow: #F5A800;
    --burnt-orange: #D94F00;
    --red: #CC2936;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif; /* Bold 700, ExtraBold 800 */
    --font-body: 'Roboto', sans-serif; /* Regular 400, Medium 500 */
    --font-accent: 'Bebas Neue', sans-serif;
    
    /* Spacing */
    --section-padding-y: 5rem;
    --container-padding-x: 1.5rem;
    
    /* Breakpoints */
    /* Mobile-first approach, so min-width queries will be used */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base for clamp and rems */
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

.oswald-bold { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; }
.oswald-extrabold { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; }
.bebas-neue { font-family: var(--font-accent); }
.roboto-regular { font-family: var(--font-body); font-weight: 400; }
.roboto-medium { font-family: var(--font-body); font-weight: 500; }

/* Layout Utilities */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
}

@media (min-width: 480px) {
    .container { max-width: 480px; }
}
@media (min-width: 768px) {
    .container { max-width: 768px; padding: 0 2rem; }
}
@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}
@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

.section {
    padding: var(--section-padding-y) 0;
}

/* Print Styles */
@media print {
    body {
        color: #000;
        background: #fff;
    }
    .section, .container {
        padding: 0;
        margin: 0;
    }
}

/* Base Components - Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--marigold-yellow);
    color: var(--primary-blue);
    position: relative;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--burnt-orange) !important;
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 var(--burnt-orange) !important;
}

/* Navigation CTA shadow constraint for mobile */
@media (min-width: 768px) {
    .btn-primary {
        box-shadow: 4px 4px 0 var(--burnt-orange);
    }
}
@media (max-width: 767px) {
    /* Mobile style for buttons - slight shadow to not vibrate */
    .btn-primary {
        box-shadow: 2px 2px 0 var(--burnt-orange);
    }
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: transparent; /* Solid on scroll */
}

.site-header.scrolled {
    background-color: var(--deep-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    z-index: 1001; /* Above mobile menu */
}

.logo .logo-text {
    color: var(--marigold-yellow);
}

/* Desktop logo shadow only */
@media (min-width: 768px) {
    .logo .logo-text {
        text-shadow: 2px 2px 0 var(--burnt-orange);
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle.open .hamburger { background-color: transparent; }
.menu-toggle.open .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle.open .hamburger::after { transform: rotate(-45deg); bottom: 0; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
}

.lang-toggle span { opacity: 0.5; transition: opacity 0.2s; }
.lang-toggle span.active { opacity: 1; color: var(--marigold-yellow); }

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .menu-toggle { display: block; }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--deep-blue);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .main-nav.open {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .nav-links a { font-size: 1.5rem; }
    
    .nav-actions {
        flex-direction: column;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Subtle grain effect via linear-gradient if real image not available */
    background-image: url('data:image/svg+xml;utf8,%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)" opacity="0.05"/%3E%3C/svg%3E');
    z-index: 1;
}

.hero-watermark {
    position: absolute;
    bottom: -5%;
    right: -2%;
    font-size: 40vw;
    line-height: 1;
    color: var(--white);
    opacity: 0.05;
    z-index: 1;
    user-select: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px; /* Header offset */
}

.hero-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    opacity: 0.5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 7rem);
    color: var(--marigold-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-subheadline {
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-body {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--burnt-orange);
    padding: 0.5rem 1rem;
}

.hero-image-wrapper {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    width: clamp(250px, 30vw, 400px);
    height: clamp(250px, 30vw, 400px);
    border-radius: 50%;
    border: 4px solid var(--marigold-yellow);
    background-color: rgba(0,0,0,0.2);
    object-fit: cover;
    transform: translateY(20px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@media (max-width: 767px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-body {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
}

/* Urgent Banner */
.urgent-banner {
    width: 100%;
    background-color: var(--red);
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    cursor: pointer;
}

.urgent-link {
    text-decoration: none;
    color: var(--white);
    display: block;
}

.urgent-content {
    white-space: nowrap;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .urgent-content {
        animation: pulseText 2s infinite;
    }
}

@keyframes pulseText {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

@media (max-width: 767px) {
    .urgent-content {
        animation: marquee 15s linear infinite;
        display: inline-block;
        padding-left: 100%;
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* The Gates Section */
.gates-section {
    background-color: var(--dark-blue);
    color: var(--white);
}

.gates-title {
    color: var(--marigold-yellow);
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.gates-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.gates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gate-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--marigold-yellow);
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.gate-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--burnt-orange);
    background-color: rgba(255, 255, 255, 0.08);
}

.gate-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.gate-title {
    color: var(--marigold-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.gate-desc {
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    .gates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gates-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Independent Section */
.why-independent {
    background-color: var(--white);
    color: var(--dark-blue);
}

.why-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    color: var(--primary-blue);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.why-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(26, 30, 138, 0.85); /* Dark blue with some transparency */
}

.pull-quote {
    color: var(--primary-blue);
    font-size: 1.8rem;
    border-left: 4px solid var(--marigold-yellow);
    padding-left: 1.5rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.why-graphic {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    height: 350px;
    padding: 2rem;
    background-color: rgba(43, 47, 196, 0.05);
    border-radius: 8px;
}

.graphic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
    border-radius: 4px;
    height: 60%;
    color: var(--white);
}

.graphic-col.dc { 
    background-color: var(--primary-blue); 
    opacity: 0.7;
}

.graphic-col.suburbs { 
    background-color: var(--red); 
    opacity: 0.7;
}

.graphic-col.ruddy-col { 
    background-color: var(--marigold-yellow); 
    color: var(--dark-blue);
    height: 100%;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.graphic-col .title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.graphic-col .desc {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .why-container {
        flex-direction: column;
    }
    .why-graphic {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .graphic-col {
        height: auto;
        padding: 1rem;
    }
    .graphic-col.ruddy-col {
        transform: scale(1);
    }
}

/* Petition Section */
.petition-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.petition-header {
    margin-bottom: 2.5rem;
}

.petition-header h2 {
    color: var(--marigold-yellow);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.petition-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }

/* Progress Bar */
.progress-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.progress-bar-wrapper {
    width: 100%;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--red);
    width: 0%; /* JS will animate to target width */
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.progress-count {
    color: var(--marigold-yellow);
    font-size: 3rem;
    line-height: 1;
    text-align: center;
}

/* Forms */
.petition-forms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--dark-blue);
    border-radius: 8px;
    overflow: hidden;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.form-tab {
    flex: 1;
    padding: 1rem;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark-blue);
    opacity: 0.7;
    transition: all 0.2s;
}

.form-tab.active {
    background: var(--white);
    opacity: 1;
    border-top: 4px solid var(--marigold-yellow);
    color: var(--primary-blue);
}

.petition-form {
    display: none;
    padding: 2rem;
}

.petition-form.active-form {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(43, 47, 196, 0.2);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .half {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    /* Replicate the specific box-shadow mentioned */
    box-shadow: 4px 4px 0 var(--burnt-orange) !important;
}

/* Path B Info Box */
.form-info-box {
    background-color: rgba(43, 47, 196, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-info-box h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.form-info-box p {
    margin-bottom: 1rem;
}

.register-btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

.small-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0 !important;
}

.submit-btn-unreg {
    width: 100%;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

/* Meet Ruddy Section */
.meet-ruddy-section {
    background-color: var(--dark-blue);
    color: var(--white);
}

.meet-container {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.meet-media {
    flex: 1;
    display: flex;
    align-items: center;
}

.media-placeholder {
    width: 100%;
    padding-top: 133%; /* aspect ratio */
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    /* This will be replaced by actual media by the user */
}

.media-placeholder::after {
    content: 'Photo/Video Placeholder';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.meet-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meet-content h2 {
    color: var(--marigold-yellow);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.meet-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quote-yellow {
    color: var(--marigold-yellow);
    font-size: 1.6rem;
    border-left: 4px solid var(--white);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .meet-container {
        flex-direction: column;
    }
}

/* $1 Salary Section */
.salary-section {
    background-color: var(--marigold-yellow);
    color: var(--primary-blue);
}

.salary-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.salary-number {
    font-size: clamp(8rem, 20vw, 15rem);
    line-height: 1;
    margin-bottom: -1rem;
}

.salary-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.salary-desc {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.salary-note {
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--white);
    color: var(--dark-blue);
}

.title-blue {
    color: var(--primary-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(26, 30, 138, 0.1);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 10px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--marigold-yellow);
    border-radius: 50%;
    margin: 4px auto 1rem;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--marigold-yellow);
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background-color: var(--burnt-orange);
    box-shadow: 0 0 0 2px var(--burnt-orange);
}

.active-timeline .timeline-dot {
    background-color: var(--primary-blue);
    box-shadow: 0 0 0 2px var(--primary-blue);
    transform: scale(1.3);
}

.timeline-item h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.timeline-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }
    
    .timeline::before {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 4px;
        height: auto;
    }
    
    .timeline-item {
        width: 100%;
        text-align: left;
        margin-bottom: 2rem;
        padding-left: 3rem;
        position: relative;
    }
    
    .timeline-dot {
        position: absolute;
        left: -14px;
        top: 0;
        margin: 0;
    }
}

/* Donate Section */
.donate-section {
    background-color: var(--deep-blue);
    color: var(--white);
}

.text-yellow { color: var(--marigold-yellow); }

.donate-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.donate-sub {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.donate-tier {
    display: block;
    text-decoration: none;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 2rem 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.donate-tier:hover {
    border-color: var(--marigold-yellow);
    transform: translateY(-5px);
    background-color: rgba(245, 168, 0, 0.1);
}

.tier-amount {
    font-size: 3.5rem;
    color: var(--marigold-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-name {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

.donate-cta-wrap {
    margin-bottom: 3rem;
}

.donate-btn {
    font-size: 1.5rem;
    padding: 1rem 3rem;
    margin-bottom: 1rem;
    box-shadow: 6px 6px 0 var(--burnt-orange) !important;
}

.donate-legal {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

.recurring-box {
    background-color: rgba(245, 168, 0, 0.1);
    border: 1px solid var(--marigold-yellow);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.recurring-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .donate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }
}

/* Volunteer & Story Sections */
.volunteer-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.volunteer-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.sub-text, .title-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.volunteer-form, .story-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 8px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .checkbox-grid { grid-template-columns: 1fr; }
}

.story-section {
    background-color: var(--white);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 100%;
}

.btn-outline-blue:hover {
    background-color: rgba(43, 47, 196, 0.05);
}

/* Social & Footer */
.social-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--marigold-yellow);
}

.site-footer {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 200px;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a, .footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 0.8rem; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}
