* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.banner {
  background: url('banner-bg.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo img {
  margin-top: 10px;
  width: 400px;
  height: auto;
  padding: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 3rem;
  display:inline-flex;
  float: left;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #880588;
}


.content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 15px;
  margin-top: auto;
}

.btn {
  background-color: #880588; /* Pink-purple from logo */
  color: #fff;
  padding: 12px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #880588;
}


.aims-objectives-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.content-box {
  flex: 1 1 45%;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.content-box h2 {
  font-size: 30px;
  color: #880588;
  margin-bottom: 15px;
  border-bottom: 2px solid #880588;
  padding-bottom: 5px;
  display: flex;
  justify-items: right;
  align-items: center;
  gap: 10px;
}

.content-box ul {
  list-style: none;
  padding-left: 0;
}

 /* new css */

 .aims-objectives-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.content-box {
  flex: 1 1 45%;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}


.content-box ul {
  list-style: none;
  padding-left: 0;
}

.content-box li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
  font-size: 30px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.content-box li i {
  color: #880588;
  min-width: 20px;
  font-size: 1rem;
  margin-top: 4px;
}

.content-box p {
  font-size: 30px;
  line-height: 1.7;
  color: #444;
}


/* General Section Styling */
.aims-objectives-section, .team-section {
  padding: 4rem 2rem;
  background: #fefefe;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.content-box {
  flex: 1 1 45%;
  background: #fff;
  border-left: 6px solid #880588;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.content-box:hover {
  transform: translateY(-5px);
}
.content-box h2 {
  color: #880588;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.content-box ul {
  padding-left: 1rem;
  list-style-type: disc;
}
.content-box li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Mission Box Full Width */
.content-box.full-width {
  flex: 1 1 100%;
}

/* TEAM SECTION */
.team-section {
  padding: 4rem 2rem;
  background: #fff6f9;
  text-align: center;
}
.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #880588;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: scale(1.03);
}
.team-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.member-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #880588;
}
.member-info p {
  font-size: 1rem;
  margin: 0.3rem 0 0.8rem;
  color: #555;
}
.social-links a {
  margin: 0 0.4rem;
  color: #880588;
  font-size: 1rem;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #333;
}

/* TEAM GRID LAYOUT */
.team-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Menstrual Styling */
.menstrual-education-section {
  background: #fff0f5;
  padding: 4rem 2rem;
  color: #333;
  border-top: 6px solid #880588;
}
.menstrual-education-section h2 {
  color: #880588;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.menstrual-education-section .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.menstrual-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.stage {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.stage:hover {
  transform: translateY(-5px);
}
.stage h3 {
  color: #880588;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.stage p {
  font-size: 1rem;
  line-height: 1.6;
}

.management-tips h3 {
  color: #880588;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}
.management-tips ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.2rem;
}
.management-tips li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.diagram-container {
  text-align: center;
  margin: 2rem 0;
}
.cycle-diagram {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.caption {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #666;
  font-style: italic;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .content-box {
    flex: 1 1 100%;
  }
  .team-photo img {
    height: 220px;
  }



  /* Aims & Objectives Section */
  .aims-objectives-section {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .content-box,
  .content-box.full-width {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .content-box h2 {
    font-size: 1.4rem;
  }

  .content-box ul {
    padding-left: 1rem;
  }

  /* Team Section */
  .team-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .team-photo img {
    height: 220px;
  }

  .member-info h3 {
    font-size: 1.1rem;
  }

  .member-info p {
    font-size: 0.95rem;
  }

  .social-links a {
    font-size: 0.95rem;
  }


 
  .banner {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
  }

  .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
  }

  .content h1 {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

.donate-button {
  background-color: #880588;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.donate-button:hover {
  background-color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links a {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }

  .donate-button {
    width: 80%;
    max-width: 200px;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .donate-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* donate styling */

.donate-section {
  background-color: #fff7f9;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.donate-container {
  max-width: 700px;
  margin: 0 auto;
}

.donate-section h2 {
  color: #ba1c50;
  font-size: 2rem;
  margin-bottom: 20px;
}

.donate-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.account-block {
  background-color: #f3f3f3;
  border-left: 5px solid #ba1c50;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
  border-radius: 8px;
}

.account-block h3 {
  color: #ba1c50;
  margin-bottom: 10px;
}

.account-block p {
  margin: 6px 0;
  font-size: 1rem;
}

.thank-you {
  margin-top: 30px;
  font-style: italic;
  color: #555;
}


@media (max-width: 600px) {
  .account-block {
    padding: 15px;
  }

  .donate-section h2 {
    font-size: 1.5rem;
  }

  .donate-intro, .account-block p {
    font-size: 0.95rem;
  }
}