/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.langbar {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
  background: #0f172a;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* MAIN CONTENT */
.container {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #0f172a;
}


.team-card h3 {
  margin-top: 1rem;
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    left: 0px;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    display: none;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding-left: 10px;
  }
}
