/*
 * Fundraiser Landing Page Styles
 */

.fundraiser-landing {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    color: var(--neutral-800, #333);
    overflow-x: hidden;
}

/* Sections Common */
.fl-section {
    padding: var(--space-2xl, 80px) 0;
}

.fl-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-md, 20px);
}

/* Typography */
.fl-subtitle {
    color: var(--neutral-600, #666);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: var(--space-sm, 10px);
    display: block;
}

.fl-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md, 20px);
    color: var(--neutral-900, #111);
}

.fl-title span {
    color: var(--primary, #0056b3);
}

.fl-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-600, #555);
    margin-bottom: var(--space-lg, 40px);
}

/* Buttons */
.fl-btn {
    display: inline-block;
    background: var(--primary, #0056b3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.fl-btn:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
    color: #fff;
}

.fl-btn-secondary {
    background: transparent;
    color: var(--primary, #0056b3);
    border: 2px solid var(--primary, #0056b3);
    box-shadow: none;
    margin-left: 15px;
}

.fl-btn-secondary:hover {
    background: var(--primary, #0056b3);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* Hero Section */
.fl-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.fl-hero-image-wrap {
    position: relative;
}

.fl-hero-img-main {
    width: 100%;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Stats Section */
.fl-stats {
    background: var(--neutral-50, #f8f9fa);
    padding: 60px 0;
    border-top: 1px solid var(--neutral-200, #eee);
    border-bottom: 1px solid var(--neutral-200, #eee);
}

.fl-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.fl-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neutral-900, #111);
    margin-bottom: 10px;
    line-height: 1;
}

.fl-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-600, #666);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Sections (Mission/Vision) */
.fl-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fl-feature.reverse {
    direction: rtl;
}
.fl-feature.reverse > * {
    direction: ltr;
}

.fl-feature h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Feature Lists */
.fl-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.fl-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--neutral-800, #333);
}

.fl-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    background: var(--primary, #0056b3);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.fl-feature-img {
    width: 100%;
    border-radius: 0 40px 0 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.fl-feature.reverse .fl-feature-img {
    border-radius: 40px 0 40px 0;
}

/* Fundraiser Grid Section */
.fl-grid-section {
    background: #fff;
    color: var(--neutral-800, #333);
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    border-top: 1px solid var(--neutral-200, #eee);
}

.fl-grid-section .fl-title {
    color: var(--neutral-900, #111);
}

.fl-grid-section .fl-text {
    color: var(--neutral-600, #666);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Override shortcode styles for the landing section */
.fl-grid-section .fundraiser-stats h3,
.fl-grid-section .fundraiser-stats p {
    display: none;
}

.fl-grid-section .progress-text {
    color: var(--primary, #0056b3);
    font-size: 1.1rem;
}

.fl-grid-section .progress-bar-wrap {
    background: var(--neutral-200, #e9ecef);
}

/* Responsive */
@media (max-width: 992px) {
    .fl-hero, .fl-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fl-hero {
        padding-top: 80px;
    }

    .fl-hero-content {
        text-align: center;
    }
    
    .fl-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        max-width: max-content;
        margin-inline: auto;
    }

    .fl-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fl-title {
        font-size: 2.5rem;
    }
}
