body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fef6e4;
  color: #001858;
}

header {
  background: #f582ae;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 1.3em;
  color: white;
}

nav {
  display: flex;
  gap: 10px;
}

.nav-button {
  background-color: #ffb3c6;
  color: #001858;
  border: none;
  padding: 0.5em 1em;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-button:hover {
  background-color: #ffc8dd;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 2em;
  }
  
  .gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 150px;
  }
  
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f582ae;
  padding: 1em;
  z-index: 1;
}

.mobile-menu a {
  margin: 5px 0;
}

.show-menu {
  display: flex;
}

.container {
  padding: 2em;
}

footer {
  background: #f582ae;
  text-align: center;
  padding: 1em;
  color: white;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}
