/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation Bar --- */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

.logo b { color: #ff9900; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { color: #ff9900; }

/* --- Hero Section --- */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #fffdf2, #ffffff);
    text-align: center;
}

.eyebrow {
    color: #ff9900;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.hero h1 span {
    color: #ff9900;
    position: relative;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto 35px;
}

/* --- Buttons --- */
.btn-primary {
    background: #ffcc00;
    padding: 12px 25px;
    border-radius: 8px;
    color: #000 !important;
}

.btn-large {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
    transition: 0.3s transform;
}

.btn-large:hover {
    transform: translateY(-3px);
}

/* --- Cards & Content --- */
.section { padding: 90px 0; }
.bg-light { background: #f8f9fa; }

.about-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    margin-bottom: 50px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border-bottom: 4px solid #ffcc00;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.card:hover { transform: translateY(-10px); }

.card h3 { margin-bottom: 15px; font-size: 1.2rem; }

/* --- Donation Box --- */
.donate-section { background: #fffdf5; }

.donate-box {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.secure-text { font-size: 0.85rem; color: #888; margin: 10px 0 25px; }

.amount-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-amount {
    flex: 1;
    padding: 14px;
    border: 2px solid #f0f0f0;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s;
}

.btn-amount:hover, .btn-amount:focus {
    border-color: #ffcc00;
    background: #fffdf0;
}

#donateForm input {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

#donateForm input:focus { border-color: #ffcc00; }

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: #333; }

/* --- Policy Box --- */
.policy-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}
.policy-card h2 { margin-bottom: 20px; }
.policy-card hr { border: 0; border-top: 1px solid #eee; margin-bottom: 25px; }
.policy-card p { margin-bottom: 15px; font-size: 0.95rem; }

/* --- Footer --- */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 0;
    text-align: center;
}

footer p { margin-bottom: 10px; }

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .flex-nav { flex-direction: column; }
    .nav-links { margin-top: 20px; }
    .nav-links li { margin: 0 10px; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 80px 0 50px; }
    .donate-box { padding: 30px 20px; }
}