/* ==========================================================================
   Joey Lombardi for Governor - Campaign Website Styles
   ========================================================================== */

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

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #dc2626;
    --accent-color: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

.row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-left,
.col-right {
    flex: 1;
}

/* Navigation
   ========================================================================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-nav-donate {
    padding: 10px 24px;
    background-color: var(--secondary-color);
    color: white;
}

.btn-nav-donate:hover {
    background-color: #b91c1c;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.95) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    padding: 8px 24px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge span {
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 82px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 15px;
    line-height: 0.95;
    color: #ffffff;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.tagline-divider {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.hero-tagline {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-stance-banner {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0;
    width: 90%;
    max-width: 400px;
    border: 3px solid #dc2626;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stance-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 20px 12px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.stance-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.stance-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stance-year {
    background: #dc2626;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.7);
    }
}

/* About Preview Section
   ========================================================================== */
.about-preview {
    padding: 100px 0;
    background-color: var(--bg-white);
}

/* Why Running Section
   ========================================================================== */
.why-running-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-running-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-running-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-running-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(220, 38, 38, 0.2);
    border: 3px solid var(--secondary-color);
    border-radius: 12px;
    padding: 15px 30px;
    margin-bottom: 30px;
}

.badge-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
}

.why-running-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
}

.why-running-content .lead {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.why-running-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.why-running-content p strong {
    color: var(--accent-color);
    font-weight: 700;
}

.why-running-content .btn {
    margin-top: 20px;
}

.profile-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.col-right h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.col-right p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 17px;
}

/* Key Issues Section
   ========================================================================== */
.key-issues {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.issue-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

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

.issue-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.issue-icon svg {
    width: 100%;
    height: 100%;
}

.issue-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.issue-card p {
    color: var(--text-light);
    font-size: 16px;
}

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

.mt-4 {
    margin-top: 40px;
}

/* CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* News Section
   ========================================================================== */
.news-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.news-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Footer
   ========================================================================== */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 0 30px;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
}

.footer-legal {
    margin-top: 15px;
    font-size: 13px;
}

.footer-legal a {
    color: #9ca3af;
}

.footer-legal span {
    margin: 0 10px;
}

/* Page Header
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: white;
}

.page-header .lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

/* Biography Section
   ========================================================================== */
.biography-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.bio-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.bio-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 30px;
}

.bio-quote {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.bio-quote blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.bio-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.bio-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.bio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

/* Values Section
   ========================================================================== */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.value-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(30, 58, 138, 0.1);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-light);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* Timeline Section
   ========================================================================== */
.timeline-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 16px;
}

/* Issues Detail Page
   ========================================================================== */
.issues-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.issue-detail {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.issue-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.issue-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.issue-icon-large svg {
    width: 100%;
    height: 100%;
}

.issue-detail h2 {
    font-size: 38px;
    color: var(--primary-color);
}

.issue-detail-content .lead {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.issue-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

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

.policy-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.policy-list strong {
    color: var(--text-dark);
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 40px;
}

.highlight-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-light);
}

.highlight-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Contact Page
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--secondary-color);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.social-media-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.social-media-section h3 {
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-large .social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background-color: var(--bg-white);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links-large .social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.social-links-large .social-link svg {
    width: 20px;
    height: 20px;
}

.press-contact-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.press-contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.press-contact-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 17px;
}

.press-contact-info {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.press-contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Donate Page
   ========================================================================== */
.donate-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b91c1c 100%);
}

.donate-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.donate-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.donate-form-container {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.donate-form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.donate-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 17px;
}

.form-label-large {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-buttons input[type="radio"] {
    display: none;
}

.amount-btn {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.amount-buttons input[type="radio"]:checked + .amount-btn {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.amount-btn:hover {
    border-color: var(--primary-color);
}

.custom-amount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-amount input[type="radio"] {
    display: inline-block;
    width: auto;
}

.custom-amount label {
    margin: 0;
    font-weight: 600;
}

.custom-amount input[type="number"] {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
}

.frequency-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.frequency-toggle input[type="radio"] {
    display: none;
}

.frequency-btn {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.frequency-toggle input[type="radio"]:checked + .frequency-btn {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.frequency-btn:hover {
    border-color: var(--primary-color);
}

.form-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 30px 0;
}

.legal-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.secure-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donate-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-box,
.help-box,
.why-donate-box,
.legal-box {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.impact-box h3,
.help-box h3,
.why-donate-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.impact-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.impact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.help-box ul,
.why-donate-box ul {
    list-style: none;
    padding: 0;
}

.help-box ul li,
.why-donate-box ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
}

.help-box ul li::before,
.why-donate-box ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.help-box ul li a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-box {
    background-color: #fef3c7;
    border-left: 4px solid var(--accent-color);
}

.legal-box p {
    margin: 0;
    font-size: 12px;
    color: #78350f;
    line-height: 1.6;
}

.donor-testimonials {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.donor-testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

/* Responsive Design
   ========================================================================== */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        text-align: center;
    }

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

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        max-width: 100%;
    }

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

    .hero-tagline-wrapper {
        justify-content: center;
    }

    .tagline-divider {
        display: none;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .row {
        flex-direction: column;
    }

    .bio-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .donate-grid {
        grid-template-columns: 1fr;
    }

    .issue-detail {
        padding: 30px 20px;
    }

    .issue-detail-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-image {
        max-width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .section-title,
    .page-header h1 {
        font-size: 32px;
    }
}

/* Featured Video Section */
.featured-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-video-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-video-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
}

.video-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
