/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.main-header {
    background: #000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ff9800;
}

nav a.active {
    border-bottom: 2px solid #ff9800;
}

/* =========================
   HOME HERO (SOLO HOME)
========================= */

.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("../img/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* =========================
   ABOUT HERO (SOLO ABOUT)
========================= */

.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../img/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .overlay {
    color: #fff;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-section {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 20px;
}

.highlight-box {
    background: #fff8e1;
    padding: 25px;
    border-left: 6px solid #ff9800;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* =========================
   FOUNDERS
========================= */

.founders-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.founder-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-donate {
    display: inline-block;
    padding: 12px 30px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-donate:hover {
    background: #e68900;
}

/* =========================
   DONATIONS
========================= */

.donations-section {
    padding: 80px 20px;
    text-align: center;
}

.donation-box {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: #fff8e1;
    border-radius: 15px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 32px;
    }
}
