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

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

:root {
    --navy: #1e3a5f;
    --gold: #d4af37;
    --cream: #fdfbf7;
    --charcoal: #2c2c2c;
    --light-gold: #f5ead8;
}

body {
    font-family: 'Avenir', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

a:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Avenir', 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color 0.3s, transform 0.2s;
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.btn-donate-nav {
    background-color: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-donate-nav:hover {
    background-color: #c9a02d;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.hero {
    background-image: url('banner2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 0 12rem;
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: 800px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    z-index: 0;
}



.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    background-color: rgba(253, 251, 247, 0.5);
    padding: 2rem 3rem;
    border-radius: 8px;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-family: 'Alegreya', serif;
    font-size: 6rem;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-buttons-row .btn {
    min-width: 200px;
}

.btn {
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--cream);
    border-color: var(--gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--charcoal);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background-color: #c9a02d;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(44, 44, 44, 0.8);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-style: italic;
}

.about {
    padding: 6rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.credentials {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, #faf6ec 100%);
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.credential-item {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-item strong {
    color: var(--navy);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border: 4px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.issues {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.issue-card {
    background: white;
    padding: 2.5rem 2rem;
    border-top: 5px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, #e8c55a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.issue-card:hover::before {
    transform: scaleX(1);
}

.issue-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.issue-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.issue-card:hover .issue-icon {
    transform: scale(1.2) rotate(8deg);
}

.issue-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.issue-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.endorsements {
    padding: 6rem 0;
    background-color: var(--navy);
    color: var(--cream);
}

.endorsements .section-header h2,
.endorsements .section-intro {
    color: var(--cream);
}

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

.endorsement-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    transition: background-color 0.3s, transform 0.3s;
}

.endorsement-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(10px) scale(1.02);
}

.quote {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    color: var(--gold);
    position: relative;
    top: 20px;
    margin-right: 5px;
}

.attribution {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.volunteer {
    padding: 6rem 0;
    background-color: var(--light-gold);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.volunteer-form,
.volunteer-share {
    background: white;
    padding: 2.5rem;
    border-top: 4px solid var(--navy);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.volunteer-form:hover,
.volunteer-share:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.volunteer-form h3,
.volunteer-share h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.volunteer-form p,
.volunteer-share p {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.volunteer-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.volunteer-form input {
    padding: 1rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 4px;
}

.volunteer-form input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.volunteer-form button {
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
    width: 100%;
}

.volunteer-form button:hover {
    transform: translateY(-1px);
}

.volunteer-form button:active {
    transform: translateY(0);
}

.volunteer-form input:invalid:not(:placeholder-shown) {
    border-color: #d32f2f;
}

.volunteer-form input:valid:not(:placeholder-shown) {
    border-color: #388e3c;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 3px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.form-message.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--navy);
    color: var(--cream);
    text-decoration: none;
    text-align: center;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.share-btn:hover {
    background-color: var(--charcoal);
    transform: translateX(5px);
}

.donate-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--light-gold);
}

.donate-section h3 {
    font-size: 1.5rem;
}

.campaign-sign-section {
    background-color: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.campaign-sign {
    max-width: 600px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.footer {
    background: linear-gradient(180deg, #1a3352 0%, var(--navy) 100%);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--gold);
    font-style: italic;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Avenir', 'Lato', sans-serif;
    font-weight: 300;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom .small {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--gold);
}

.footer-bottom .copyright {
    font-size: 0.75rem;
    margin-top: 1rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .about-grid,
    .volunteer-grid {
        grid-template-columns: 1fr;
    }

    .issues-grid,
    .endorsements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 8rem;
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons-wrapper {
        gap: 1rem;
    }

    .hero-buttons-row {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons-row .btn {
        width: 100%;
        min-width: unset;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 30px;
    }

    .issues-grid,
    .endorsements-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
        padding: 3rem 0 6rem;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 25px;
    }
}
