* {
  font-family: "aria-text-g2", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  height: auto;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-weight: normal;
}

*:focus-visible {
  outline: 2px solid #937500;
  outline-offset: 2px;
}

h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

html {
  height: 100%;
  background-color: #fefdf9;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

header {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
header > a {
  text-decoration: none;
}
header > a:hover {
  text-decoration: none;
}
header #flowers {
  width: 100%;
  max-width: 45rem;
}
header nav {
  width: 100%;
}
header nav .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 auto;
  z-index: 10;
}
header nav .hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #937500;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header nav .hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header nav .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
header nav .hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
header nav .nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  list-style: none;
  column-gap: 1rem;
  padding: 0;
  margin: 0;
}
header nav .nav-links li {
  margin: 0 4px;
  text-transform: uppercase;
  color: #937500;
  font-size: 1.1rem;
  line-height: 1.1rem;
}
header nav .nav-links li .active {
  font-weight: 700;
  text-shadow: none;
}
header nav .nav-links li a {
  color: #937500;
  text-decoration: none;
}
header nav .nav-links li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header nav .hamburger-menu {
    display: flex;
  }
  header nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    gap: 1rem;
  }
  header nav .nav-links.active {
    display: flex;
  }
  header nav .nav-links li {
    margin: 10px 0;
  }
}
header h1 {
  font-family: "leander-script-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 4rem;
  color: black;
}
header h1 span {
  font-size: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin-bottom: 2rem;
  }
}

footer {
  padding: 3rem 1rem;
  background-color: #f4f1ea;
  border-top: 1px solid #d0b04d;
  margin-top: auto;
  text-align: center;
}
footer .footer-content {
  max-width: 45rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
footer .footer-nav ul li a {
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
footer .footer-nav ul li a:hover {
  color: #937500;
  text-decoration: underline;
}
footer .footer-credits {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
}
footer .footer-credits p {
  margin: 0;
}
footer .footer-credits a {
  color: #555;
  text-decoration: underline;
  transition: color 0.3s ease;
}
footer .footer-credits a:hover {
  color: #937500;
}
footer .back-to-top {
  color: #937500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 1rem;
}
footer .back-to-top:hover {
  text-decoration: underline;
}

main {
  padding: 1rem;
  flex: 1;
}
main #container::after {
  width: 10rem;
  height: 2px;
  background-color: black;
  display: block;
  content: " ";
  margin: 2rem auto 0 auto;
}

a,
a:visited {
  color: #937500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

p {
  max-width: 45rem;
  line-height: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

button {
  background-color: #fff6bc;
  color: #443c23;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ffe37e;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
}
button:hover {
  background-color: #ffee9c;
}
button:active {
  background-color: #ffe37e;
}

form {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fffbeb;
  border: 1px solid #f5d576;
  border-radius: 0.5rem;
  max-width: 25rem;
  margin: 0 auto;
}
form label {
  font-weight: 700;
  color: #443c23;
  margin-bottom: 0.25rem;
}
form input,
form select {
  border: 1px solid #dbd8d7;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 6px;
}
form input:focus,
form select:focus {
  outline: 2px solid #d0b04d;
}
form .alert {
  text-align: center;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 24px;
  height: auto;
  transition: 0.25s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
form .alert.hidden {
  height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

gmp-map {
  width: 100%;
  max-width: 45rem;
  height: 300px;
  margin: 0 auto;
}
gmp-map:not(:last-child) {
  margin-bottom: 1rem;
}

.accommodations-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 45rem;
  margin: 0 auto;
}

.accommodation-option {
  text-align: center;
  width: 100%;
}
.accommodation-option p {
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid #937500;
  color: #937500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.button:hover {
  background-color: #937500;
  color: #fff;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */