/* TransPower Project Demo - Matching Real Site Styles */
:root {
    --primary-color: #FF00DD;
    --trans-blue: #5BCEFA;
    --trans-pink: #F5A9B8;
    --trans-white: #FAFAFA;
    --trans-white-glass: rgba(250, 250, 250, 0.85);
    --trans-white-pure: #FFFFFF;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --very-light-gray: #f6f6f6;
    
    /* Matte color variants */
    --primary-color-matte: #E600C7;
    --trans-blue-matte: #4AA3D1;
    --trans-pink-matte: #D4899A;
    
    /* Faded color variants for navbar and hero */
    --primary-color-faded: rgba(230, 0, 199, 0.7);
    --trans-blue-faded: rgba(74, 163, 209, 0.7);
    --trans-pink-faded: rgba(212, 137, 154, 0.7);
    --black-faded: rgba(0, 0, 0, 0.7);
    --white-faded: rgba(255, 255, 255, 0.9);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    --header-height: 80px;
    --demo-banner-height: 40px;
    --container-max-width: 1200px;
    --content-padding: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--black);
    background: var(--trans-white);
    padding-top: var(--header-height); /* Only account for header since demo banner is missing */
    margin: 0; /* Ensure no default margin */
}

/* GoFundMe Custom Integration - LBOF Design Match */
.gofundme-section {
    padding: 5rem 0;
    background: var(--very-light-gray);
}

.gofundme-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

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

.gofundme-header h2 {
    color: var(--primary-color-faded);
    font-weight: var(--font-weight-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gofundme-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* GoFundMe Card Styling */
.gofundme-card {
    background: var(--trans-white-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--light-gray);
    padding: 2rem;
    transition: all var(--transition-normal);
    max-width: 800px;
    margin: 0 auto;
}

.gofundme-card:hover {
    border-color: var(--primary-color-faded);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 0, 199, 0.2);
}

/* Progress Bar Container */
.gofundme-progress-container {
    margin: 2rem 0;
}

.gofundme-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gofundme-raised {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color-faded);
}

.gofundme-goal {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
}

/* Progress Bar */
.gofundme-progress-bar {
    width: 100%;
    height: 20px;
    background: var(--light-gray);
    border: 2px solid var(--black);
    position: relative;
    overflow: hidden;
}

.gofundme-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--trans-blue-faded), var(--primary-color-faded));
    transition: width var(--transition-slow);
    position: relative;
}

.gofundme-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.2) 75%, 
        transparent 75%);
    background-size: 20px 20px;
    animation: progress-stripe 1s linear infinite;
}

@keyframes progress-stripe {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

/* Progress Statistics */
.gofundme-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--trans-white-pure);
    border: 2px solid var(--medium-gray);
}

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

.gofundme-stat-number {
    font-size: 1.8rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color-faded);
    display: block;
}

.gofundme-stat-label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Campaign Description */
.gofundme-description {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
}

.gofundme-description h3 {
    color: var(--primary-color-faded);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

/* Donation Buttons */
.gofundme-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.gofundme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-family: inherit;
    width: 100%;
}

.gofundme-btn-primary {
    background: var(--primary-color-faded);
    color: var(--trans-white-pure);
    border-color: var(--black);
}

.gofundme-btn-primary:hover {
    background: transparent;
    color: var(--primary-color-faded);
    border-color: var(--primary-color-faded);
    transform: translateY(-2px);
}

.gofundme-btn-secondary {
    background: var(--trans-blue-faded);
    color: var(--trans-white-pure);
    border-color: var(--black);
}

.gofundme-btn-secondary:hover {
    background: transparent;
    color: var(--trans-blue-faded);
    border-color: var(--trans-blue-faded);
    transform: translateY(-2px);
}

/* Quick Donation Amounts */
.gofundme-quick-amounts {
    margin: 1.5rem 0;
}

.gofundme-quick-amounts h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gofundme-amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
}

.gofundme-amount-btn {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    background: var(--trans-white-pure);
    color: var(--black);
    border: 2px solid var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    text-align: center;
}

.gofundme-amount-btn:hover {
    background: var(--primary-color-faded);
    color: var(--trans-white-pure);
    border-color: var(--black);
    transform: scale(1.05);
}

/* Recent Donations */
.gofundme-recent-donations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.gofundme-recent-donations h3 {
    color: var(--primary-color-faded);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.gofundme-donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--trans-white-pure);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
}

.gofundme-donation-item:hover {
    border-color: var(--primary-color-faded);
    transform: translateX(5px);
}

.gofundme-donor-info {
    flex: 1;
}

.gofundme-donor-name {
    font-weight: var(--font-weight-semibold);
    color: var(--black);
}

.gofundme-donation-message {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 0.25rem;
}

.gofundme-donation-amount {
    font-weight: var(--font-weight-bold);
    color: var(--primary-color-faded);
    font-size: 1.1rem;
}

.gofundme-donation-time {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-align: right;
}

/* Responsive Design */
@media (min-width: 768px) {
    .gofundme-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .gofundme-btn {
        width: auto;
        min-width: 200px;
    }
    
    .gofundme-amounts-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .gofundme-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-bold);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Container and Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Fix content alignment */
.content-section .container {
    width: 100%;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

/* Header - Exact match to your site */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--trans-white-glass);
    background-image: url('https://xcmoon.com/LBOF/img/flowering-191919.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 1000;
    transition: all var(--transition-normal);
    overflow: visible; /* Allow dropdown to extend beyond header */
}

/* Add extremely transparent overlay to make background barely visible */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.90);
    z-index: -1;
}

.site-header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(250, 250, 250, 0.9);
    background-image: url('https://xcmoon.com/LBOF/img/flowering-191919.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Make scrolled header background even more transparent */
.site-header.scrolled::before {
    background: rgba(250, 250, 250, 0.97);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--content-padding);
    position: relative; /* Needed for dropdown positioning */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-black);
    font-size: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 221, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
}

.logo-icon:hover {
    transform: translateY(-2px);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(255, 0, 221, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: rgba(230, 0, 199, 0.4);
    transition: all var(--transition-normal);
}

.nav-logo:hover .logo-text {
    color: rgba(230, 0, 199, 0.6);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--black-faded);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: 0.8rem 1.2rem;
    border-bottom: 2px solid transparent;
    background: transparent;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.nav-link:hover {
    color: var(--primary-color-faded);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: var(--primary-color-faded);
    box-shadow: 0 2px 10px rgba(255, 0, 221, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    min-width: 220px;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    margin-top: 8px;
    white-space: nowrap; /* Prevent text wrapping that might affect positioning */
    overflow: hidden; /* Prevent content overflow */
}

/* Ensure dropdowns stay within viewport bounds */
@media (max-width: 1300px) {
    .dropdown-menu {
        min-width: 180px; /* Smaller minimum width on smaller screens */
    }
    
    .dropdown-menu .dropdown-item {
        width: 100%; /* Full width of dropdown container */
        box-sizing: border-box;
    }
}

@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 160px; /* Even smaller on very tight screens */
    }
    
    .dropdown-menu .dropdown-item {
        width: 100%; /* Full width of dropdown container */
        box-sizing: border-box;
    }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--black-faded);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
    transition: all var(--transition-fast);
    margin: 0.25rem;
    width: 100%; /* Full width of dropdown container */
    box-sizing: border-box;
}

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

.dropdown-item:hover {
    background: rgba(255, 0, 221, 0.8);
    color: var(--white-faded);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(255, 0, 221, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.nav-donate {
    background: rgba(230, 0, 199, 0.4);
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.5);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(255, 0, 221, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-donate:hover {
    background: rgba(255, 255, 255, 0.7);
    color: rgba(230, 0, 199, 0.9) !important;
    border: 2px solid rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(255, 0, 221, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Main Content */
.site-main {
    margin-top: 0; /* Remove margin since body already has padding-top */
    min-height: calc(100vh - var(--header-height));
}

/* Hero Section - Using your image with activism footer effect */
.hero {
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--trans-white);
    
    position: relative;
    overflow: hidden;
    min-height: calc(90vh - var(--header-height));
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 221, 0.8) 0%,
        rgba(91, 206, 250, 0.7) 35%,
        rgba(245, 169, 184, 0.7) 65%,
        rgba(255, 0, 221, 0.8) 100%
    );
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: var(--font-weight-black);
    margin-bottom: 1rem;
    color: var(--black-faded);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 1.6rem);
    font-weight: 1.2rem;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.5;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Exact match to your site */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color-faded);
    border-color: var(--black);
}

.btn-secondary {
    background: var(--trans-blue-faded);
    color: var(--black-faded);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--trans-blue-faded);
    border-color: var(--black);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section:nth-child(even) {
    background: var(--very-light-gray);
}

/* Override even background for our mission section */
.content-section.our-mission-section:nth-child(even) {
    background-color: transparent !important;
}

/* Our Mission Section with activism footer effect */
.content-section.our-mission-section {
    background-color: transparent !important;
    background-image: url('https://xcmoon.com/LBOF/img/b-n-w-0.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative !important;
    overflow: hidden;
    padding: 4rem 2rem;
    min-height: 400px;
    color: #000000;
}

/* Add overlay for better text readability */
.content-section.our-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

/* Additional override to ensure parallax effect works */
section.content-section.our-mission-section {
    background: url('https://xcmoon.com/LBOF/img/b-n-w-0.png') center center / cover no-repeat fixed !important;
}

.our-mission-section .container {
    position: relative;
    z-index: 2;
}

/* Improve text readability in Our Mission section */
.our-mission-section h2 
.our-mission-section h3 .section-title {
    color: #000000 !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}
.our-mission-section h3,
.our-mission-section p,
.our-mission-section .section-title {
    color: #000000 !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Make cards more readable with better background */
.our-mission-section .card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Get Involved Section with flowering background */
.get-involved-section {
    background-image: url('https://xcmoon.com/LBOF/img/client-lbof-backgorund-flower-photo-id-081914202025.JPG') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

/* Add overlay for Get Involved section */
.get-involved-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.get-involved-section .container {
    position: relative;
    z-index: 2;
}

/* Enhance cards in Get Involved section */
.get-involved-section .card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-color-faded);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-wrap: balance;
    word-wrap: break-word;
    hyphens: auto;
    orphans: 2;
    widows: 2;
    text-align: center;
    line-height: 1.6;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards - No rounded corners */
.card {
    background: var(--trans-white-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--light-gray);
    padding: 2rem;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure equal height cards */
}

.card:hover {
    border-color: var(--primary-color-faded);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 0, 199, 0.2);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transition: transform var(--transition-normal);
}

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

/* Our Mission card images - larger height for better content display */
.our-mission-section .card-image {
    height: 250px;
}

/* Desktop-only: Smaller images for Get Involved cards */
@media (min-width: 1024px) {
    .get-involved-section .card-image {
        height: 200px;
    }
    
    .get-involved-section .container {
        max-width: 95vw !important;
        padding: 0 2rem !important;
    }
    
    .get-involved-section .grid-4 {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    
    .get-involved-section .card {
        min-width: 0 !important;
        max-width: none !important;
        flex: 1 !important;
    }
    
    /* Our Mission section: 2 cards per row, wider cards */
    .our-mission-section .container {
        max-width: 90vw !important;
        padding: 0 2rem !important;
    }
    
    .our-mission-section .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 100% !important;
    }
    
    .our-mission-section .card {
        min-width: 0 !important;
        max-width: none !important;
        flex: 1 !important;
    }
}

.card-title {
    color: var(--primary-color-faded);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title i {
    font-size: 1.5rem;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.rainbow-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.rainbow-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 1.1rem;
}

.rainbow-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.rainbow-list li:nth-child(1)::before {
    background: linear-gradient(45deg, #FF00DD, #5BCEFA, #F5A9B8);
    box-shadow: 0 2px 4px rgba(255, 0, 221, 0.2);
}

.rainbow-list li:nth-child(2)::before {
    background: linear-gradient(45deg, #FF00DD, #5BCEFA, #F5A9B8);
    box-shadow: 0 2px 4px rgba(91, 206, 250, 0.2);
}

.rainbow-list li:nth-child(3)::before {
    background: linear-gradient(45deg, #FF00DD, #5BCEFA, #F5A9B8);
    box-shadow: 0 2px 4px rgba(245, 169, 184, 0.2);
}

.rainbow-list li:nth-child(4)::before {
    background: linear-gradient(45deg, #FF00DD, #5BCEFA, #F5A9B8);
    box-shadow: 0 2px 4px rgba(255, 0, 221, 0.2);
}

.rainbow-list li:nth-child(5)::before {
    background: linear-gradient(45deg, #FF00DD, #5BCEFA, #F5A9B8);
    box-shadow: 0 2px 4px rgba(255, 0, 221, 0.2);
}

/* Trans Blue Square List Bullets - Global */
ul:not(.rainbow-list):not(.nav-menu):not(.footer-links) {
    list-style: none;
    padding-left: 0;
}

ul:not(.rainbow-list):not(.nav-menu):not(.footer-links) li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

ul:not(.rainbow-list):not(.nav-menu):not(.footer-links) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--trans-blue);
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(91, 206, 250, 0.3);
}

/* Trans Blue Square List - Specific Class */
.trans-bullet-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1rem 0 !important;
}

.trans-bullet-list li {
    position: relative !important;
    padding-left: 1.8rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.6 !important;
    font-size: 1.1rem !important;
}

.trans-bullet-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.4rem !important;
    width: 12px !important;
    height: 12px !important;
    background: var(--trans-blue) !important;
    border-radius: 0 !important;
    box-shadow: 0 1px 3px rgba(91, 206, 250, 0.3) !important;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color-faded);
}

.preview-text, .full-text {
    display: inline;
}

.card-content {
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow content to expand and push footer to bottom */
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto; /* Push footer to bottom of card */
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(230, 0, 199, 0.4);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

/* SimpleParallax.js Background Images */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: -1;
    will-change: transform;
}

/* Ensure sections have relative positioning for backgrounds */
.hero,
.our-mission-section,
.get-involved-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Make sure content is above background */
.hero .container,
.our-mission-section .container,
.get-involved-section .container {
    position: relative;
    z-index: 2;
}

/* Intermediate responsive design - prevent menu bunching on tablet/small desktop */
@media (max-width: 1350px) and (min-width: 1201px) {
    .nav-menu {
        gap: 1.5rem; /* Slight reduction from 2rem for larger intermediate screens */
    }
    
    .nav-link {
        padding: 0.8rem 1rem; /* Slight padding reduction */
        font-size: 0.95rem; /* Very slight font reduction */
    }
}

@media (max-width: 1200px) and (min-width: 1101px) {
    .nav-menu {
        gap: 1rem; /* More significant gap reduction */
    }
    
    .nav-link {
        padding: 0.8rem 0.8rem; /* More padding reduction */
        font-size: 0.9rem; /* Smaller font */
    }
}

/* Further compression for very tight desktop screens */
@media (max-width: 1150px) and (min-width: 1101px) {
    .nav-menu {
        gap: 0.8rem; /* Moderate tight gap */
    }
    
    .nav-link {
        padding: 0.8rem 0.7rem; /* Tighter padding */
        font-size: 0.87rem; /* Slightly smaller font */
        letter-spacing: 0.3px; /* Reduce letter spacing */
    }
}

/* Maximum compression just before mobile breakpoint */
@media (max-width: 1120px) and (min-width: 1101px) {
    .nav-menu {
        gap: 0.5rem; /* Very tight gap */
    }
    
    .nav-link {
        padding: 0.8rem 0.6rem; /* Very tight padding */
        font-size: 0.85rem; /* Smaller font */
        letter-spacing: 0.2px; /* Minimal letter spacing */
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
        position: fixed; /* Changed to fixed to prevent clipping */
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--trans-white-glass);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1rem 1rem 4rem 1rem;
        border: 3px solid var(--black);
        border-top: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        max-height: calc(100vh - var(--header-height) - 3rem);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    /* Mobile dropdown behavior - click to open */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        border: none;
        box-shadow: none;
        background: var(--very-light-gray);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: all var(--transition-normal);
    }

    .dropdown.mobile-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: calc(100vh - 300px); /* Dynamic height based on viewport, leaving room for other nav items */
        overflow-y: auto; /* Enable scrolling if needed */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: thin; /* Thin scrollbar on Firefox */
    }
    
    /* Webkit scrollbar styling for dropdown menus */
    .dropdown.mobile-active .dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .dropdown.mobile-active .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .dropdown.mobile-active .dropdown-menu::-webkit-scrollbar-thumb {
        background: var(--trans-blue);
    }
    
    .dropdown.mobile-active .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: var(--trans-pink);
    }

    /* Mobile-specific dropdown item styling */
    .dropdown-menu .dropdown-item {
        padding: 1rem 1.5rem; /* Larger tap targets for mobile */
        font-size: 1rem; /* Slightly larger text for mobile */
        margin: 0; /* Remove margin in mobile dropdown */
        border-bottom: 1px solid rgba(204, 204, 204, 0.5);
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        box-sizing: border-box;
        width: 100%; /* Full width like main nav items */
        justify-content: center; /* Center text like main nav items */
    }
    
    .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus,
    .dropdown-menu .dropdown-item:active {
        background: rgba(91, 206, 250, 0.2); /* Trans blue with transparency */
        color: var(--text-dark);
        transform: none; /* Disable transform on mobile for better performance */
    }

    .nav-link, .nav-donate {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-donate {
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        border-bottom: 2px solid #000000 !important;
        padding-bottom: 1rem !important;
        box-sizing: border-box !important;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Make Our Mission cards wider on mobile - match Get Involved width */
    .our-mission-section {
        padding: 5rem 0 !important;
    }

    .our-mission-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }

    .our-mission-section .grid-2 {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .our-mission-section .card {
        max-width: none !important;
        width: calc(100% - 2rem) !important;
        margin: 0 1rem !important;
        box-sizing: border-box !important;
    }

    /* Make Get Involved cards the same width as Our Mission */
    .get-involved-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
    }

    .get-involved-section .grid-4 {
        max-width: 100% !important;
        margin: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .get-involved-section .card {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .forms-section {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 1.5rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 1rem; /* Add padding for mobile */
    }

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

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

    .activism-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 2rem;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .main-container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .activism-footer {
        padding: 2rem 0.5rem; /* Reduce side padding */
        min-height: auto;
        background-attachment: scroll; /* Fix for mobile performance */
    }

    .footer-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .forms-section {
        margin-bottom: 2rem;
        max-width: 100%;
        gap: 1.5rem;
        padding: 0; /* Remove any conflicting padding */
    }

    .contact-form, .newsletter-form {
        padding: 1.2rem;
        margin: 0;
        width: 100%;
        max-width: none; /* Remove any width restrictions */
    }

    .form-input, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }

    .form-submit {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
    }

    .action-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .activism-title {
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .activism-subtitle {
        margin-bottom: 1.5rem;
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .goals-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    /* Read more/less button tablet improvements */
    .read-more-btn {
        font-size: 0.9rem;
        padding: 0.15rem 0.4rem;
        margin: 0 0.2rem;
        min-height: 1.2rem;
        line-height: 1.2;
        display: inline-block;
        vertical-align: baseline;
        box-sizing: border-box;
        color: white !important;
    }
}

/* Mobile parallax setup - ensure backgrounds are ready for JS manipulation */
@media (max-width: 1024px) {
    .hero,
    .our-mission-section,
    section.content-section.our-mission-section,
    .get-involved-section,
    .activism-footer,
    .stats-dashboard {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        will-change: background-position;
    }
}

/* Desktop and large screens - side by side forms */
@media (min-width: 1024px) {
    .forms-section {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        max-width: 800px;
    }
}

/* Tablet and mobile responsive styles */
@media (max-width: 1023px) {
    .forms-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 600px;
    }

    /* Make Our Mission cards wider on tablet - match Get Involved width */
    .our-mission-section {
        padding: 5rem 0 !important;
    }

    .our-mission-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .our-mission-section .grid-2 {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0.75rem !important;
        gap: 2rem !important;
        grid-template-columns: 1fr !important;
    }

    .our-mission-section .card {
        max-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Make Get Involved cards the same width as Our Mission on tablet */
    .get-involved-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 0.75rem !important;
    }

    .get-involved-section .grid-4 {
        max-width: 100% !important;
        margin: 0 !important;
        gap: 2rem !important;
        grid-template-columns: 1fr !important;
    }

    .get-involved-section .card {
        max-width: none !important;
        width: 100% !important;
    }

    .activism-footer {
        padding: 3rem 2rem;
    }

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

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    /* Make Our Mission cards even wider on small mobile - match Get Involved width */
    .our-mission-section {
        padding: 5rem 0 !important;
    }

    .our-mission-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }

    .our-mission-section .grid-2 {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        gap: 1rem !important;
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .our-mission-section .card {
        padding: 1.5rem !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Make Get Involved cards the same width as Our Mission on small mobile */
    .get-involved-section .container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 0.25rem !important;
    }

    .get-involved-section .grid-4 {
        max-width: 100% !important;
        margin: 0 !important;
        gap: 1rem !important;
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .get-involved-section .card {
        padding: 1.5rem !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .activism-footer {
        padding: 1.5rem 0.5rem;
        background-attachment: scroll; /* Better mobile performance */
    }

    .forms-section {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .contact-form, .newsletter-form {
        padding: 1rem;
    }

    .stats-content {
        padding: 0 1rem;
    }

    .stats-header {
        padding: 1.5rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .goals-section {
        padding: 1rem;
    }

    .goal-label, .goal-amount {
        font-size: 1rem;
    }

    .cta-section {
        padding: 1.5rem 1rem;
    }

    .action-buttons {
        gap: 0.8rem;
    }

    .action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Read more/less button mobile improvements */
    .read-more-btn {
        font-size: 0.9rem !important;
        padding: 0.1rem 0.2rem !important;
        margin-left: 0.5rem !important;
        line-height: normal !important;
        display: inline !important;
        vertical-align: baseline !important;
        color: white !important;
    }
}

/* Demo Banner */
.demo-banner {
    background: var(--trans-blue);
    color: var(--black);
    padding: 0.5rem 0;
    text-align: center;
    font-weight: var(--font-weight-medium);
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--demo-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Activism Footer Styling */
.activism-footer {
    background-image: url('https://xcmoon.com/LBOF/img/footer-lbof.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activism-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 221, 0.8) 0%,
        rgba(91, 206, 250, 0.7) 35%,
        rgba(245, 169, 184, 0.7) 65%,
        rgba(255, 0, 221, 0.8) 100%
    );
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.activism-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--trans-white);
    text-shadow: 
        3px 3px 0px var(--black),
        -1px -1px 0px var(--black),
        1px -1px 0px var(--black),
        -1px 1px 0px var(--black),
        1px 1px 0px var(--black);
    margin-bottom: 1.5rem;
    line-height: 0.9;
}

.activism-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: var(--font-weight-bold);
    color: var(--trans-white);
    text-shadow: 2px 2px 0px var(--black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-btn {
    background: var(--primary-color-faded);
    color: var(--white-faded);
    border: 3px solid var(--black-faded);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    cursor: pointer;
    box-shadow: 5px 5px 0px var(--black-faded);
    font-family: inherit;
}

.action-btn:hover {
    background: var(--trans-blue-faded);
    color: var(--black-faded);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--black-faded);
}

.action-btn.secondary {
    background: var(--trans-blue-faded);
    color: var(--black-faded);
}

.forms-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form, .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--black-faded);
    padding: 1.2rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--white-faded);
    text-shadow: 2px 2px 0px var(--black-faded);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

.form-label {
    display: block;
    color: var(--white-faded);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 0px var(--black-faded);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid var(--black-faded);
    background: var(--trans-white-pure);
    font-family: inherit;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color-faded);
    box-shadow: 0 0 0 3px rgba(230, 0, 199, 0.3);
}

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

.form-submit {
    background: var(--primary-color-faded);
    color: var(--white-faded);
    border: 3px solid var(--black-faded);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    box-shadow: 3px 3px 0px var(--black-faded);
    width: 100%;
    font-family: inherit;
}

.form-submit:hover {
    background: var(--trans-blue-faded);
    color: var(--black-faded);
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--black-faded);
}

.form-submit:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 0.8rem;
    padding: 0.6rem;
    border: 2px solid;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: #00FF88;
    border-color: var(--black-faded);
    color: var(--black-faded);
}

.form-message.error {
    background: #FF4444;
    border-color: var(--black-faded);
    color: var(--white-faded);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white-faded);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0px var(--black-faded);
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: var(--white-faded);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    color: var(--white-faded);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 0px var(--black-faded);
}

.social-link:hover {
    color: var(--primary-color-faded);
    border-color: var(--primary-color-faded);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 199, 0.3);
}

@media (max-width: 768px) {
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1.2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Campaign Stats Dashboard */
.stats-dashboard {
    background: url('https://xcmoon.com/LBOF/img/activ-abstractsy.png') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0;
    margin: 0;
}

.stats-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--trans-white-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border: 3px solid var(--black-faded);
    box-shadow: 5px 5px 0px var(--black-faded);
}

.stats-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-black);
    color: var(--primary-color-faded);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px var(--black-faded);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.stats-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--black-faded);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

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

.stat-card {
    background: var(--trans-white-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border: 3px solid var(--black-faded);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 5px 5px 0px var(--black-faded);
}

.stat-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--black-faded);
}

.stat-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-black);
    margin-bottom: 0.5rem;
    color: var(--primary-color-faded);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--black-faded);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--light-gray);
    border: 2px solid var(--black-faded);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--trans-blue-faded), var(--trans-pink-faded), var(--primary-color-faded));
    transition: width 2s ease-in-out;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.goals-section {
    background: var(--trans-white-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 3px solid var(--black-faded);
    box-shadow: 5px 5px 0px var(--black-faded);
    margin-bottom: 2rem;
}

.goals-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color-faded);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px var(--black-faded);
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid var(--light-gray);
}

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

.goal-label {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--black-faded);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.goal-amount {
    font-size: 1.4rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color-faded);
    letter-spacing: -0.01em;
}

.cta-section {
    text-align: center;
    background: linear-gradient(
        45deg,
        rgba(91, 206, 250, 0.4) 0%,
        rgba(245, 169, 184, 0.3) 35%,
        rgba(91, 206, 250, 0.3) 65%,
        rgba(245, 169, 184, 0.4) 100%
    );
    color: var(--white-faded);
    padding: 2.5rem;
    border: 3px solid var(--black-faded);
    box-shadow: 5px 5px 0px var(--black-faded);
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color-faded);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px var(--black-faded);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
    color: black;
}

.donate-btn {
    background: var(--primary-color-faded);
    color: var(--white-faded);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: var(--font-weight-black);
    border: 3px solid var(--black-faded);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: inherit;
    box-shadow: 5px 5px 0px var(--black-faded);
}

.donate-btn:hover {
    background: var(--trans-blue-faded);
    color: var(--black-faded);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--black-faded);
}

/* Profile Image Styles */
.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--trans-pink);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {
    .profile-image {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
}