:root {
    --primary-blue: #0A3161;
    --primary-red: #B31942;
    --white: #FFFFFF;
    --off-white: #F4F6F8;
    --dark-text: #222222;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4, .logo { font-family: var(--font-heading); text-transform: uppercase; }

/* Buttons with sliding background effect */
.btn {
    display: inline-block; padding: 1rem 2rem; font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700; text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer; position: relative; overflow: hidden; z-index: 1; text-align: center;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.2); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease; z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn-primary { background-color: var(--primary-blue); color: var(--white); }
.btn-secondary { background-color: var(--white); color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: calc(1rem - 2px) calc(2rem - 2px); }
.btn-secondary::before { background-color: var(--primary-blue); }
.btn-secondary:hover { color: var(--white); }
.btn-donate { background-color: var(--primary-red); color: var(--white); }
.btn-block { display: block; width: 100%; }

/* Top Banner */
.top-banner { background-color: var(--primary-red); color: var(--white); text-align: center; padding: 0.5rem; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Navbar */
.navbar { padding: 1.5rem 0; background-color: var(--white); border-bottom: 2px solid var(--off-white); position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 700; letter-spacing: 1px; color: var(--primary-blue); }
.logo span { color: var(--primary-red); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--primary-blue); font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary-red); }

/* Hero */
.hero { position: relative; height: 80vh; min-height: 600px; display: flex; align-items: center; }
.hero-image { position: absolute; top: 0; right: 0; width: 65%; height: 100%; z-index: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); filter: contrast(1.1); }
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-text-box { background-color: var(--primary-blue); color: var(--white); padding: 4rem; max-width: 550px; box-shadow: 10px 10px 0px var(--primary-red); }
.hero h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; font-weight: 600; }
.hero-buttons { display: flex; gap: 1rem; }

/* Issues Section */
.issues-section { padding: 6rem 0; background-color: var(--off-white); }
.section-title { margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; color: var(--primary-blue); }
.title-accent { width: 60px; height: 4px; background-color: var(--primary-red); margin-top: 0.5rem; }
.issues-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.issue-card { background: var(--white); padding: 3rem; border-top: 4px solid var(--primary-blue); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.issue-number { font-family: var(--font-heading); font-size: 4rem; color: var(--off-white); font-weight: 700; line-height: 1; margin-bottom: -1rem; text-shadow: 1px 1px 0 #ccc; }
.issue-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--primary-blue); position: relative; z-index: 1;}
.issue-card p { font-size: 1.05rem; color: #555; }

/* About */
.about-section { padding: 8rem 0; }
.about-container { display: flex; align-items: flex-start; gap: 4rem; }
.about-text { flex: 1.2; }
.about-text h2 { font-size: 3rem; color: var(--primary-blue); }
.about-text .title-accent { margin-bottom: 2rem; }
.lead { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--primary-blue); }
.about-text p:not(.lead) { margin-bottom: 1.5rem; font-size: 1.1rem; }
.inline-img { width: 100%; height: 300px; object-fit: cover; margin-top: 2rem; border: 1px solid #ddd; }
.about-quote-img { flex: 1; position: relative; }
.about-quote-img img { width: 100%; height: 600px; object-fit: cover; }
.quote-box { position: absolute; bottom: -30px; left: -30px; background-color: var(--primary-red); color: var(--white); padding: 2.5rem; font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.3; max-width: 80%; }

/* Action / Volunteer */
.action-section { padding: 6rem 0; background-color: var(--primary-blue); color: var(--white); margin-top: 4rem; }
.action-container { display: flex; align-items: center; gap: 4rem; }
.action-text { flex: 1; }
.action-text h2 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
.action-text p { font-size: 1.2rem; opacity: 0.9; }
.action-form-container { flex: 1; background: var(--white); color: var(--dark-text); padding: 3rem; box-shadow: -10px 10px 0px var(--primary-red); }
.action-form-container h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary-blue); }
.action-form input { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ccc; font-family: var(--font-body); font-size: 1rem; }
.action-form input:focus { outline: none; border-color: var(--primary-blue); }

/* Footer */
footer { padding-top: 5rem; border-top: 1px solid #ddd; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 4rem; }
.footer-info p { margin: 1rem 0; font-weight: 600; color: #666; border: 1px solid #ccc; padding: 0.5rem; display: inline-block; font-size: 0.8rem; text-transform: uppercase;}
.socials { display: flex; gap: 1rem; margin-top: 1rem;}
.socials a { width: 40px; height: 40px; background: var(--primary-blue); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; border-radius: 50%; transition: background 0.3s; }
.socials a:hover { background: var(--primary-red); }
.footer-links { display: flex; gap: 4rem; }
.link-group h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--primary-blue); }
.link-group a { display: block; color: #555; text-decoration: none; margin-bottom: 0.8rem; font-weight: 600; transition: color 0.2s; }
.link-group a:hover { color: var(--primary-red); }
.disclaimer { background-color: var(--off-white); padding: 1.5rem 0; text-align: center; color: #777; font-size: 0.9rem; }
.disclaimer a { color: var(--primary-blue); font-weight: bold; }

@media (max-width: 992px) {
    .hero-image { width: 100%; clip-path: none; opacity: 0.3; }
    .hero-text-box { margin: 0 auto; box-shadow: none; }
    .issues-grid, .about-container, .action-container, .footer-content { flex-direction: column; }
    .about-quote-img { margin-top: 3rem; }
    .quote-box { left: 10px; right: 10px; max-width: none; bottom: -20px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .hero-buttons { flex-direction: column; }
}
