header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #00008B;
  text-decoration: none;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: #00008B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: #4169E1;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: black;
}

.logo, .nav-link {
  color: black;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.background {
  height: 100vh;
  width: 100%;
  background-image: url('images/fiona-background-full-screen-100.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (max-width: 1028px) {
  header {
    padding: 1rem 2rem;
  }

  .home-icon {
    display: block;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 2rem;
    box-sizing: border-box;
  }

  .nav-list.show {
    display: flex;
  }

  .nav-list li {
    width: auto;
    text-align: right;
  }

  .nav-link {
    padding: 0.5rem 0;
  }

}
