/* =========================================
   GET INVOLVED PAGE STYLES (involved.css)
   ========================================= */

/* --- 1. HERO: SOLID BRAND BLOCK --- */
.involved-hero {
    background-color: var(--brand-dark);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    border-bottom: 8px solid var(--brand-gold);
}

.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text-content {
    flex: 1;
}

/* Force Hero Text to White */
.involved-hero h1,
.involved-hero p {
    color: #ffffff !important;
}

.involved-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.involved-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}
.btn {
    margin: 10px auto;
}

/* HERO BUTTONS (Desktop) */
.hero-btn-group {
    display: flex;
    gap: 20px;
    width: 100%;
}

.hero-btn-group .btn {
    flex: 1;
    text-align: center;
    padding: 15px 0 !important;
    box-sizing: border-box; 
}

/* Hero: Gold Button */
.involved-hero .btn-primary {
    background-color: var(--brand-gold) !important;
    color: var(--brand-dark) !important;
    border: 2px solid var(--brand-gold) !important;
}

/* Hero: White Outline Button */
.involved-hero .btn-outline {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.involved-hero .btn-outline:hover {
    background-color: #ffffff !important;
    color: var(--brand-dark) !important;
}

/* Image Frame */
.hero-image-content {
    flex: 1;
    position: relative;
}

.hero-image-content img {
    width: 100%;
    border-radius: 4px;
    border: 2px solid var(--brand-gold);
    box-shadow: 25px 25px 0 rgba(0,0,0,0.3);
}

/* --- 2. SPONSORSHIP TIERS --- */
.sponsor-tiers-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

/* Intro Image */
.sponsor-intro-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
    filter: brightness(0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    align-items: flex-end;
}

.tier-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center; 
}

.tier-card:hover { transform: translateY(-10px); }

.tier-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
    display: block;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.tier-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #666;
}

.tier-features li i {
    color: var(--brand-gold);
    margin-right: 10px;
}

/* Featured Tier (Platinum) */
.tier-card.featured {
    background: var(--brand-dark);
    color: var(--white);
    transform: scale(1.05);
    z-index: 2;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tier-card.featured h3, 
.tier-card.featured .tier-price,
.tier-card.featured .tier-features li {
    color: #ffffff !important;
}

.tier-card.featured .tier-features li {
    border-color: rgba(255,255,255,0.1);
}

/* --- TIER BUTTONS FIX (Margin Auto) --- */
.tier-card .btn,
.tier-card .btn-outline,
.tier-card .btn-primary {
    margin: 0 auto !important; 
    display: block; 
}

/* Button Colors inside Cards */
.tier-card .btn-outline {
    color: var(--brand-dark) !important;
    border: 2px solid var(--brand-dark) !important;
}
.tier-card .btn-outline:hover {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
}

/* --- 3. MILE MARKER SECTION --- */
.mile-marker-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.marker-visual {
    background: #ff69b4; /* Cancer Pink */
    width: 200px;
    height: 120px;
    margin: 30px auto;
    border: 4px solid var(--brand-dark);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    /* CHANGED: Pale Pink Text (Not White, Not Black) */
    color: #ffe6f2; 
    font-family: 'Montserrat', sans-serif;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.marker-pole {
    width: 10px;
    height: 100px;
    background: #555;
    margin: -25px auto 0;
}

/* --- 4. ACTION GRID (Visual) --- */
.action-grid-section {
    padding: 80px 0;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.action-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.action-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.action-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Volunteer Side */
.action-card.volunteer { background: var(--white); }
.action-card.volunteer h3 { color: var(--brand-dark); }

.action-card.volunteer .btn-outline {
    color: var(--brand-dark) !important;
    border: 2px solid var(--brand-dark) !important;
}
.action-card.volunteer .btn-outline:hover {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
}

/* Donate Side */
.action-card.donate { background: var(--brand-dark); }
.action-card.donate h3, 
.action-card.donate p { color: #ffffff !important; }

/* --- DONATE BUTTONS FIX --- */
.donate-btn-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}
.donate-btn-group .btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 0;
    box-sizing: border-box;
    margin: 10px auto; 
}
/* --- NEW: IMPACT SECTION (Visual Header Cards) --- */
.impact-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Very Light Grey to make white cards pop */
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: #ffffff;
    border-radius: 12px; /* Softer corners */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden; /* Ensures image stays inside rounded corners */
    transition: transform 0.3s ease;
    border: none; /* Removed the green top border */
}

.impact-card:hover {
    transform: translateY(-8px);
}

/* 1. The Image Header */
.impact-header-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.9); /* Slightly darker to make icon pop */
}

/* 2. The Text Body Container */
.impact-content-body {
    padding: 0 30px 40px 30px;
    position: relative;
}

/* 3. The Floating Icon (Unique Element) */
.impact-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--brand-gold); /* Gold Background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* This creates the "floating" overlap effect */
    margin: -35px auto 25px auto; 
    position: relative;
    z-index: 2;
    
    /* White border creates separation from the image */
    border: 5px solid #ffffff; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.impact-icon-circle i {
    font-size: 1.6rem;
    color: var(--brand-dark);
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
    font-weight: 800;
}

.impact-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
/* Accessibility: Focus Outlines */
a.btn:focus, button:focus {
    outline: 3px solid var(--brand-gold);
    outline-offset: 2px;
}
/* Mobile Impact Stack */
@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 50px; /* More space on mobile to account for shadows */
    }
}
/* --- MOBILE OVERRIDES --- */
@media (max-width: 900px) {
    
    /* 1. Hero Content */
    .hero-flex-container { 
        flex-direction: column-reverse; 
        gap: 40px;
    }
    
    .hero-text-content {
        text-align: left; /* Keep text left aligned */
        width: 100%;
    }

    /* 2. HERO BUTTONS: FORCE CENTER & STACK */
    .hero-btn-group { 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        justify-content: center !important;
        gap: 15px !important; 
        width: 100% !important;
    }
    
    .hero-btn-group .btn {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important; /* Force margin auto */
        text-align: center !important; 
        padding: 15px 0 !important;
        box-sizing: border-box !important;
    }

    /* Reset Yellow Button Padding for Mobile */
    .involved-hero .btn-primary {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    /* 3. General Layouts */
    .tier-grid { grid-template-columns: 1fr; gap: 40px; }
    .tier-card.featured { transform: scale(1); }
    .action-grid { grid-template-columns: 1fr; }
    
    .involved-hero h1 { font-size: 2.8rem; }
    .involved-hero {
        padding: 40px 0;
    }
}

/* --- 2026 T-SHIRT SUPPORT SECTION --- */
.tshirt-support-section {
    padding: 90px 0;
    background: var(--brand-light);
}

.tshirt-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 55px;
    align-items: center;
}

.tshirt-support-visual img,
.sponsorship-sheet-wrap img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(20, 39, 33, 0.14);
}

.tshirt-support-content p {
    color: #5f6c67;
    font-size: 1.05rem;
}

.tshirt-support-list {
    margin: 25px 0 30px;
}

.tshirt-support-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20,39,33,0.12);
    color: #4e5d57;
}

.tshirt-support-list i {
    width: 22px;
    margin-top: 4px;
    color: var(--brand-gold);
    text-align: center;
}

.sponsorship-sheet-wrap {
    max-width: 900px;
    margin: 0 auto 35px;
}

@media (max-width: 900px) {
    .tshirt-support-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tshirt-support-content {
        text-align: center;
    }

    .tshirt-support-content .divider {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .tshirt-support-list {
        text-align: left;
    }
}

.tier-price {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    white-space: nowrap;
}
