/* Theme: Sunset Orange */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; background: #FFF3E0; line-height: 1.7; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all 0.3s; }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-text { font-size: 1.1rem; color: #BF360C; font-weight: 700; line-height: 1.3; max-width: 400px; }
.nav-desktop { display: flex; align-items: center; gap: 25px; }
.nav-desktop a { text-decoration: none; color: #555; font-weight: 500; transition: color 0.3s; }
.nav-desktop a:hover { color: #BF360C; }
.btn-donate { background: #BF360C !important; color: white !important; padding: 10px 24px; border-radius: 25px; font-weight: 600; }
.btn-donate:hover { background: #FF7043 !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: #BF360C; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; }
.mobile-menu.active { display: block; }
.mobile-menu-content { position: absolute; right: 0; top: 0; bottom: 0; width: 280px; background: white; padding: 60px 30px 30px; }
.close-menu { position: absolute; top: 15px; right: 20px; font-size: 30px; background: none; border: none; cursor: pointer; color: #333; }
.mobile-link { display: block; padding: 15px 0; text-decoration: none; color: #333; font-size: 1.1rem; border-bottom: 1px solid #eee; }
.mobile-donate { display: inline-block; margin-top: 20px; text-align: center; width: 100%; }

/* Hero */
.hero { position: relative; height: 85vh; min-height: 500px; 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(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px; color: white; }
.hero-title { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: #BF360C; color: white; border-color: #BF360C; }
.btn-primary:hover { background: #FF7043; border-color: #FF7043; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: white; border-color: white; }
.btn-secondary:hover { background: white; color: #BF360C; }
.btn-outline { background: transparent; color: #BF360C; border-color: #BF360C; padding: 10px 24px; }
.btn-outline:hover { background: #BF360C; color: white; }
.btn-full { width: 100%; text-align: center; }

/* Sections */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.2rem; color: #BF360C; margin-bottom: 30px; font-weight: 700; }
.section-title.center { text-align: center; }
.subsection-title { font-size: 1.3rem; color: #FF7043; margin: 25px 0 10px; font-weight: 600; }

/* About */
.about { padding: 80px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 15px; color: #555; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Events */
.events { padding: 80px 0; background: #FBE9E7; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.event-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.event-card:hover { transform: translateY(-5px); }
.event-card img { width: 100%; height: 200px; object-fit: cover; }
.event-info { padding: 25px; }
.event-info h3 { color: #BF360C; margin-bottom: 10px; font-size: 1.2rem; }
.event-info p { color: #666; margin-bottom: 15px; font-size: 0.95rem; }
.donate-section { text-align: center; margin-top: 60px; padding: 40px; background: white; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.donate-section h3 { color: #BF360C; font-size: 1.5rem; margin-bottom: 15px; }
.donate-section p { color: #666; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer { background: #1a1a2e; color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col p { margin-bottom: 10px; font-size: 0.95rem; }
.footer-address { font-style: italic; }
.footer-email { margin-top: 10px; }
.footer-email a { color: #FF7043; text-decoration: none; font-size: 1.25rem; font-weight: 600; }
.footer-email a:hover { color: white; }
.ein-number { font-size: 1.1rem; font-weight: 600; color: white; margin: 10px 0; }
.footer-link { display: block; color: #aaa; text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.scroll-top { background: #BF360C; color: white; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.scroll-top:hover { background: #FF7043; transform: translateY(-3px); }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 3000; display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: white; border-radius: 15px; padding: 40px; max-width: 500px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 28px; background: none; border: none; cursor: pointer; color: #999; }
.modal-content h2 { color: #BF360C; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #555; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #BF360C; }
.thank-you { text-align: center; }
.thank-you-icon { width: 70px; height: 70px; border-radius: 50%; background: #BF360C; color: white; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 2rem; }
    .hero { height: 70vh; }
    .about-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo-text { font-size: 0.9rem; max-width: 250px; }
}
