/* Base styles shared across all pages */
body {
  background-color: #2f2f2f;
  color: #d3d3d3;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #1f1f1f;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #d3d3d3;
  font-size: 1.5em;
  cursor: pointer;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  transition: max-height 0.5s ease;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #d3d3d3;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00ff00;
}

footer {
  background-color: #1f1f1f;
  padding: 20px 0;
  text-align: center;
}

footer img.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

footer p {
  margin: 5px 0;
}

footer .highlight {
  color: #00ff00;
}

@media only screen and (max-width: 600px) {
  #menu-toggle {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    background-color: #1f1f1f;
    width: 100%;
    max-height: 0;
    overflow: hidden;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul.show {
    max-height: 400px;
  }
}
