/* ==========================================================================
   Base Styles - Matching Original Squarespace Site
   ========================================================================== */

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

:root {
    /* Netflix Documentary Palette - Dark, Dramatic, High Contrast */
    --netflix-black: #0B0C10; /* Near-black background */
    --netflix-dark: #1F2833; /* Dark charcoal for sections */
    --netflix-blue: #004E89; /* Deep, saturated blue */
    --netflix-red: #C1121F; /* Dramatic danger red for accents */
    --netflix-white: #F5F5F5; /* Off-white for text */

    /* Legacy colors for compatibility */
    --primary-blue: #004E89;
    --secondary-blue: #006BA6;
    --accent-teal: #00A8E8; /* Bright, saturated teal */
    --dark-navy: #0B0C10;
    --light-blue: #1F2833;
    --ocean-green: #00A8E8;

    /* Dark Theme Neutrals */
    --text-dark: #F5F5F5; /* Light text on dark */
    --text-medium: #C5C6C7;
    --text-light: #8B949E;
    --white: #ffffff;
    --off-white: #1F2833; /* Dark, not white */
    --border-light: #2E3842;

    /* Drama & Urgency */
    --warning-red: #C1121F; /* Netflix red */
    --danger-red: #8B0000; /* Deep blood red */
    --cta-red: #C1121F; /* Netflix-style dramatic CTA */

    /* Typography - Bold, modern sans-serif throughout */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* Bold sans-serif for hero */

    /* Cinematic Colors */
    --cinematic-dark: #0a1f2e;
    --cinematic-gold: #C9A961; /* Updated to maritime gold */
    --shadow-cinematic: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Spacing */
    --page-padding: 4vw;
    --section-spacing: 4vw;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--netflix-white); /* Light text on dark */
    background: var(--netflix-black); /* Dark Netflix background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--netflix-white); /* Light headings on dark */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900; /* Extra bold for drama */
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

h2 strong {
    color: var(--netflix-red); /* Dramatic red emphasis */
    font-weight: 900;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8; /* Enhanced readability with more breathing room */
}

strong {
    font-weight: 600;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-nav {
    background: rgba(11, 12, 16, 0.98); /* Dark Netflix nav */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(193, 18, 31, 0.3); /* Subtle red border */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--page-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--netflix-red); /* Dramatic red hover */
}

.nav-links .contribute-btn {
    background: var(--netflix-red);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 2px; /* Sharp edges, Netflix style */
    transition: all 0.3s ease;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(193, 18, 31, 0.4);
}

.nav-links .contribute-btn:hover {
    background: #A00F1A;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.6);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    /* Background managed via Asset Zones - zone_id: hero-background */
    background: var(--netflix-black) center/cover no-repeat fixed;
    min-height: 100vh; /* Full screen drama */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Heavy vignette for Netflix drama */
    box-shadow: inset 0 0 300px rgba(0,0,0,0.7);
}

/* Dramatic bottom gradient for depth */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--netflix-black));
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    /* Dark, moody overlay - Netflix documentary style */
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.65), rgba(11, 12, 16, 0.85));
    padding: var(--spacing-xl) var(--page-padding);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 5rem; /* Massive, bold, dramatic */
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(193, 18, 31, 0.4); /* Dramatic shadow with red glow */
    line-height: 1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--netflix-red); /* Dramatic red subtitle */
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content .producer,
.hero-content .executive-producer {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.25rem;
    text-shadow: none; /* Clean, no shadows */
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Filmmaker Credibility Section
   ========================================================================== */

.filmmaker-section {
    background: linear-gradient(135deg, var(--cinematic-dark) 0%, var(--dark-navy) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Spotlight effect */
.filmmaker-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(26, 95, 122, 0.3) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.filmmaker-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.filmmaker-badge {
    margin-bottom: var(--spacing-md);
}

.filmmaker-badge h3 {
    font-family: var(--font-heading); /* Use system font, not Playfair */
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.filmmaker-details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filmmaker-bio {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.filmmaker-bio strong {
    color: var(--white);
    font-weight: 600;
}

.broadcast-partners {
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logos white */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.filmmaker-cta {
    margin-top: var(--spacing-md);
}

/* ==========================================================================
   Video Teaser Placeholder Section
   ========================================================================== */

.video-teaser-section {
    background: linear-gradient(to bottom, #0f3854 0%, #1a5f7a 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.video-section-title {
    font-family: var(--font-heading); /* Use system font, not Playfair */
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.video-embed-wrapper {
    margin-bottom: var(--spacing-lg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-cinematic);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Responsive 16:9 aspect ratio container for iframe */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.teaser-notify-btn {
    background: var(--accent-teal);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-cinematic);
}

.teaser-notify-btn:hover {
    background: var(--ocean-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.4);
}

/* ==========================================================================
   Two-Column Layouts
   ========================================================================== */

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.intro-section,
.contribution-section {
    padding: var(--section-spacing) 0;
}

.intro-section {
    background: var(--netflix-dark); /* Dark section */
}

.intro-text h2,
.contribution-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.intro-text p,
.contribution-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium); /* Light gray on dark */
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.image-gallery a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}

.image-gallery a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.image-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-gallery a:hover img {
    transform: scale(1.05);
}

/* Contribution Section */
.contribution-section {
    background: var(--netflix-black); /* Darker than intro for variety */
}

/* Fundraising Progress Bar */
.fundraising-progress {
    background: rgba(31, 40, 51, 0.8);
    border-radius: 4px;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(193, 18, 31, 0.4); /* Dramatic red border */
    backdrop-filter: blur(10px);
}

.progress-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--netflix-red); /* Dramatic red for urgency */
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(193, 18, 31, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.progress-bar-container {
    background: #e1e8ed;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-sm);
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent-teal), var(--secondary-blue));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 1s ease-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.progress-message {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-top: var(--spacing-sm);
}

.progress-message strong {
    color: var(--netflix-red);
    font-weight: 800;
}

.contribution-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

/* Impact Tiers */
.impact-tiers {
    background: rgba(31, 40, 51, 0.8);
    border-radius: 4px;
    padding: var(--spacing-lg);
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(193, 18, 31, 0.3);
}

.tier {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.tier:last-child {
    border-bottom: none;
}

.tier-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--netflix-red); /* Dramatic red */
    min-width: 100px;
    flex-shrink: 0;
}

.tier-details {
    flex: 1;
}

.tier-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--netflix-white);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.tier-details p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: var(--netflix-dark);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(193, 18, 31, 0.2); /* Subtle red divider */
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--netflix-red); /* Dramatic red for subtitles */
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(31, 40, 51, 0.6); /* Semi-transparent dark */
    border-radius: 4px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--netflix-red); /* Dramatic red accent */
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(193, 18, 31, 0.3);
    border-left-color: var(--netflix-red);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--netflix-white);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--netflix-red);
    opacity: 0.25;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author strong {
    color: var(--netflix-white);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.testimonial-category {
    display: inline-block;
    background: var(--netflix-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 2px; /* Sharp edges */
    text-transform: uppercase;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(193, 18, 31, 0.2);
    border-radius: 4px;
    color: var(--white);
    border: 2px solid var(--netflix-red);
    box-shadow: 0 8px 30px rgba(193, 18, 31, 0.3);
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maritime-gold); /* Updated maritime gold */
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 3.5rem;
    font-weight: 700;
}

.security-note,
.donation-info {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0;
}

/* ==========================================================================
   Why Menhaden Matter - Three Column
   ========================================================================== */

.why-menhaden {
    padding: var(--section-spacing) 0;
    background: var(--netflix-dark);
}

.why-menhaden h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.column h3 {
    color: var(--netflix-white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.column li {
    padding: 0.25rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.column li::before {
    content: '▸'; /* Arrow for Netflix style */
    position: absolute;
    left: 0;
    color: var(--netflix-red);
    font-weight: bold;
}

/* ==========================================================================
   Reduction Fishery Section
   ========================================================================== */

.reduction-fishery {
    padding: var(--section-spacing) 0;
    background: var(--netflix-black);
}

.reduction-fishery h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-lg);
}

.fishery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.fishery-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fishery-images a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}

.fishery-images a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.fishery-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fishery-images a:hover img {
    transform: scale(1.05);
}

.fishery-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium); /* Light gray on dark */
    margin-bottom: var(--spacing-md);
}

.historical-image {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 8px;
}

.historical-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

.caption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--netflix-red);
    color: var(--white);
    font-weight: 800;
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px; /* Sharp Netflix style */
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.5);
}

.btn-primary:hover {
    background: #A00F1A;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(193, 18, 31, 0.7);
}

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

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

/* ==========================================================================
   Newsletter Signup Section
   ========================================================================== */

.newsletter-signup {
    background: var(--netflix-dark);
    color: var(--white);
    padding: var(--section-spacing) 0;
    border-top: 2px solid rgba(193, 18, 31, 0.3);
}

.newsletter-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.newsletter-form-container h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(193, 18, 31, 0.3);
    border-radius: 2px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: rgba(31, 40, 51, 0.6);
    color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--netflix-red);
    outline: none;
    box-shadow: 0 0 15px rgba(193, 18, 31, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

.newsletter-illustration img {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0.9;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
    background: var(--netflix-black);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(193, 18, 31, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

.footer-logo {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-menhaden-logo {
    height: 40px !important;
}

.footer-nav {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-nav a:hover {
    color: var(--netflix-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

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

.footer-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.site-credit a {
    color: var(--netflix-red);
    text-decoration: none;
    font-weight: 600;
}

.site-credit a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --page-padding: 6vw;
    }

    .two-column-layout,
    .three-column-grid,
    .fishery-content,
    .newsletter-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .newsletter-illustration img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
        font-size: 0.9rem;
    }

    .hero {
        min-height: 70vh; /* Shorter on mobile */
        background-attachment: scroll; /* Remove fixed for mobile performance */
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Still large but mobile-friendly */
        letter-spacing: 1px;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .image-gallery,
    .fishery-images {
        grid-template-columns: 1fr;
    }

    /* Mobile responsive for fundraising components */
    .progress-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .progress-bar-container {
        height: 30px;
    }

    .progress-percentage {
        font-size: 0.9rem;
    }

    .tier {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        padding: var(--spacing-md) 0;
    }

    .tier-amount {
        font-size: 1.3rem;
        min-width: auto;
    }

    .impact-tiers {
        padding: var(--spacing-md);
    }

    /* Mobile testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-info {
        text-align: left;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Accessibility Enhancements - Phase 3
   ========================================================================== */

/* Skip to content link for keyboard users */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--cinematic-gold);
    color: var(--cinematic-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

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

/* Enhanced focus states for all interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: 3px solid var(--cinematic-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

/* Focus states for CTA buttons */
.cta-button:focus,
.btn-primary:focus {
    outline: 3px solid var(--white);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Focus for navigation links */
.main-nav a:focus {
    outline: 2px solid var(--cinematic-gold);
    outline-offset: 4px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

/* Focus for gallery images */
.image-gallery a:focus img,
.fishery-images a:focus img {
    outline: 4px solid var(--accent-teal);
    outline-offset: 4px;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(21, 152, 149, 0.4);
}

/* Focus for timeline cards */
.timeline-content:focus-within {
    outline: 3px solid var(--cinematic-gold);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.12);
}

/* Focus for form inputs */
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 4px rgba(21, 152, 149, 0.2);
}

/* Focus for video iframe */
iframe:focus {
    outline: 4px solid var(--cinematic-gold);
    outline-offset: 8px;
}

/* Remove default focus for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    a:focus,
    button:focus,
    input:focus {
        outline-width: 4px;
        outline-color: currentColor;
    }
}

/* Reduced transparency for better readability */
@media (prefers-contrast: high) {
    .hero-overlay,
    .timeline-content,
    .filmmaker-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: none;
    }
}

@media print {
    .main-nav,
    .main-footer,
    .newsletter-signup {
        display: none;
    }
}
