/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLORS */
:root {
  --purple: #7b2cbf;
  --pink: #ff4da6;
  --white: #fff;
}

/* GLOBAL */
body {
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: black;
}

nav a:hover {
  color: var(--pink);
}

/* HERO */
.team-hero {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* GROUP PHOTO */
.group-section {
  text-align: center;
  padding: 50px 20px;
}

.group-photo {
  width: 80%;
  max-width: 600px;
  border-radius: 15px;
  margin-top: 20px;
}

/* TEAM */
.team {
  padding: 60px 20px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.member {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.member h3 {
  margin-top: 10px;
  color: var(--purple);
}

/* FOOTER */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .group-photo {
    width: 100%;
  }
}