/* 후원 페이지 전용 스타일 */

/* 페이지 히어로 섹션 */
.page-hero {
    background: linear-gradient(135deg, #5C6E38 0%, #7A8B4A 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 후원 소개 섹션 */
.donation-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    color: #5C6E38;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-content strong {
    color: #5C6E38;
    font-weight: 600;
}

/* 후원 사용처 섹션 */
.donation-usage {
    padding: 80px 0;
    background: white;
}

.donation-usage h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.usage-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.usage-icon {
    width: 80px;
    height: 80px;
    background: #5C6E38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.usage-icon i {
    font-size: 2rem;
    color: white;
}

.usage-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.usage-item p {
    color: #666;
    line-height: 1.6;
}

/* 후원 방법 섹션 */
.donation-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.donation-methods h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}

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

.method-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: #7A8B4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.method-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.method-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.method-detail {
    color: #5C6E38;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 후원자 혜택 섹션 */
.donation-benefits {
    padding: 80px 0;
    background: white;
}

.donation-benefits h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}

.benefits-content {
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: #5C6E38;
    margin-right: 20px;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* 후원 소식 섹션 */
.donation-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.donation-news h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}

.news-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: background-color 0.3s ease;
    position: relative;
}

.news-header:hover {
    background: #f8f9fa;
}

.news-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    flex: 1;
    margin-right: 20px;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-right: 15px;
    white-space: nowrap;
}

.news-arrow {
    color: #5C6E38;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.news-item.active .news-arrow {
    transform: rotate(180deg);
}

.news-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.news-item.active .news-content {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.news-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.news-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-content strong {
    color: #5C6E38;
    font-weight: 600;
}

.achievement-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #5C6E38;
}

.achievement-summary h4 {
    color: #5C6E38;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievement-summary ul {
    margin: 0;
    padding-left: 20px;
}

.achievement-summary li {
    color: #333;
    font-weight: 500;
}

/* 후원 문의 섹션 */
.donation-contact {
    padding: 80px 0;
    background: #5C6E38;
    color: white;
}

.donation-contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: white;
}

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

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item a {
    color: #FFE4B5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro-content h2,
    .donation-usage h2,
    .donation-methods h2,
    .donation-benefits h2,
    .donation-news h2,
    .donation-contact h2 {
        font-size: 1.6rem;
    }
    
    .news-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-header h3 {
        font-size: 1.1rem;
        margin-right: 0;
    }
    
    .news-date {
        margin-right: 0;
        align-self: flex-end;
        margin-top: -25px;
    }
    
    .news-arrow {
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .news-content {
        padding: 0 20px;
    }
    
    .news-item.active .news-content {
        padding: 0 20px 25px;
    }
    
    .achievement-summary {
        padding: 15px;
        margin: 15px 0;
    }
    
    .usage-grid,
    .methods-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .usage-item,
    .method-item,
    .contact-item {
        padding: 30px 20px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .donation-intro,
    .donation-usage,
    .donation-methods,
    .donation-benefits,
    .donation-news,
    .donation-contact {
        padding: 60px 0;
    }
}