* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--light);
  font-family: "Funnel Sans";
}

body {
  background: var(--b-a10);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 1fr 180px;
  min-height: 100dvh;
  width: 100dvw;
  max-width: 100dvw;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--t-a0);

  & .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    & img {
      width: 60px;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 50%;
    }

    & span {
      font-size: 36px;
      vertical-align: middle;
      text-shadow: 0 0 5px var(--p-a50);
      text-transform: uppercase;
    }
  }

  & nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;

    & a {
      text-decoration: none;
      text-transform: uppercase;
      font-size: 24px;
      transition: all 300ms ease;

      &.selected {
        color: var(--p-a10);
      }

      &:hover {
        color: var(--p-a10);
        text-shadow: 0 0 10px var(--light);
      }
    }
  }
}

footer {
  background: var(--b-a0);
  padding: 20px;
  text-align: center;
  color: var(--light);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-container p {
  margin: 5px 0;
}

.footer-disclaimer {
  font-size: 14px;
  color: #ccc;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer-nav a {
  color: var(--light);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--p-a10);
}

.footer-social a {
  margin: 0 5px;
  display: inline-block;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1563206767-5b18f218e8de?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  padding: 4rem 2rem;
  text-align: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  & h1 {
    font-size: 42px;
  }

  & p {
    font-size: 24px;
    text-shadow: 0 0 10px var(--p-a50);
  }
}

.section {
  padding: 4rem 2rem;

  & h2 {
    font-size: 32px;
    text-shadow: 0 0 10px #FFFFFF40;
  }

  & h3 {
    font-size: 28px;
  }

  & p {
    font-size: 22px;

    & span {
      font-weight: 600;
      color: var(--p-a10);
    }
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.card {
  background: var(--b-a10);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--p-a0);
}

h1,
h2,
h3 {
  color: var(--p-a50);
  margin-bottom: 1rem;
}

.button {
  background: var(--p-a0);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: 0.3s;
}

.button:hover {
  background: var(--p-a10);
}

.team-member {
  text-align: center;
  padding: 1rem;
}

.map {
  height: 400px;
  background: var(--b-a20);
  border-radius: 12px;
  margin-top: 2rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--p-a50);
}

.stat p {
  font-size: 1.2rem;
}
