/* Campaign Website Styles */
:root {
    --primary-color: #a10c10;
    --secondary-color: #f59a22;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e9ecef;
}

/* Font Families via Adobe Fonts (Typekit)
   Headings Main: Roca Black
   Headings Secondary: Avenir Next LT Pro Heavy Condensed
   Body: Avenir Next LT Pro Ultra Light
*/

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

body {
    font-family: 'avenir-next-lt-pro', 'Avenir Next LT Pro Ultra Light', 'Avenir Next LT Pro', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 200;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding-top: 5.5rem; /* Account for announcement bar + header height */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 200;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 0.5rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.announcement-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.announcement-link:hover {
    opacity: 0.8;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    padding: 0;
    height: 100%;
}

.nav-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0;
    height: 100%;
}

.nav-logo {
    margin: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 1rem 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.header-contribute {
    background-color: var(--secondary-color);
    padding: 0 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    flex: 0 0 auto;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-contribute:hover {
    opacity: 0.8;
}

.contribute-text {
    color: var(--white);
    font-weight: 900;
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 50px;
}

.nav-logo .brand {
    display: inline-block;
}

.nav-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 900;
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-logo-mobile {
    display: none;
}

.mobile-donate-header {
    display: none;
}

/* Hide contribute button on mobile */
@media (max-width: 768px) {
    .header-contribute {
        display: none;
    }
}

.mobile-menu-button {
    display: none;
}

.nav-menu-mobile {
    display: none;
}


.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background:
        linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 75%),
        url('../images/home-hero.jpg') center center / cover no-repeat;
}

.hero-content {
    flex: 0 0 60%;
    max-width: unset;
    margin: 0 100px;
}

.hero-title {
    color: var(--primary-color);
    font-size: 3.4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', Helvetica, Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 200;
    font-family: 'avenir-next-lt-pro', 'Avenir Next LT Pro Ultra Light', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(180deg, #b40e11 0%, var(--primary-color) 100%);
    border-color: rgba(255,255,255,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(161,12,16,0.35);
}

.btn-secondary {
    color: var(--white);
    background: linear-gradient(180deg, #ffb457 0%, var(--secondary-color) 100%);
    border-color: rgba(255,255,255,0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245,154,34,0.35);
}

/* Subtle animated sheen */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.22) 35%, rgba(255,255,255,0) 70%);
    transform: skewX(-18deg);
    transition: left 500ms ease;
}

.btn:hover::before {
    left: 120%;
}

/* Focus visibility */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245,154,34,0.35), 0 6px 14px rgba(0,0,0,0.12);
}

/* Optional outline variant (if needed later) */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: currentColor;
}

.btn-outline:hover {
    background: rgba(161,12,16,0.06);
}

/* Button icon chevron animation */
.btn i {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 200ms ease;
}

.btn:hover i {
    transform: translateY(-50%) translateX(4px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Newsletter Signup Section */
.newsletter-signup {
    background-color: var(--primary-color);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-title {
    color: var(--secondary-color);
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: end;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'avenir-next-lt-pro', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-input::placeholder {
    color: #666;
}

.newsletter-form .btn {
    margin-top: 0;
    flex-shrink: 0;
    height: 48px;
    align-self: stretch;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e88a1a 100%);
    border: none;
    border-radius: 25px;
    color: var(--white);
    font-weight: 700;
    font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(241, 86, 34, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 86, 34, 0.4);
}

.newsletter-form .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 86, 34, 0.3);
}

.newsletter-message {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 10;
}

.newsletter-signup {
    position: relative;
}

/* Issues Preview */
.issues-preview {
    background-color: var(--background-light);
    padding: 4rem 0;
    text-align: center;
}

.issues-preview h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
}

.issue-icon {
    margin-bottom: 1.5rem;
}

.issue-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.issue-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.issue-card p {
    color: var(--white);
}

/* News Preview */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--background-light);
}

.cta .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Header Social Links */
.header-social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-right: 20px;
}

.header-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.header-social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hide header social links below 1200px */
@media (max-width: 1199px) {
    .header-social-links {
        display: none;
    }
}

.footer-logo {
    text-align: center;
    margin: 2rem 0 1rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.disclaimer-box {
    border: 2px solid var(--white);
    padding: 1rem;
    margin: 1rem auto 1rem;
    text-align: center;
    max-width: 400px;
}

.disclaimer-box p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: url('../images/farms.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Candidate Bio */
.candidate-bio {
    padding: 4rem 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.bio-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.bio-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.bio-list {
    list-style: none;
    padding-left: 0;
}

.bio-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.bio-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.bio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Vision & Values */
.vision-values {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.vision-values h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Why Run */
.why-run {
    padding: 4rem 0;
}

.why-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.why-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quote {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quote cite {
    color: var(--text-light);
    font-weight: 600;
}

/* Issues Page Styles */
.issues-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0a0d 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.issues-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.issues-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.issue-detail {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.issue-detail:last-child {
    border-bottom: none;
}

.issue-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.issue-detail h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.issue-detail ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.issue-detail li {
    margin-bottom: 0.5rem;
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e88a1a 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.events-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.events-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.event-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    width: 100%;
}

.event-content {
    padding: 2rem;
    text-align: center;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-meta {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-meta span {
    margin-right: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Past Events Section */
.past-events {
    background-color: var(--background-light);
    padding: 4rem 0;
    text-align: center;
}

.past-events h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0a0d 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.news-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.news-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.article-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.article-content {
    padding: 2rem;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e88a1a 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-hero p strong {
    font-weight: 700 !important;
    opacity: 1 !important;
}

.contact-content {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 10px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Additional Contact Page Styles */
.volunteer-section {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.volunteer-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.volunteer-section p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.volunteer-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.donation-section {
    padding: 4rem 0;
}

.donation-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-section p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-amounts h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.amount-btn {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-light);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.donation-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.donation-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}


.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
}

    .newsletter-form button {
        white-space: nowrap;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
    
    .header-contribute {
        display: none;
    }
    
    .main-header {
        top: 0;
        height: 5rem;
    }
    
    body {
        padding-top: 5rem;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        position: relative;
    }
    
    .mobile-menu-button {
        display: block;
        order: 1;
        background: none;
        border: none;
        color: var(--white);
        font-weight: 700;
        font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        font-size: 1rem;
        cursor: pointer;
        padding: 0.5rem;
        flex: 0 0 auto;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-logo {
        order: 2;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* .mobile-donate-header {
        display: block;
        order: 3;
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        font-weight: 700;
        font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        border-radius: 4px;
        flex: 0 0 auto;
    } */
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu-mobile.active {
        left: 0;
    }
    
    .nav-menu-mobile .mobile-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 2rem;
        background-color: var(--primary-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .nav-menu-mobile .mobile-logo img {
        height: 50px;
    }
    
    .nav-menu-mobile .mobile-donate {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        font-weight: 700;
        font-family: 'roca', 'Roca', 'roca-black', 'Roca Black', 'avenir-next-lt-pro-condensed', 'Avenir Next LT Pro Heavy Condensed', 'Avenir Next LT Pro', 'Avenir Next', Helvetica, Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        border-radius: 4px;
    }
    
    .nav-menu-mobile .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }
    
    .nav-menu-mobile .mobile-nav-links .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        text-align: center;
        color: var(--white);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu-mobile .mobile-nav-links .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }
    
    .mobile-social-links a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-contribute-link {
        background-color: var(--secondary-color) !important;
        color: var(--white) !important;
        font-weight: 700 !important;
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    
    .mobile-contribute-link:hover {
        background-color: #e88a1a !important;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 60vh;
        background: url('../images/home-hero.jpg') center center / cover no-repeat;
    }
    
    .hero-content {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 75%;
        margin: 0 auto;
        width: 75%;
    }
    
    .form-group {
        min-width: auto;
        width: 100%;
    }
    
    .form-input {
        width: 100%;
        min-width: 0;
    }
    
    .newsletter-form .btn {
        width: 100%;
        height: auto;
        padding: 1rem 2rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-image {
        order: -1;
        text-align: center;
    }
    
    .bio-image img {
        max-height: 300px;
        width: auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
