/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #333; line-height: 1.7; overflow-x: hidden; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #1a5276; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.95rem; font-weight: 600; color: #444; transition: color 0.3s; }
.nav a:hover { color: #1a5276; }
.btn-donate { background: #1a5276; color: #fff !important; padding: 10px 24px; border-radius: 25px; transition: background 0.3s; }
.btn-donate:hover { background: #154360; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #1a5276; cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; background: url('image/hero.png') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,82,118,0.85), rgba(21,67,96,0.7)); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; padding: 0 20px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.2rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.15rem; margin-bottom: 35px; opacity: 0.95; font-weight: 300; }
.btn-primary { display: inline-block; background: #e67e22; color: #fff; padding: 14px 36px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: #d35400; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,126,34,0.3); }
.btn-secondary { display: inline-block; border: 2px solid #fff; color: #fff; padding: 12px 34px; border-radius: 30px; font-weight: 600; font-size: 1rem; margin-left: 15px; transition: all 0.3s; }
.btn-secondary:hover { background: #fff; color: #1a5276; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #1a5276; margin-bottom: 15px; }
.divider { width: 60px; height: 4px; background: #e67e22; margin: 0 auto; border-radius: 2px; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a5276; margin-bottom: 15px; margin-top: 20px; }
.about-text h3:first-child { margin-top: 0; }
.about-text p { color: #555; margin-bottom: 10px; }
.stats { display: flex; gap: 30px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: #e67e22; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.85rem; color: #777; text-transform: uppercase; letter-spacing: 1px; }

/* ===== PROGRAMS ===== */
.programs { padding: 100px 0; background: #f8f9fa; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.program-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.program-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.program-card img { width: 100%; height: 220px; object-fit: cover; }
.program-content { padding: 25px; }
.program-content h3 { font-size: 1.15rem; color: #1a5276; margin-bottom: 10px; }
.program-content h3 i { color: #e67e22; margin-right: 8px; }
.program-content p { font-size: 0.95rem; color: #666; }

/* ===== EVENTS ===== */
.events { padding: 100px 0; background: #fff; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.event-card { background: #f8f9fa; border-radius: 12px; padding: 40px 30px; text-align: center; transition: all 0.3s; border: 1px solid #eee; }
.event-card:hover { background: #1a5276; color: #fff; border-color: #1a5276; }
.event-card:hover .event-icon i { color: #e67e22; }
.event-card:hover .event-date, .event-card:hover .event-link { color: #e67e22; }
.event-icon { margin-bottom: 20px; }
.event-icon i { font-size: 2.5rem; color: #1a5276; transition: color 0.3s; }
.event-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.event-card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 15px; }
.event-date { font-weight: 600; color: #e67e22; }
.event-link { font-weight: 600; color: #e67e22; transition: opacity 0.3s; }
.event-link:hover { opacity: 0.8; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #f8f9fa; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a5276; margin-bottom: 15px; }
.contact-info p { color: #555; margin-bottom: 15px; }
.contact-details { margin-top: 25px; }
.contact-details p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: #444; }
.contact-details i { color: #e67e22; margin-top: 4px; min-width: 18px; }
.email-highlight { font-size: 1.1em; font-weight: 700; color: #1a5276; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Open Sans', sans-serif; font-size: 0.95rem; margin-bottom: 15px; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #1a5276; }
.contact-form button { width: 100%; }

/* ===== FOOTER ===== */
.footer { background: #1a2332; color: #ccc; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background: #e67e22; }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 8px; color: #aaa; transition: color 0.3s; }
.footer-col a:hover { color: #e67e22; }
.footer-col .email-highlight { font-size: 1.05em; font-weight: 700; color: #e67e22; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; }
.scroll-top { background: #e67e22; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: all 0.3s; }
.scroll-top:hover { background: #d35400; transform: translateY(-3px); }

/* ===== MODAL ===== */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: #fff; padding: 40px; border-radius: 12px; text-align: center; max-width: 400px; width: 90%; }
.modal-content h3 { font-family: 'Playfair Display', serif; color: #1a5276; margin-bottom: 10px; font-size: 1.5rem; }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: #999; }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; }
.mobile-menu-overlay.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .programs-grid, .events-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: #fff; flex-direction: column; padding: 80px 30px 30px; box-shadow: -5px 0 25px rgba(0,0,0,0.1); transition: right 0.3s; z-index: 1001; }
    .nav.active { right: 0; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .programs-grid, .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-secondary { margin-left: 0; margin-top: 10px; }
    .stats { flex-wrap: wrap; }
}
