/* charity-gold Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Crimson Text', serif; color: #2d2d2d; background: #fffef5; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: #b8860b; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #daa520; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: #3d2b1f; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: #3d2b1f; }
.logo i { color: #b8860b; font-size: 1.4rem; }
.nav { display: flex; gap: 30px; }
.nav a { color: #2d2d2d; font-weight: 500; font-size: 0.95rem; position: relative; }
.nav a:hover { color: #b8860b; }
.nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #b8860b; transition: width 0.3s ease; }
.nav a:hover::after { width: 100%; }
.donate-btn { background: #b8860b; color: white; border: none; padding: 10px 24px; border-radius: 12px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.donate-btn:hover { background: #daa520; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #3d2b1f; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; margin-top: 70px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,134,11,0.88), rgba(61,43,31,0.78)); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-text { max-width: 650px; color: white; }
.hero-text h1 { font-size: 3.2rem; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.tagline { font-size: 1.25rem; opacity: 0.9; margin-bottom: 35px; line-height: 1.6; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: white; color: #b8860b; padding: 14px 32px; border-radius: 12px; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: #3d2b1f; }

/* About */
.about { padding: 100px 0; }
.about h2 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.about-content h3 { color: #b8860b; font-size: 1.3rem; margin: 25px 0 10px; }
.about-content p { margin-bottom: 15px; font-size: 1.05rem; }

/* Events */
.events { padding: 100px 0; background: #ffd70022; }
.events h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.event-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.event-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-info { padding: 25px; }
.event-info h3 { color: #b8860b; margin-bottom: 12px; font-size: 1.2rem; }
.event-info p { font-size: 0.95rem; color: #666; }

/* Contact */
.contact { padding: 100px 0; }
.contact h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-icon { width: 45px; height: 45px; background: #b8860b15; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b8860b; flex-shrink: 0; }
.info-item h4 { color: #3d2b1f; margin-bottom: 4px; }
.info-item p { color: #666; font-size: 0.95rem; }
.info-item a { color: #b8860b; }
.contact-form form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 14px 18px; border: 2px solid #e5e5e5; border-radius: 12px; font-family: 'Crimson Text', serif; font-size: 1rem; transition: border-color 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #b8860b; }
.submit-btn { background: #b8860b; color: white; border: none; padding: 14px 30px; border-radius: 12px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.submit-btn:hover { background: #daa520; transform: translateY(-2px); }

/* Footer */
.footer { background: #3d2b1f; color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col p { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #ffd700; }
.footer-col i { margin-right: 8px; color: #ffd700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; }
.scroll-top { background: #b8860b; color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.scroll-top:hover { background: #daa520; transform: translateY(-3px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: white; z-index: 2000; padding: 80px 30px 30px; transition: right 0.3s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a { font-size: 1.2rem; color: #3d2b1f; font-weight: 500; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; color: #3d2b1f; cursor: pointer; }

/* Popup */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 3000; display: none; align-items: center; justify-content: center; }
.popup-overlay.active { display: flex; }
.popup-content { background: white; padding: 50px; border-radius: 12px; text-align: center; max-width: 400px; }
.popup-icon { font-size: 3rem; color: #b8860b; margin-bottom: 20px; }
.popup-content h3 { margin-bottom: 15px; }
.popup-close { background: #b8860b; color: white; border: none; padding: 10px 30px; border-radius: 12px; cursor: pointer; margin-top: 20px; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
    .nav, .donate-btn { display: none; }
    .menu-toggle { display: block; }
    .hero-text h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .events-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-text { animation: fadeInUp 0.8s ease-out; }
.event-card { animation: fadeInUp 0.6s ease-out; }
