/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    padding: 8rem 2rem 4rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-primary);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    display: inline-block;
}

.cta-button.primary {
    background: var(--accent-red);
    color: #ffffff;
}

.cta-button.primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.cta-button.secondary:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========================================
   PROGRESS BARS
   ======================================== */
.progress-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-primary);
}

.progress-container {
    max-width: 900px;
    margin: 0 auto;
}

.progress-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.goal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.goal-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.goal-amount {
    font-size: 1.1rem;
    color: var(--accent-red);
    font-weight: 600;
}

.goal-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

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

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

.progress-percentage {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE - PAGES
   ======================================== */
@media (max-width: 968px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        position: relative;
        top: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        max-width: 400px;
    }
}
