/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
	display: flex;
    flex-direction: column;
    min-height: 100vh;
	background-color: #F5EFE6;
    color: #333;
}
/* HERO */
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    animation: fadeInDown 1s ease;
}

.about-hero p {
    color: white;
    margin-top: 10px;
    animation: fadeInUp 1.2s ease;
}


/* WHO WE ARE */
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B3A0E;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-tags span {
    display: inline-block;
    margin-right: 10px;
    background: #F5EFE6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.about-tags i {
    color: #F05A3A;
    margin-right: 5px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}


/* MISSION */
.mission {
    padding: 60px 20px;
    background: #F5EFE6;
}

.mission-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-box {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.mission-box i {
    font-size: 30px;
    color: #F05A3A;
    margin-bottom: 10px;
}


/* VALUES */
.values {
    padding: 80px 20px;
    text-align: center;
}

.values h2 {
    margin-bottom: 40px;
    color: #8B3A0E;
}

.values-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background: #F5EFE6;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    color: #F05A3A;
    font-size: 24px;
    margin-bottom: 10px;
}


/* CTA */
.about-cta {
    padding: 60px 20px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #F05A3A;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}


/* ANIMATIONS */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.footer {
    background: #8B3A0E;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a i {
    margin-right: 8px;
}

.footer-section a:hover {
    color: #F05A3A;
}

/* 🔥 Donate Button */
.donate-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #00c896;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #F05A3A;
	color: #000;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #F05A3A;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ffffff33;
    padding-top: 15px;
    font-size: 13px;
}
.footer-logo {
    height: 45px;
    margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
button, .btn {
    background-color: #F05A3A;
    color: white;
}

button:hover {
    background-color: #d94e30;
}
/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background-color: #F5EFE6; /* warm cream from your logo */
    padding: 15px 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	animation: fadeIn 0.8s ease forwards;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar a {
    color: #000; /* black text */
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}
.navbar a:hover {
    color: #F05A3A;
}
.logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00c896; /* NGO green accent */
}
.logo img:hover {
    transform: scale(1.05);
    transition: 0.3s;
	color: #F05A3A;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
}
/* Align logo + text */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo */
.nav-brand img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Text container */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Main name */
.brand-main {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

/* Sub name */
.brand-sub {
    font-size: 13px;
    color: #F05A3A; /* your coral accent */
    font-weight: 500;
}
.nav-brand:hover {
    transform: translateY(-1px);
    transition: 0.3s;
}

/* FOUNDER SECTION */
.founder {
    padding: 80px 20px;
    background: #F5EFE6;
}

.founder-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.founder-image img {
     width: 180px; /* slightly smaller */
    height: 280px;
    border-radius: 90%;
    object-fit: cover;
	margin-left: 280px;
}

/* TEXT */
.founder-text h2 {
    color: #8B3A0E;
    margin-bottom: 10px;
}

.founder-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-role {
    color: #F05A3A;
    margin-bottom: 15px;
    font-weight: bold;
}

.founder-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Button */
.modal-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #0d6efd; /* match your brand */
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.popup-box h2 {
  margin-bottom: 15px;
}

.popup-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.popup-box button {
  background: #e50914;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
/* Board Section */
.board-section {
    text-align: center;
    padding: 40px 20px;
}

.board-section h2 {
    margin-bottom: 30px;
}

/* Container */
.board-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Cards */
.board-card {
    max-width: 280px;
    text-align: center;
}

.board-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.role {
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}