@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;600;700;800&display=swap');

:root {
    --primary: #27ae60; /* RLP Style Green */
    --secondary: #e67e22; /* Desert Saffron/Orange */
    --dark: #2c3e50;
    --light: #f4f7f6;
    --white: #ffffff;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Mukta', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--light); color: var(--text); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Navbar */
.navbar { background-color: var(--white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo h2 { color: var(--primary); font-size: 2rem; }
.logo span { color: var(--secondary); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-donate { background-color: var(--secondary); color: var(--white); padding: 8px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; }

/* Hero */
.hero { background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://www.transparenttextures.com/patterns/cubes.png'); color: var(--white); padding: 100px 0; text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero span { color: var(--secondary); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px auto; line-height: 1.6; }
.btn-primary, .btn-secondary { padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; margin: 5px; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); }

/* Title Global */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--dark); }
.section-title span { color: var(--primary); }

/* Vision Grid */
.vision-section { padding: 80px 0; background-color: var(--white); }
.vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.vision-card { background: var(--light); padding: 30px; border-radius: 8px; text-align: center; border-bottom: 4px solid transparent; transition: 0.3s; }
.vision-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--secondary); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.vision-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

/* Leader Message */
.leader-message { padding: 80px 0; background-color: #e9ecef; }
.leader-container { display: flex; align-items: center; gap: 50px; }
.leader-img img { width: 100%; max-width: 400px; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.leader-text { flex: 1; }
.leader-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.leader-text span { color: var(--primary); }
.leader-text p { margin-bottom: 15px; font-size: 1.1rem; line-height: 1.8; color: #555; }
.leader-name { font-size: 1.5rem; color: var(--dark); margin-top: 20px; }
.leader-post { color: var(--secondary); font-weight: bold; }

/* Core Values */
.core-values { padding: 60px 0; text-align: center; background-color: var(--white); }
.values-flex { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.value-badge { background-color: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; }

/* Events */
.events-section { padding: 50px 0; }
.event-card { display: flex; align-items: center; justify-content: space-between; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 5px solid var(--secondary); }
.date-box { text-align: center; background: var(--light); padding: 10px 20px; border-radius: 5px; }
.date-box .day { display: block; font-size: 2rem; font-weight: bold; color: var(--primary); }
.event-details flex: 1; margin: 0 20px;

/* FAQ Accordion (No JS Needed) */
.faq-section { padding: 80px 0; background-color: var(--white); }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
details { background: var(--light); margin-bottom: 15px; border-radius: 5px; overflow: hidden; }
summary { padding: 15px 20px; font-size: 1.2rem; font-weight: bold; cursor: pointer; background-color: #e2e8f0; list-style: none; outline: none; }
summary::-webkit-details-marker { display: none; } /* Safari Fix */
details p { padding: 15px 20px; color: #555; line-height: 1.6; }

/* Footer */
footer { background-color: var(--dark); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-about h2 span { color: var(--secondary); }
.newsletter { margin-top: 20px; display: flex; }
.newsletter input { padding: 10px; border: none; border-radius: 5px 0 0 5px; width: 70%; outline: none; }
.newsletter button { padding: 10px; border: none; background: var(--secondary); color: var(--white); border-radius: 0 5px 5px 0; cursor: pointer; font-weight: bold; }
.footer-links ul { list-style: none; }
.footer-links a { color: #ccc; text-decoration: none; line-height: 2; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact p { margin-bottom: 10px; color: #ccc; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #aaa; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .leader-container { flex-direction: column; text-align: center; }
    .event-card { flex-direction: column; gap: 15px; text-align: center; }
}