/* About Us Page Styles - Extends styles.css from index */

/* Import base variables from index (these should match your styles.css) */
:root {
    --primary-teal: #14b8a6;
    --primary-teal-dark: #0f766e;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #1e40af;
    --secondary-teal: #5eead4;
    --secondary-blue: #93c5fd;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-yellow: #f59e0b;
    --accent-green: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-light: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    --max-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition-base: 0.3s ease;
}

/* About Us Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    margin-top: 8px;
    padding: 4rem 0;
}

.about-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(60px);
    animation: blob-move 15s infinite alternate ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    bottom: -70px;
    right: -70px;
    animation-delay: -7s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 70%;
    animation-delay: -4s;
}

@keyframes blob-move {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(40px,-30px) scale(1.1); }
    100% { transform: translate(-30px,20px) scale(0.9); }
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0.0rem;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;

}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;

    line-height: 1.8;
}

/* ==== SUPPORT PAGE HERO – FIXED VERSION ==== */
.support-hero {
    padding: 5rem 1rem 2rem;        /* reduced from huge 60vh */
    text-align: center;
    background: var(--bg-secondary);
    margin-top: 8px;                 /* keeps the tiny gap under navbar */
}

.support-hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.support-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* The banner image */
.support-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;                  /* breathing room on mobile */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.support-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .support-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .support-title {
        font-size: 2.8rem;
    }
    
    .support-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .support-banner {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .support-title {
        font-size: 2.3rem;
    }
}

/* Profile Section */
.profile-section {
    padding: 4rem 0;
    background: white;
}

.profile-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--gradient-primary);
    padding: 4px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.profile-info h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-content h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.story-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Image Banner */
.image-banner {
    margin: 3rem 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.image-banner:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.support-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.donation-button {
    display: inline-block;
    transition: var(--transition-base);
}

.donation-button img {
    max-width: 250px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.donation-button:hover img {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 1rem 0;
        margin-top: 8px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
    }

    .profile-picture {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .profile-info h2 {
        font-size: 1.5rem;
    }

    .story-content,
    .support-content {
        padding: 0 1rem;
    }

    .story-content p,
    .support-content p {
        font-size: 1rem;
    }

    .story-content h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-banner {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 1.5rem 0;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-picture {
        width: 120px;
        height: 120px;
    }

    .donation-button img {
        max-width: 200px;
    }
}