/* ===== MYRA WASHINGTON DYSON CAMPAIGN STYLES ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* CSS Custom Properties */
:root {
    --primary-navy: #1a365d;
    --primary-gold: #f6ad55;
    --primary-red: #e53e3e;
    --primary-white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-darker: #edf2f7;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #c53030);
    color: var(--primary-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--primary-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo h2 {
    color: var(--primary-white);
    font-size: 1.4rem;
    margin: 0;
}

.nav-logo p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.95) 0%, 
        rgba(229, 62, 62, 0.9) 25%, 
        rgba(246, 173, 85, 0.9) 50%, 
        rgba(26, 54, 93, 0.9) 75%, 
        rgba(229, 62, 62, 0.95) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(246, 173, 85, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.25) 2px, transparent 2px);
    background-size: 120px 120px, 80px 80px, 200px 200px, 150px 150px;
    animation: float 25s infinite linear, pulse 8s ease-in-out infinite alternate;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
    background-size: 60px 60px, 40px 40px;
    animation: diagonal-move 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-30px) translateY(-20px) rotate(90deg); }
    50% { transform: translateX(-60px) translateY(-40px) rotate(180deg); }
    75% { transform: translateX(-30px) translateY(-60px) rotate(270deg); }
    100% { transform: translateX(0) translateY(-80px) rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes diagonal-move {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, -40px -40px; }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.7; }
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-slogan {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.election-alert {
    background: linear-gradient(135deg, var(--primary-red), #c53030);
    color: var(--primary-white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    border: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.image-caption {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.image-caption p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* About Section */
.about {
    background: linear-gradient(135deg, 
        rgba(247, 250, 252, 0.95) 0%, 
        rgba(237, 242, 247, 0.98) 50%, 
        rgba(247, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(26, 54, 93, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(229, 62, 62, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(246, 173, 85, 0.03) 0%, transparent 70%);
    animation: aboutFloat 20s ease-in-out infinite alternate;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12), 0 0 20px rgba(26, 54, 93, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(247,250,252,0.98));
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
}

/* Platform Section */
.platform {
    padding: 100px 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(247, 250, 252, 0.98) 25%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(237, 242, 247, 0.98) 75%, 
        rgba(255, 255, 255, 0.95) 100%);
    background-size: 200% 200%;
    animation: platformShift 18s ease infinite;
    position: relative;
    overflow: hidden;
}

.platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        conic-gradient(from 0deg at 20% 30%, rgba(26, 54, 93, 0.03) 0deg, transparent 60deg),
        conic-gradient(from 180deg at 80% 70%, rgba(229, 62, 62, 0.03) 0deg, transparent 60deg),
        conic-gradient(from 90deg at 50% 50%, rgba(246, 173, 85, 0.02) 0deg, transparent 120deg);
    animation: rotate 30s linear infinite;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.platform-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 20px rgba(229, 62, 62, 0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,250,252,0.95));
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

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

.platform-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.platform-card ul {
    list-style: none;
    padding: 0;
}

.platform-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.platform-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Get Involved Section */
.get-involved {
    background: linear-gradient(225deg, 
        rgba(26, 54, 93, 0.08) 0%, 
        rgba(247, 250, 252, 0.95) 20%, 
        rgba(229, 62, 62, 0.06) 40%, 
        rgba(255, 255, 255, 0.98) 60%, 
        rgba(246, 173, 85, 0.08) 80%, 
        rgba(247, 250, 252, 0.95) 100%);
    background-size: 300% 300%;
    animation: involvedGradient 22s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.get-involved::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 40px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(26, 54, 93, 0.01) 0px,
            rgba(26, 54, 93, 0.01) 1px,
            transparent 1px,
            transparent 30px
        );
    animation: meshMove 25s linear infinite;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.option-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 0 15px rgba(246, 173, 85, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,250,252,0.95));
}

.option-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

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

.option-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.donation-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.donation-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Forms */
.volunteer-form,
.contact-form {
    background: var(--primary-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.volunteer-form h3,
.contact-form h3 {
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bg-darker);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Voting Information */
.vote-info {
    padding: 100px 0;
}

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

.vote-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.vote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.vote-card.urgent {
    border: 3px solid var(--primary-red);
    background: linear-gradient(135deg, #fff5f5, var(--primary-white));
}

.vote-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

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

.vote-card ul {
    list-style: none;
    padding: 0;
}

.vote-card li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, 
        rgba(237, 242, 247, 0.98) 0%, 
        rgba(247, 250, 252, 0.95) 25%, 
        rgba(255, 255, 255, 0.98) 50%, 
        rgba(247, 250, 252, 0.95) 75%, 
        rgba(237, 242, 247, 0.98) 100%);
    background-size: 250% 250%;
    animation: contactWave 16s ease-in-out infinite;
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(26, 54, 93, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(229, 62, 62, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(246, 173, 85, 0.02) 0%, transparent 60%);
    animation: bubbleFloat 24s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 5px;
}

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

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

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

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

.footer-slogan {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes aboutFloat {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-20px) scale(1.02); }
}

@keyframes platformShift {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
    100% { background-position: 0% 0%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes involvedGradient {
    0% { background-position: 0% 50%; }
    33% { background-position: 100% 0%; }
    66% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes meshMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(-30px); }
}

@keyframes contactWave {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes bubbleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(-5px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .donation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .election-alert {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .volunteer-form,
    .contact-form {
        padding: 30px 20px;
    }

    .platform-grid,
    .involvement-options,
    .vote-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .hero-buttons,
    .volunteer-form,
    .contact-form {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .hero {
        page-break-after: always;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-pattern {
        animation: none;
    }
}

/* Focus Visible */
.btn:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-navy: #000000;
        --primary-red: #cc0000;
        --text-dark: #000000;
        --text-light: #333333;
    }
}