.homepage-wrapper {
    font-family: sans-serif;
    color: #2d3748;
}

/* Hero */
.homepage-hero {
    position: relative;
    height:85vh;
    background: url('/photos/hero-image/2.jpeg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.homepage-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(198, 95, 189, 0.6);
}
.homepage-nav {
    position: absolute;
    top: 1.5rem;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    z-index: 10;
    color: #facc15;
    font-weight: 600;
}
.homepage-nav li a{
     color: #facc15;
}
.homepage-nav li a:hover {
    color: #f472b6;
}
.homepage-hero-content {
    position: relative;
    z-index: 20;
}
.homepage-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}
.homepage-hero-content p {
    font-size: 1.125rem;
    margin: 1rem 0;
}
.homepage-hero-content button {
     background-color: #fa00cc;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
.homepage-hero-content button:hover{
    cursor: pointer;
    background-color: #facc15;
}
/* About */
.homepage-about {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}
.homepage-about h2 {
    color: #db2777;
    font-size: 2rem;
    font-weight: bold;
}
.homepage-about button {
    background-color: #fa00cc;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
.homepage-about button:hover{
    cursor: pointer;
    background-color: #facc15;
}

/* Programs */
.homepage-programs {
    padding: 4rem 1rem;
    background: #f7fafc;
    text-align: center;
}
.homepage-program-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.homepage-program-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px #e2e8f0;
}
.homepage-program-card button {
    background-color: #fa00cc;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
.homepage-program-card button:hover{
    cursor: pointer;
    background-color: #facc15;
}
.homepage-program-card h3 {
    color: #db2777;
}

/* Impact */
.homepage-impact {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}
.homepage-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.homepage-stat-item {
    background: #d154b2;
    padding: 1rem;
    border-radius: 0.5rem;
}

/* Testimonials */
.homepage-testimonials {
    padding: 4rem 1rem;
    background: #f7fafc;
}
.homepage-testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.homepage-testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px #e2e8f0;
}

/* News */
.homepage-news {
    padding: 4rem 1rem;
    background: white;
}
.homepage-news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.homepage-news-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px #e2e8f0;
}
.homepage-news-card a{
    background-color: #fa00cc;
    color: #fff;
    padding: 7px 9px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
}
.homepage-news-card a:hover{
    cursor: pointer;
    background-color: #facc15;
}

/* Volunteer */
.homepage-volunteer {
    padding: 4rem 1rem;
    background: #9057706b;
    color: white;
    text-align: center;
}
.homepage-volunteer button{
    background-color: #fa00cc;
    color: #fff;
    padding: 8px 13px;
    text-decoration: none;
    font-weight: bold;
}

.homepage-volunteer button:hover{
    cursor: pointer;
    background-color: #facc15;
}


/* FAQ */
.homepage-faq {
    padding: 4rem 1rem;
    background: #f7fafc;
}
.homepage-faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
