html,
body {
  min-height: 100dvh;
  min-width: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #f9f7f5;
  background: #000000;
  text-transform: uppercase;
}
main.background-image {
  position: relative;
  background-image: url("./public/valivan_hero.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
}
main.background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000e3, #66272730);
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  padding-top: 0;
  text-align: center;
  line-height: 1.5;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
li {
  font-size: 1.2rem;
}
.places {
  z-index: 1;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.social-footer {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(249, 247, 245, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f9f7f5;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  color: #f2c9b8;
}
.social-link i {
  font-size: 1.25rem;
}
.social-link--site {
  padding-left: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
img {
  position: relative;
  z-index: 1;
  width: 300px;
}
@media (max-width: 600px) {
  main .content {
    padding: 0;
  }
  h1 {
    margin: 0;
    font-size: 10vw;
  }
  h2 {
    margin: 0;
    padding-top: 0.5rem !important;
    font-size: 8vw;
  }
  h3 {
    margin: 0;
    padding-top: 1rem !important;
    font-size: 6vw;
  }
  main {
    justify-content: center;
  }
  .places {
    flex-direction: column;
    gap: 0rem;
    text-align: center;
  }
  .social-footer {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 1.25rem;
    margin-bottom: 25px;
  }
  .places h3 {
    padding-top: 1rem !important;
  }
  img {
    width: 80%;
    margin-top: 0 !important;
  }
  ul {
    padding: 0;
    margin: 0 !important;
  }
  ul > li {
    margin-top: 2px;
  }
}

ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

li {
  list-style-type: none;
  background-color: #00000073;
  padding: 10px;
  border-radius: 5px;
}

.chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  transform: rotate(315deg); /* Right-pointing chevron */
  margin-left: 10px;
  border-color: white;
}
