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

:root {
    /* Core Color Palette - Change these to update entire site */
    --primary: #0a2363;        /* Deep blue: Navigation, headings, main text */
    --secondary: #cc0a25;      /* Red: Donate buttons, CTAs, icons */
    --tertiary: #B1DDF1;       
    --highlight: #f7e555;      /* Gold: Accents, highlights, borders */
    --background-light: #ffffff;  /* Off-white: Section backgrounds */
    --background-medium: #FFFFFF; /* Light gray: Alternate sections */
    --text-dark: #414A4C;      /* Dark gray: Body text */
    --text-medium: #cbd5e1;    /* Medium gray: Secondary text */
    --white: #ffffff;          /* Pure white */

    /* Typography */
    --font-headlines: 'Archivo Black', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    background-color: var(--primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
    font-weight: 400;
}

/* Screen reader only - visually hidden but accessible to search engines */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 0;
}

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

/* Red Star Bar */
.red-star-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary);
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: height 0.4s ease;
}

.red-star-bar.scrolled {
    height: 30px;
}

.star-image {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.red-star-bar.scrolled .star-image {
    height: 15px;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.4s ease, top 0.4s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    top: 30px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    flex-shrink: 0;
    grid-column: 2;
    padding: 0 2rem;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Scrolled state */
.navbar.scrolled .logo-image {
    height: 60px;
}

.nav-logo:hover {
    opacity: 0.9;
}

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

.nav-menu-left {
    justify-content: flex-end;
    grid-column: 1;
}

.nav-menu-right {
    justify-content: flex-start;
    grid-column: 3;
}

.donate-button {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

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

.donate-button {
    background: var(--secondary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--secondary) 30%, transparent);
}

.donate-button:hover {
    background: color-mix(in srgb, var(--secondary) 90%, black);
    transform: translateY(calc(-50% - 2px));
    box-shadow: 0 4px 12px color-mix(in srgb, var(--secondary) 40%, transparent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, color-mix(in srgb, var(--primary) 60%, transparent) 0%, color-mix(in srgb, var(--primary) 20%, transparent) 50%, transparent 100%), url('assets/tanner-hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 0;
    margin-top: 180px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image-space {
    /* Right column left empty to show background image of Tanner */
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-bullet-item {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.3;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-bullet-item.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.hero-bullet-item:nth-child(1) { transition-delay: 0s; }
.hero-bullet-item:nth-child(2) { transition-delay: 0.15s; }
.hero-bullet-item:nth-child(3) { transition-delay: 0.3s; }
.hero-bullet-item:nth-child(4) { transition-delay: 0.45s; }
.hero-bullet-item:nth-child(5) { transition-delay: 0.6s; }

.hero-bullet-icon {
    font-size: 1.6rem;
    color: var(--white);
    flex-shrink: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-vote-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    align-self: center;
    margin-top: 1rem;
}

.hero-vote-label {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--font-headlines);
    color: var(--highlight);
    letter-spacing: 5px;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-vote-date {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--white);
    letter-spacing: 5px;
    line-height: 1.3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-signup {
    background: color-mix(in srgb, var(--background-light) 95%, transparent);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-signup h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: var(--font-headlines);
    font-weight: 700;
}

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

.signup-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--text-medium);
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--secondary) 90%, black);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.section-header {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

/* Proven Leader Section */
.proven-leader {
    padding: 6rem 0;
    background: var(--background-medium);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 400;
}

.pull-quote {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--primary);
    font-style: italic;
    border-left: 4px solid var(--highlight);
    padding-left: 1.5rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.bio-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--text-medium) 0%, color-mix(in srgb, var(--text-medium) 70%, black) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* The Record Section */
.record {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--tertiary) 0%, color-mix(in srgb, var(--tertiary) 85%, black) 100%);
}

.record .section-title {
    color: var(--background-light);
}

/* The Setlist Section */
.setlist {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 85%, black) 100%);
}

.setlist .section-title {
    color: var(--background-light);
}

.vision-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--background-light);
    text-align: center;
    max-width: 900px;
    margin: -1rem auto 3rem;
    font-family: var(--font-body);
    font-weight: 400;
}

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

.setlist-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border-top: 4px solid var(--highlight);
    text-align: center;
}

.setlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--highlight) 40%, transparent);
}

.setlist-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.setlist-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.setlist-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
}

.setlist-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
}

.setlist-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Listening Tour Section */
.listening-tour {
    padding: 6rem 0;
    background: var(--background-light);
}

.listening-tour .section-title {
    color: var(--primary);
}

.listening-tour-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.listening-tour-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    object-fit: cover;
}

.listening-tour-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--background-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-medium);
}

.listening-tour-image .placeholder-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 2rem;
    text-align: center;
}

.listening-tour-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    text-align: left;
}

.listening-tour-cta {
    text-align: center;
    margin-top: 3rem;
}

.listening-tour-cta-header {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--primary);
    margin-bottom: 1rem;
}

.listening-tour-cta-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-family: var(--font-body);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-listening-tour {
    display: inline-block;
    background: var(--highlight);
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--highlight) 30%, transparent);
}

.btn-listening-tour:hover {
    background: color-mix(in srgb, var(--highlight) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--highlight) 40%, transparent);
}

/* Track Record Section */
.track-record {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.track-record-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.track-record-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.track-record-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--primary) 65%, transparent);
    z-index: 1;
}

.track-record .container {
    position: relative;
    z-index: 2;
}

.track-record .section-title {
    color: var(--background-light);
}

.track-record-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: -1rem auto 4rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.track-record-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.track-record-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.track-record-icon {
    width: 50px;
    height: 50px;
    background: var(--highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.track-record-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.track-record-content {
    flex: 1;
}

.track-record-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-headlines);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.track-record-item p {
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}

/* Volunteer Section */
.road-crew {
    padding: 6rem 0;
    background: var(--background-light);
}

.road-crew-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* Get Involved Section */
.get-involved {
    padding: 6rem 0;
    background: var(--background-light);
}

.get-involved .section-header {
    color: var(--primary);
    text-align: center;
}

.get-involved-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem;
}

.involvement-layout {
    max-width: 900px;
    margin: 0 auto;
}

.yard-sign-cta {
    text-align: center;
}

.yard-sign-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-headlines);
    font-weight: 700;
}

.btn-yard-sign {
    display: inline-block;
    background: var(--highlight);
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--highlight) 30%, transparent);
}

.btn-yard-sign:hover {
    background: color-mix(in srgb, var(--highlight) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--highlight) 40%, transparent);
}

.yard-sign-note {
    color: var(--text-medium);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.volunteer-form-modern {
    background: var(--primary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.volunteer-form-modern h3 {
    color: var(--background-light);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-headlines);
    font-weight: 700;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-input-phone {
    max-width: 180px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: color-mix(in srgb, var(--primary) 50%, transparent);
}

.form-input:focus {
    outline: none;
    border-color: var(--highlight);
    background: var(--white);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--highlight) 20%, transparent);
}

.form-commitment {
    margin: 0.5rem 0;
}

.commitment-label {
    color: var(--background-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.checkbox-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    position: relative;
    cursor: pointer;
}

.pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill span {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--background-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pill:hover span {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.pill input[type="checkbox"]:checked + span {
    background: var(--highlight);
    border-color: var(--highlight);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--highlight) 30%, transparent);
}

.btn-submit-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--secondary) 30%, transparent);
    margin-top: 0.5rem;
}

.btn-submit-modern:hover {
    background: color-mix(in srgb, var(--secondary) 90%, black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--secondary) 40%, transparent);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--text-medium);
    border-radius: 4px;
    font-size: 1rem;
}

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

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--background-light);
    font-family: var(--font-body);
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group span {
    font-size: 1rem;
    line-height: 1.5;
    align-items: center;
    color: var(--white);
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.25rem;
}

/* Donate Section */
.donate-section {
    padding: 6rem 0;
    background: var(--tertiary);
    text-align: center;
}

.donate-section .section-title {
    color: var(--primary);
}

.donate-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.donate-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-donate {
    background: var(--secondary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px color-mix(in srgb, var(--secondary) 20%, transparent);
}

.btn-donate:hover {
    background: color-mix(in srgb, var(--secondary) 90%, black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--secondary) 30%, transparent);
}

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

.footer-vote-cta {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.footer-header {
    font-family: var(--font-headlines);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-election-date {
    font-family: var(--font-headlines);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
    text-align: center;
    letter-spacing: 1.5px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-disclaimer {
    max-width: max-content;
    margin: 0 auto 1.5rem;
    padding: 1rem 2rem;
    white-space: nowrap;
    border: 1px solid var(--white);
    border-radius: 4px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    padding-bottom: 1rem;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

.social-icon:hover {
    background: var(--highlight);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.footer-contact {
    text-align: right;
}

.footer-contact a {
    color: var(--highlight);
    text-decoration: none;
    font-family: var(--font-body);
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1125px) {
    .nav-menu {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .split-layout,
    .involvement-layout,
    .listening-tour-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-image,
    .listening-tour-image {
        order: -1;
    }

    .listening-tour-text p {
        text-align: left;
    }

    .setlist-grid,
    .vision-layout,
    .endorsement-grid,
    .track-record-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .footer-disclaimer {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .red-star-bar {
        height: 50px;
        transition: height 0.3s ease;
    }

    .red-star-bar.scrolled {
        height: 22px;
    }

    .star-image {
        height: 25px;
        transition: height 0.3s ease;
    }

    .red-star-bar.scrolled .star-image {
        height: 14px;
    }

    .navbar {
        top: 50px;
        padding: 1rem 0;
        transition: top 0.3s ease, padding 0.3s ease;
    }

    .navbar.scrolled {
        top: 22px;
        padding: 0.5rem 0;
    }

    .hero {
        margin-top: 140px;
        background-position: center top;
    }

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

    .hero-content {
        text-align: left;
        padding: 2rem 1.5rem;
        align-items: flex-start;
    }

    .hero-image-space {
        display: none;
    }

    .hero-bullet-item {
        font-size: 1.3rem;
    }

    .nav-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-image {
        height: 120px;
        transition: height 0.3s ease;
    }

    .navbar.scrolled .logo-image {
        height: 50px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        background: var(--primary);
        padding: 1rem 0;
        display: none;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu-left,
    .nav-menu-right {
        flex: none;
    }

    .donate-button {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-vote-label {
        font-size: 3.5rem;
    }

    .hero-vote-date {
        font-size: 1.5rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .volunteer-form-modern {
        padding: 1.5rem;
    }

    /* Reduce section padding on mobile */
    .proven-leader,
    .setlist,
    .listening-tour,
    .track-record,
    .get-involved,
    .donate-section {
        padding: 4rem 0;
    }

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

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

    .btn-donate {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .form-input-phone {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-bullet-item {
        font-size: 1.1rem;
    }

    .hero-vote-label {
        font-size: 3rem;
    }

    .hero-vote-date {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 85px;
    }

    .navbar.scrolled .logo-image {
        height: 50px;
    }

    .donate-button {
        right: 0.75rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .image-placeholder {
        height: 300px;
    }

    .nav-container {
        padding: 0 1rem;
    }
}
