* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
  background: #0f0f0f;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0b0b0b;
  border-bottom: 1px solid #1f1f1f;
  z-index: 999;
}

.navbar_container {
  max-width: min(1100px, 92%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

#navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#navbar-logo img {
  width: 40px;
  height: 40px;
}

.logo_text {
  color: rgb(0, 255, 0);
  font-weight: 700;
  font-size: 1.4rem;
}

.navbar_menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.navbar_links {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
}

.navbar_links:hover {
  color: rgb(0, 255, 0);
}

/* MOBILE MENU */

.menu_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu_toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

/* ABOUT */

.about_container {
  max-width: min(900px, 92%);
  margin: auto;
  padding: 80px 20px;
}

.about_label {
  text-align: center;
  font-size: 1.8rem;
  color: rgb(0, 255, 0);
  margin-bottom: 40px;
}

/* GRID */

.team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */

.team_card {
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* IMAGE */

.team_card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* NAME */

.team_card h2 {
  font-size: 1rem;
  color: rgb(0, 255, 0);
  margin-bottom: 8px;
}

/* TEXT */

.team_card p {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
}

/* FOOTER */

.footer {
  border-top: 1px solid #1f1f1f;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer_container {
  max-width: min(1100px, 92%);
  margin: auto;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer_title {
  font-size: 1rem;
  font-weight: 600;
}

.footer_socials {
  display: flex;
  gap: 10px;
}

.footer_socials img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.footer_socials img:hover {
  opacity: 1;
}

.footer_links {
  display: flex;
  gap: 20px;
}

.footer_links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer_links a:hover {
  color: white;
}

/* MOBILE */

@media (max-width: 768px) {
  .menu_toggle {
    display: flex;
  }
  .navbar_menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b0b0b;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar_menu.active {
    max-height: 100vh;
    padding: 20px 0;
  }
  .navbar_item {
    padding: 15px 0;
  }

  .footer_top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
