/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #1f2937;
    overflow-x: hidden;
    padding-top: 70px;
}
a { text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #047857;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}
.navbar-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.n-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.navbar-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar-links a:hover,
.navbar-links a.active {
    background-color: #fff;
    color: #047857;
    font-weight: 600;
    padding: 3px;
    border-radius: 6px;
}
.btn-login, .btn-logout {
    background: #00cc00;
    color: #047857;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-login:hover {
    background: #bbf7d0;
}
.btn-logout {
    background: #dc2626;
    color: #fff;
}
.btn-logout:hover {
    background: #b91c1c;
}

.footer h4 {
    font-size: 1.2rem;
    color: #00cc00;
    margin-bottom: 10px;
}

.footer-about h4, .footer-links h4, .footer-social h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(4, 120, 87, 0.8), rgba(4, 120, 87, 0.8)),
                url('/img/about.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons a {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}
.btn-primary {
    background: #fff;
    color: #047857;
}
.btn-primary:hover {
    background: #bbf7d0;
}
.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== MAIN ===== */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #065f46;
    color: white;
    padding-top: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem 2rem;
}
.footer-about h4,
.footer-links h4,
.footer-social h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links a {
    color: #ccc;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #bbf7d0;
}
.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}
.footer-social img {
    width: 24px;
    height: 24px;
    filter: brightness(1);
    transition: opacity 0.3s;
}
.footer-social img:hover {
    opacity: 0.7;
}
.footer-bottom {
    text-align: center;
    padding: 1rem;
    background: #064e3b;
}

.footer-links a {
    color: #ccc;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #065f46;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    .navbar-links.show {
        display: flex;
    }
}

/* ===== ZAKAT / SADAQAH SECTION ===== */
.zakat-section {
    background: #f1fdf7;
    padding: 3rem 1rem;
    text-align: center;
}
.zakat-content {
    max-width: 700px;
    margin: 0 auto;
}
.zakat-content h2 {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.btn-zakat {
    background: #047857;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}
.btn-zakat:hover {
    background: #065f46;
}

.you {
    background-color: #00cc00;
}

.you:hover, .you:focus {
    background-color: #fff;
}


