/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}
/* LOGO */


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}


/* TOP BAR */
.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 6%;
    background:rgb(237, 232, 224);
    color:black;
    flex-wrap:wrap;
    top: 0;
}
.contact-info p{
    margin:0;
    font-size:14px;
    line-height:1.5;
}
.social-icons img{
    width: 20px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.social-icons a{
    color:white;
    font-size:20px;
    transition:0.3s;
    display: inline-flex;
    text-decoration: none;
}

.social-icons a:hover{
    color:#D4AF37;
    transform:translateY(-3px);
}
/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background:#5b2c83; 
 
  left: 0;
  right: 0;
  
  padding: 15px 6%;

}


/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--purple);
}
/*donatebtn*/

 .donateBtn {
  background: var(rgb(20, 18, 18)
  );
  color: var(--black);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(31, 30, 32, 0.25);
} 

/* Section Styling */
.programs-section {
  padding: 80px 90px;
  text-align: center;
  padding-top: 10px;
}

.programs-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #4b2c5e; /* purple foundation tone */
}
.image-placeholder{width: 100%;
height: 150px;
border-radius: 10px;
overflow: hidden;
margin-bottom: 15px;

}
.image-placeholder img{width: 100%;
height: 100%;
object-fit: cover;
display: block;}

.intro {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

/* Grid Layout */
.programs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}






/* Text */
.program-card h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
}
@media (max-width:900px){

.story-container,
.mv-container{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:40px;
}

/* MOBILE NAV */

.nav-links{
    position:absolute;
    top:100px;
    right:0;
    background:#4a094a;
    width:220px;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.nav-links a{
    margin:10px 0;
}

.nav-links.active{
    display:flex;
}

.hamburger{
    display:block;
}

}