/* :root {
  --primary: #ba1c50;
  --light: #ffffff;
  --gray: #f6f6f6;
  --text-dark: #333333;
  --text-light: #666666;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light);
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

 h2, h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
}

/* Hero Section */
/* .hero {
background-image: url('./lina\ site.jpg');
background-repeat: no-repeat;
background-size:cover;
  background-color: var(--primary);
  color: var(--light);
  padding: 6rem 2rem;
}

.hero .btn-light {
  background-color: var(--light);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s;
}

.hero .btn-light:hover {
  background-color: #f2f2f2;
}

/* About Section 
.about {
  background-color: var(--light);
} */

/* Programs Section */
/* .programs {
  background-color: var(--gray);
}

.program-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .program-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
} */

/* Get Involved Section 
.get-involved {
  background-color: var(--light);
}

.get-involved .btn-dark {
  background-color: var(--primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
}

.get-involved .btn-dark:hover {
  background-color: #941340;
}

/* Contact Section 
.contact {
  background-color: var(--gray);
}

.email-link {
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}*/





/* Animation 
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Section 
.gallery {
  background-color: var(--light);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
 */



 

 /* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

h1 {
  color: #ffffff;
}
h2{
  color: #ba1c50;
}

a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(104, 1, 94, 0.815), rgba(163, 27, 134, 0.9)),
              url('./outreach\ banner.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 600px;
  padding: 20px;
}

.gallery-button {
  background-color: #fff;
  color: #9b29a5;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-button:hover {
  background-color: #ba1c50;
  color: #fff;
  transform: scale(1.05);
}

.return-button {
  background-color: #fff;
  color: #ba1c50;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.return-button:hover {
  background-color: #ba1c50;
  color: #fff;
  transform: scale(1.05);
}




/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Footer */
.footer {
  background: #880588;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.5s ease-in;
}

.slide-up {
  animation: slideUp 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
