@charset "utf-8";
/* Base styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EDE2CA;
  padding: 10px 20px;
  position: relative;
}

nav a {
  color: black;
  margin-left: 15px;
  text-decoration: none;
}

.logo img {
  max-width: 100px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #EDE2CA;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav a {
    margin: 10px 0;
  }
}

