/* ============================================
   Base - Reset, Variables, Typography, Utilities
   ============================================ */

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

:root {
    /* Colors */
    --sage: #8B9A7E;
    --cream: #F5F1E8;
    --terracotta: #C17B5E;
    --terracotta-dark: #A66950;
    --dark-sage: #5F6D54;
    --white: #FFFFFF;
    --text-dark: #2C3E2E;

    /* Gradients */
    --gradient-sage: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    --gradient-terracotta: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 6px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 8px 20px rgba(0,0,0,0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility Classes */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

.section-intro-lg {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.footer-copyright {
    margin-top: 1.5rem;
}

.privacy-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-intro {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-contact-btn {
    background-color: var(--terracotta);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 2rem;
    display: inline-block;
    border-radius: 4px;
}

.privacy-contact-btn:hover {
    background-color: #A66950;
}

.section-gap {
    margin-top: 3rem;
}

.card-action-link {
    margin-top: 1rem;
    display: inline-block;
}

.muted-text {
    margin-top: 2rem;
    color: var(--text-dark);
    opacity: 0.8;
}

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

.mt-2 {
    margin-top: 2rem;
}

/* ============================================
   Layout - Header, Nav, Footer, Containers
   ============================================ */

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-sage);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--terracotta);
}

nav a.active {
    color: var(--terracotta);
    font-weight: 700;
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 2px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-sage);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* Main Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-sage);
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #8B4332;
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.back-to-top:hover {
    background-color: var(--dark-sage);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top:focus {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
}

/* Footer */
footer {
    background-color: var(--dark-sage);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* ============================================
   Components - Buttons, Cards, Forms, Modals
   ============================================ */

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 700;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-auction {
    background-color: var(--white);
    color: #8B4332;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-auction:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    background-color: var(--cream);
}

/* Help Cards */
.help-card {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--terracotta);
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.help-card h3 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-card p {
    line-height: 1.7;
    color: var(--text-dark);
}

.help-card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--terracotta);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.help-card-link:hover {
    color: var(--dark-sage);
    text-decoration: underline;
}

/* Carousel */
.gallery-carousel {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-sage);
    font-size: 2rem;
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 0.5rem;
}

.carousel-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.3s;
    border: none;
    padding: 0;
    position: relative;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--sage);
    opacity: 0.4;
    transition: opacity 0.3s, background-color 0.3s;
}

.carousel-dot.active::after {
    opacity: 1;
    background-color: var(--terracotta);
}

.carousel-dot:hover::after {
    opacity: 0.7;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--terracotta);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 2rem;
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Stat Highlight / Quote Box */
.stat-highlight {
    background-color: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--terracotta);
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
}

.quote-box {
    background-color: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--terracotta);
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--dark-sage);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

/* Newsletter Form */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form-group {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--sage);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-normal);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(193, 123, 94, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    padding: 0.9rem 2rem;
    background: var(--gradient-terracotta);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: inherit;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.newsletter-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.newsletter-note a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid var(--terracotta);
}

.newsletter-note a:hover {
    color: var(--terracotta-dark);
}

/* MailerLite form overrides */
.ml-embedded,
.ml-form-embed {
    max-width: 100%;
}

/* Floating Donate Widget */
.floating-donate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.floating-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* ============================================
   Home Page Sections
   ============================================ */

/* Hero Section */
.hero {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

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

/* Progress Bar Section */
.progress-section {
    background: var(--gradient-sage);
    padding: 0 2rem 4rem;
    display: flex;
    justify-content: center;
}

.progress-container {
    max-width: 700px;
    width: 100%;
}

/* Event Countdown Section */
.event-countdown {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 2.5rem 1rem;
    text-align: center;
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.countdown-message {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Mission Section */
.mission {
    background-color: var(--white);
    padding: 4rem 2rem;
}

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

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Auction Section */
.auction {
    background: var(--gradient-terracotta);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.auction h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.auction-content {
    max-width: 800px;
    margin: 0 auto;
}

.auction-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.auction-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.auction-feature {
    padding: 1.5rem;
}

.auction-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.auction-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.auction-feature p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* Gallery Section (Home) */
.gallery {
    background-color: var(--cream);
    padding: 4rem 2rem;
}

/* How to Help Section */
.how-to-help {
    background-color: var(--white);
    padding: 4rem 2rem;
}

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

/* Sponsors Highlight Section */
.sponsors-highlight {
    background-color: var(--cream);
    padding: 4rem 2rem;
}

.sponsors-highlight h2 {
    text-align: center;
}

.sponsors-callout {
    background: var(--gradient-terracotta);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.callout-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.btn-sponsor {
    display: inline-block;
    background-color: var(--white);
    color: var(--terracotta);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition-normal);
}

.btn-sponsor:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-logo-placeholder {
    background-color: var(--white);
    border: 2px dashed var(--sage);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.sponsor-logo-placeholder:hover {
    border-color: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sponsor-logo-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sponsor-logo-placeholder a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--terracotta);
}

.sponsor-logo-placeholder a:hover {
    color: var(--terracotta-dark);
}

/* Impact Section */
.impact {
    background-color: #4A5A40;
    color: var(--white);
    padding: 4rem 2rem;
}

.impact h2 {
    color: var(--white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Stay Connected Section */
.stay-connected {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.stay-connected-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.stay-connected h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.stay-connected-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.newsletter-wrapper {
    margin-bottom: 3rem;
}

.social-media-section {
    padding-top: 2.5rem;
    border-top: 2px solid var(--cream);
}

.social-intro {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Donation Section */
.donation {
    background-color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.donation-embed {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--cream);
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Inner Pages - About, Board, Gallery, FAQ,
   Sponsors, Volunteers, Contact, Privacy, 404
   ============================================ */

/* Page Header (shared across inner pages) */
.page-header {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Content Sections (About page) */
.content-section {
    background-color: var(--white);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-sage);
}

.content-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-sage);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: 8px;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Testimonial Placeholder */
.testimonial-placeholder {
    background-color: var(--sage);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.testimonial-placeholder h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.testimonial-placeholder p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: var(--gradient-terracotta);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 3rem;
}

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    background-color: var(--cream);
}

/* Board Group Photo */
.board-group-photo {
    max-width: 900px;
    margin: 2.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.board-group-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Board Members Section */
.board-section {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.board-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.board-member {
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.member-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.5rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    color: var(--terracotta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Gallery Page - Tabs */
.gallery-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--sage);
}

.gallery-tab {
    padding: 1rem 2rem;
    background-color: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    border-radius: 8px 8px 0 0;
    font-family: inherit;
}

.gallery-tab:hover {
    background-color: var(--sage);
    color: var(--white);
}

.gallery-tab.active {
    background-color: var(--sage);
    color: var(--white);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

/* Gallery Page - Year Sections */
.year-section {
    margin-bottom: 3rem;
}

.year-section h2 {
    font-size: 1.8rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.year-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Gallery Page - Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.photo-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Gallery Page - Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.video-embed {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark-sage);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-dark);
    border: 2px dashed var(--sage);
}

.video-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ Page Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.faq-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.faq-categories {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-category {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.faq-category h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

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

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-question::before {
    content: "Q:";
    color: var(--terracotta);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.7;
    padding-left: 2rem;
}

.faq-answer a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid var(--terracotta);
}

.faq-answer a:hover {
    color: var(--terracotta-dark);
}

.faq-cta {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.faq-btn {
    background-color: var(--white);
    color: var(--dark-sage);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition-normal);
}

.faq-btn:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.faq-btn.btn-secondary:hover {
    background-color: var(--terracotta-dark);
}

/* Sponsors Page Styles */
.sponsors-hero {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 4rem 1rem;
    text-align: center;
}

.sponsors-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sponsors-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.sponsors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sponsors-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.sponsors-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.sponsor-tier {
    margin-bottom: 4rem;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--text-dark);
    font-size: 1rem;
}

.sponsor-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sponsor-grid.platinum {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsor-grid.gold {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsor-grid.silver {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-grid.bronze {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sponsor-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.sponsor-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.sponsor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.sponsor-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sponsor-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.sponsor-link:hover {
    border-bottom-color: var(--terracotta);
}

.sponsor-placeholder {
    background: var(--cream);
    border: 2px dashed var(--sage);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-dark);
    border-radius: 8px;
}

.sponsor-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.sponsor-placeholder p {
    margin-bottom: 1.5rem;
}

.become-sponsor {
    background: var(--gradient-terracotta);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-top: 4rem;
    text-align: center;
}

.become-sponsor h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.become-sponsor p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    text-align: left;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.sponsor-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--terracotta);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    margin-top: 1rem;
}

.sponsor-cta:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Committees */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.committee-card {
    display: flex;
    flex-direction: column;
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--sage);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.committee-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.committee-header {
    display: flex;
    gap: 1.5rem;
}

.committee-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.committee-info h3 {
    font-size: 1.2rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.committee-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.committee-needs {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Committee Members */
.committee-members {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sage);
    border-top-style: dashed;
}

.committee-members-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
    margin-bottom: 1rem;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

.committee-members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.committee-member {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.committee-member-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.committee-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.committee-member-info {
    display: flex;
    flex-direction: column;
}

.committee-member-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.committee-member-role {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 600;
}

.committee-join-prompt {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.committee-join-prompt a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--terracotta);
}

.committee-join-prompt a:hover {
    color: var(--terracotta-dark);
}

/* Volunteer Page Styles */
.volunteer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.volunteer-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.role-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.role-card h3 {
    font-size: 1.2rem;
    color: var(--dark-sage);
    margin-bottom: 0.75rem;
}

.role-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Volunteer Perks */
.volunteer-perks {
    background: var(--gradient-sage);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.volunteer-perks h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.perks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.perk-icon {
    font-size: 1.5rem;
}

/* Volunteer Form */
.volunteer-form-container {
    max-width: 700px;
    margin: 2rem auto 0;
}

.volunteer-form {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

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

.form-group .required {
    color: var(--terracotta);
}

.form-hint {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--sage);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(193, 123, 94, 0.15);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
    font-weight: 400;
}

.checkbox-label:hover {
    background-color: rgba(139, 154, 126, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--terracotta);
    cursor: pointer;
}

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

.btn-volunteer-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-terracotta);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    font-family: inherit;
    margin-top: 1rem;
}

.btn-volunteer-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--cream);
    border-radius: 12px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-terracotta);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Volunteer FAQ */
.volunteer-faq {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.volunteer-faq .faq-item {
    background-color: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--terracotta);
}

.volunteer-faq .faq-item h3 {
    font-size: 1.1rem;
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.volunteer-faq .faq-item p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Responsive - Mobile & Accessibility
   ============================================ */

@media (max-width: 768px) {
    .hero-logo {
        max-width: 180px;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    nav ul.active {
        max-height: 400px;
    }

    nav ul li {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--cream);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .floating-donate {
        bottom: 20px;
        right: 20px;
    }

    .container {
        padding: 2rem 1rem;
    }

    .board-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .member-photo {
        height: 300px;
    }

    .gallery-tabs {
        flex-direction: column;
        gap: 0;
    }

    .gallery-tab {
        border-radius: 0;
        text-align: center;
    }

    .gallery-tab:first-child {
        border-radius: 8px 8px 0 0;
    }

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

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

    .year-section h2 {
        font-size: 1.5rem;
    }

    /* FAQ Mobile Styles */
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        padding-left: 1.5rem;
    }

    /* Sponsors Mobile Styles */
    .sponsors-hero h1 {
        font-size: 2rem;
    }

    .sponsors-hero p {
        font-size: 1rem;
    }

    .tier-title {
        font-size: 1.5rem;
    }

    .sponsor-grid.platinum,
    .sponsor-grid.gold,
    .sponsor-grid.silver,
    .sponsor-grid.bronze {
        grid-template-columns: 1fr;
    }

    .become-sponsor {
        padding: 3rem 1.5rem;
    }

    .sponsor-benefits {
        grid-template-columns: 1fr;
    }

    /* Stay Connected Mobile Styles */
    .stay-connected h2 {
        font-size: 1.75rem;
    }

    .stay-connected-intro {
        font-size: 1rem;
    }

    .newsletter-form-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-submit {
        width: 100%;
    }

    .social-links-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    /* Countdown Mobile Styles */
    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    /* Committee Mobile Styles */
    .committees-grid {
        grid-template-columns: 1fr;
    }

    .committee-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .committee-members-list {
        justify-content: center;
    }

    .committee-join-prompt {
        text-align: center;
    }

    /* Volunteer Mobile Styles */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .volunteer-form {
        padding: 1.5rem;
    }

    .volunteer-roles-grid {
        grid-template-columns: 1fr;
    }

    .perks-grid {
        flex-direction: column;
        align-items: center;
    }

    .perk-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .shifts-group {
        grid-template-columns: 1fr;
    }

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

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .carousel-container {
        transition: none !important;
    }

    .board-member:hover,
    .help-card:hover,
    .auction-feature:hover,
    .social-icon:hover,
    .btn:hover {
        transform: none !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    /* Hide non-essential elements */
    header,
    .hamburger,
    .skip-to-content,
    .back-to-top,
    .floating-donate,
    .carousel-nav,
    .carousel-dots,
    .lightbox,
    .cta-buttons,
    .btn,
    .btn-auction,
    .footer-social,
    .gallery-tabs,
    .video-grid,
    givebutter-widget {
        display: none !important;
    }

    .gallery-content {
        display: block !important;
    }

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

    .photo-grid img {
        aspect-ratio: auto;
        height: auto;
        max-height: 200px;
    }

    /* Reset backgrounds and colors for printing */
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero,
    .auction,
    .impact,
    .stay-connected,
    .page-header {
        background: white !important;
        color: black !important;
        padding: 1rem 0;
    }

    .hero h1,
    .auction h2,
    .impact h2,
    .stay-connected h2,
    .page-header h1,
    h1, h2, h3 {
        color: black !important;
    }

    /* Ensure links are visible */
    a {
        color: black;
        text-decoration: underline;
    }

    /* Show URLs after links */
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    /* Don't show URL for internal links */
    a[href^="#"]::after,
    a[href^="index"]::after,
    a[href^="about"]::after,
    a[href^="board"]::after,
    a[href^="contact"]::after,
    a[href^="privacy"]::after {
        content: none;
    }

    /* Page breaks */
    section {
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .carousel-slide {
        display: block !important;
        min-width: auto !important;
        margin-bottom: 1rem;
    }

    .carousel-container {
        display: block !important;
        transform: none !important;
    }

    /* Footer */
    footer {
        background: white !important;
        color: black !important;
        border-top: 1px solid #ccc;
        padding-top: 1rem;
    }

    .footer-links a {
        color: black !important;
    }
}

