/* Reset */
body, h1, h2, h3, p, div, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
}

/* Hero Image */
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.mission h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Team Section */
.team {
    background: #f5f5f5;
    padding: 50px 20px;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.avatar {
    width: 100px;
    height: 100px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.member h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member p {
    color: #555;
    font-size: 0.95rem;
}

.hero {
  position: relative;
  height: 80vh;
  background: url('media/bkgd.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-title {
  font-size: 4rem;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}