html {
  background-color: #f8f4fe;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

button {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  border: #f8f4fe;
  background-color: transparent;
  border: 2px solid #f8f4fe;
  border-radius: 20px;
}
@media (min-width: 769px) {
  button:hover {
    font-family: "Albert Sans", sans-serif;
    color: #f8f4fe;
    border: #f8f4fe;
    background-color: #9cb9b7;
    border: 2px solid transparent;
    border-radius: 20px;
  }
}

nav {
  position: absolute !important;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}
nav .active {
  text-decoration: underline;
}
nav .navbar-brand {
  color: #f8f4fe;
  font-weight: bold;
  font-family: "Libre Bodoni", serif;
}
nav .navbar-nav {
  margin-left: auto;
}
nav .nav-link {
  color: #f8f4fe !important;
}
nav .nav-link:hover {
  opacity: 0.8;
}
nav .navbar-toggler {
  border-color: #f8f4fe;
}
nav .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlap='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  nav .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    background: #ffffff;
    padding: 4rem 2rem 2rem;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    overflow-y: auto;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.25);
    transition: opacity 0.15s ease, visibility 0.15s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  nav .navbar-collapse .nav-link {
    background: #2E211B;
    background-color: #2E211B;
    padding: 50px;
    color: #f8f4fe !important;
  }
  nav .navbar-collapse.collapse.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav .navbar-collapse.collapsing {
    height: 100vh !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  nav .navbar-nav {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  nav .navbar-toggler {
    z-index: 1100;
  }
  nav body.nav-open {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  nav .navbar-collapse {
    position: fixed;
    width: 100%;
    right: 20px;
  }
}

footer .newsletter {
  border-top: 2px solid #2E211B;
  text-align: center;
  padding: 40px 20px;
}
footer .newsletter h2 {
  font-family: "Albert Sans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  footer .newsletter h2 {
    font-size: 1.5rem;
  }
}
footer .newsletter input[type=email] {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 15px;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f8f4fe;
  font-family: "Albert Sans", sans-serif;
  font-size: 1rem;
}
footer .newsletter input[type=email]::-moz-placeholder {
  color: #2E211B;
}
footer .newsletter input[type=email]::placeholder {
  color: #2E211B;
}
@media (min-width: 768px) {
  footer .newsletter input[type=email] {
    max-width: 400px;
  }
}
footer .newsletter button {
  color: #2E211B;
  border: #2E211B;
  border: 2px solid #2E211B;
  padding: 10px 30px;
  width: auto;
  display: block;
  margin: 0 auto;
}
footer .newsletter button:hover {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  border: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
  border-radius: 20px;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 20px;
  border-top: 2px solid #2E211B;
}
@media (min-width: 768px) {
  footer .footer-links {
    padding: 40px 100px;
  }
}
footer .footer-links .footer-col {
  width: 48%;
}
@media (min-width: 768px) {
  footer .footer-links .footer-col {
    width: auto;
  }
}
footer .footer-links .footer-col h4 {
  font-family: "Albert Sans Bold", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
footer .footer-links .footer-col h4:first-child {
  margin-top: 0;
}
footer .footer-links .footer-col a, footer .footer-links .footer-col p {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-size: 0.85rem;
  color: #2E211B;
  text-decoration: none;
  margin-bottom: 5px;
}
footer .footer-links .footer-col a:hover, footer .footer-links .footer-col p:hover {
  text-decoration: underline;
}
footer .footer-links .footer-col p {
  margin-bottom: 5px;
}
footer .footer-links .footer-col p:hover {
  text-decoration: none;
}

header {
  position: relative;
  color: #f8f4fe;
  overflow: hidden;
  min-height: 500px;
}
header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
header h1 {
  position: absolute;
  font-family: "Libre Bodoni", serif;
  text-transform: uppercase;
  z-index: 2;
  top: 100px;
  left: 20px;
  right: 20px;
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0;
}
header h1 span {
  font-family: "Albert Sans", sans-serif;
  text-transform: lowercase;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  header h1 {
    top: 150px;
    font-size: 5rem;
    right: 50%;
  }
  header h1 span {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
header p {
  position: absolute;
  font-family: "Albert Sans", sans-serif;
  z-index: 2;
  top: 260px;
  left: 20px;
  right: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (min-width: 769px) {
  header p {
    top: 180px;
    left: auto;
    right: 50px;
    max-width: 350px;
    font-size: 1rem;
  }
}
header button {
  position: absolute;
  padding: 10px 30px;
  z-index: 2;
  top: 400px;
  left: 20px;
}
@media (min-width: 769px) {
  header button {
    top: 380px;
  }
}

.slogan {
  text-align: center;
  font-family: "Albert Sans Bold", sans-serif;
  padding: 10px;
}

.opening-section {
  background-color: rgba(147, 73, 33, 0.7176470588);
  color: #f8f4fe;
  font-style: "Albert Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
}
.opening-section div img {
  width: 100%;
}
@media (min-width: 769px) {
  .opening-section div img {
    max-height: 300px;
    width: auto;
  }
}
@media (min-width: 476px) {
  .opening-section div img {
    max-height: 300px;
    width: auto;
  }
}
.opening-section div h2 {
  padding-top: 20px;
}
.opening-section div button {
  padding: 10px 30px;
}
@media (min-width: 476px) {
  .opening-section div button {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .opening-section div button {
    margin-bottom: 0px;
  }
}

.top-picks a {
  text-decoration: none;
  color: black;
}
.top-picks h2 {
  font-family: "Albert Sans Bold", sans-serif;
  text-transform: uppercase;
  padding: 20px;
}
@media (min-width: 469px) {
  .top-picks h2 {
    text-align: center;
    font-size: 20pt;
  }
}
@media (min-width: 769px) {
  .top-picks h2 {
    text-align: left;
    font-size: 25pt;
    margin-left: 15px;
  }
}
.top-picks h3 {
  font-family: "Albert Sans Bold", sans-serif;
  font-size: 1.2rem;
  padding: 0.6rem;
}
.top-picks .pick-card {
  position: relative;
  overflow: hidden;
}
.top-picks .pick-card img:first-child {
  width: 100%;
  height: auto;
  display: block;
}
.top-picks .pick-card .hover-content {
  display: none;
}
@media (min-width: 768px) {
  .top-picks .pick-card .hover-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #f8f4fe;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
  }
  .top-picks .pick-card .hover-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid white;
    font-family: "Libre Bodoni", serif;
  }
  .top-picks .pick-card .hover-content p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    font-family: "Albert Sans", sans-serif;
  }
}
@media (min-width: 768px) {
  .top-picks .pick-card {
    cursor: pointer;
  }
  .top-picks .pick-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 33, 27, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .top-picks .pick-card:hover::after {
    opacity: 1;
  }
  .top-picks .pick-card:hover .hover-content {
    opacity: 1;
  }
}
.top-picks .mobile-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: block;
  z-index: 3;
}
@media (min-width: 768px) {
  .top-picks .mobile-arrow {
    display: none;
  }
}
.top-picks button {
  color: #2E211B;
  border: #2E211B;
  border: 2px solid #2E211B;
  padding: 10px 30px;
  width: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
.top-picks button:hover {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  border: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
  border-radius: 20px;
}

.upcoming-events {
  background-color: #2E211B;
  padding-bottom: 20px;
}
.upcoming-events h2 {
  color: #f8f4fe;
  font-family: "Albert Sans Bold", sans-serif;
  text-transform: uppercase;
  padding: 20px;
}
@media (min-width: 469px) {
  .upcoming-events h2 {
    text-align: center;
    font-size: 20pt;
  }
}
@media (min-width: 769px) {
  .upcoming-events h2 {
    text-align: left;
    font-size: 25pt;
    margin-left: 15px;
  }
}
.upcoming-events .event-card {
  position: relative;
  overflow: hidden;
}
.upcoming-events .event-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .upcoming-events .event-card img {
    height: 300px;
  }
}
.upcoming-events .mobile-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2E211B;
  padding: 10px 15px;
}
.upcoming-events .mobile-title h3 {
  font-family: "Albert Sans Bold", sans-serif;
  font-size: 0.9rem;
  color: #f8f4fe;
  margin: 0;
  text-transform: uppercase;
}
.upcoming-events .mobile-title .mobile-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .upcoming-events .mobile-title {
    display: none;
  }
}
.upcoming-events .desktop-title {
  display: none;
}
@media (min-width: 768px) {
  .upcoming-events .desktop-title {
    display: block;
    font-family: "Albert Sans Bold", sans-serif;
    font-size: 0.9rem;
    padding: 10px 15px;
    margin: 0;
    text-transform: uppercase;
    color: #f8f4fe;
    background-color: #2E211B;
  }
}
.upcoming-events .hover-content {
  display: none;
}
@media (min-width: 768px) {
  .upcoming-events .hover-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #f8f4fe;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
  }
  .upcoming-events .hover-content h4 {
    font-family: "Libre Bodoni", serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f8f4fe;
  }
  .upcoming-events .hover-content p {
    font-family: "Albert Sans", sans-serif;
    font-size: 0.85rem;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .upcoming-events .event-card {
    cursor: pointer;
  }
  .upcoming-events .event-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 33, 27, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .upcoming-events .event-card:hover::after {
    opacity: 1;
  }
  .upcoming-events .event-card:hover .hover-content {
    opacity: 1;
  }
}
.upcoming-events button {
  color: #f8f4fe;
  border: 2px solid #f8f4fe;
  padding: 10px 30px;
  width: auto;
  display: block;
  margin: 20px auto;
}
.upcoming-events button:hover {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
  border-radius: 20px;
}

.recent-articles h2 {
  font-family: "Albert Sans Bold", sans-serif;
  text-transform: uppercase;
  padding: 20px;
  width: 100%;
}
@media (min-width: 469px) {
  .recent-articles h2 {
    text-align: center;
    font-size: 20pt;
  }
}
@media (min-width: 769px) {
  .recent-articles h2 {
    text-align: left;
    font-size: 25pt;
    margin-left: 15px;
  }
}
.recent-articles .article-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.recent-articles .article-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.recent-articles .article-card .article-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #f8f4fe;
}
.recent-articles .article-card .article-content h3 {
  font-family: "Albert Sans Bold", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}
.recent-articles .article-card .article-content .gazette-label {
  background-color: rgba(147, 73, 33, 0.7176470588);
  padding: 8px 15px;
  font-family: "Albert Sans", sans-serif;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-bottom: 30px;
}
.recent-articles .article-card .article-content .article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.recent-articles .article-card .article-content .article-footer p {
  font-family: "Albert Sans", sans-serif;
  font-size: 0.9rem;
  margin: 0;
}
.recent-articles .article-card .article-content .article-footer button {
  padding: 8px 25px;
}

.inn-content h2 {
  font-family: "Albert Sans Bold", sans-serif;
  text-transform: uppercase;
  padding: 20px;
}
@media (min-width: 469px) {
  .inn-content h2 {
    text-align: center;
    font-size: 25pt;
  }
}
@media (min-width: 769px) {
  .inn-content h2 {
    text-align: left;
    font-size: 25pt;
    margin-left: 20px;
  }
}
.inn-content p {
  font-family: "Albert Sans", sans-serif;
  padding: 15px;
}
.inn-content img {
  padding: 0;
  width: 100%;
}
.inn-content .inn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.inn-content .inn-card img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.inn-content .inn-card h2 {
  text-align: center;
  padding: 10px 0;
  margin: 0;
}
@media (min-width: 769px) {
  .inn-content .inn-card h2 {
    text-align: center;
    margin-left: 0;
  }
}
.inn-content .inn-card p {
  text-align: justify;
  max-width: 350px;
  padding: 10px 15px;
}
.inn-content .inn-card button {
  color: #2E211B;
  border: 2px solid #2E211B;
  padding: 10px 30px;
  margin-top: 10px;
}
.inn-content .inn-card button:hover {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
  border-radius: 20px;
}

.further-away {
  background: rgba(147, 73, 33, 0.7176470588);
  color: #f8f4fe;
  padding-top: 10px;
  padding-bottom: 10px;
}
.further-away h2 {
  color: #f8f4fe;
}
.further-away .inn-card button {
  color: #f8f4fe;
  border: 2px solid #f8f4fe;
  background-color: transparent;
}
.further-away .inn-card button:hover {
  color: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
}

.sub-footer {
  background-color: #9cb9b7;
  padding-bottom: 10px;
}
.sub-footer img {
  padding: 30px 0;
}
.sub-footer button {
  width: auto;
  display: block;
  margin: 20px auto;
}

.error-page {
  color: #2E211B;
  padding: 50px;
  justify-items: center;
}
.error-page h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 70px;
}
.error-page p {
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
}
.error-page a {
  text-decoration: none;
}
.error-page button {
  color: #2E211B;
  border: #2E211B;
  border: 2px solid #2E211B;
  padding: 10px 30px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.error-page button:hover {
  font-family: "Albert Sans", sans-serif;
  color: #f8f4fe;
  border: #f8f4fe;
  background-color: #9cb9b7;
  border: 2px solid transparent;
  border-radius: 20px;
}

.sources {
  padding: 30px;
  color: #2E211B;
  justify-items: center;
}
.sources h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 80px;
  text-transform: uppercase;
}
.sources p {
  font-family: "Albert Sans", sans-serif;
}

.carousel {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
}
.carousel button:hover {
  background-color: transparent;
}

.history {
  padding: 30px;
  color: #2E211B;
  justify-items: center;
}
.history h2 {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
.history p {
  font-family: "Albert Sans", sans-serif;
  text-align: justify;
}

.intro-dragon {
  margin-top: 20px;
  color: #2E211B;
}
.intro-dragon h2 {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.intro-dragon p {
  font-family: "Albert Sans", sans-serif;
  text-align: justify;
  margin-bottom: 20px;
}

#catch-phrase {
  font-family: "Albert Sans", sans-serif;
  text-transform: capitalize;
  text-align: center;
  font-size: 25px;
  background-color: rgba(147, 73, 33, 0.7176470588);
  padding: 100px;
  color: #f8f4fe;
}

.amentities {
  margin-top: 20px;
  color: #2E211B;
}
.amentities h2 {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.amentities p {
  font-family: "Albert Sans", sans-serif;
  text-align: justify;
  margin-bottom: 20px;
}

.icon-aside {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: baseline;
}

.hours {
  margin-bottom: 30px;
}
.hours h2 {
  font-family: "Albert Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hours p {
  font-family: "Albert Sans", sans-serif;
  text-align: justify;
  margin-bottom: 20px;
}
.hours button {
  color: #2E211B;
  border: #2E211B;
  border: 2px solid #2E211B;
  padding: 10px 30px;
  width: auto;
}
@media (min-width: 769px) {
  .hours button:hover {
    font-family: "Albert Sans", sans-serif;
    color: #f8f4fe;
    border: #f8f4fe;
    background-color: #9cb9b7;
    border: 2px solid transparent;
    border-radius: 20px;
  }
}

.lukes-images img {
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-height: 600px;
  display: block;
  margin: 0 auto;
  padding: 30px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: #2E211B;
}

.lukedanes {
  padding: 30px;
  color: #2E211B;
  justify-items: center;
}
.lukedanes h2 {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
.lukedanes p {
  font-family: "Albert Sans", sans-serif;
  text-align: justify;
}

.map {
  position: relative;
  padding: 0;
  font-family: "Albert Sans", sans-serif;
}
.map .button {
  border: none;
  background: transparent;
  position: absolute;
  font-size: 2.5rem;
  color: #b0572e;
  z-index: 100;
}
.map .button.independence {
  top: 57%;
  left: 30%;
}
.map .button.town-square {
  top: 43%;
  left: 46%;
}
.map .button.dragonfly {
  bottom: 14%;
  left: 73%;
}
.map .button .info {
  position: absolute;
  top: 0;
  left: 45px;
  width: 120px;
  background-color: #9cb9b7;
  color: #fff;
  padding: 0.5rem;
  font-size: 1rem;
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s;
}
.map .button .info a {
  font-size: 0.8rem;
  display: block;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid #fff;
}
.map .button .info a:hover {
  color: #000;
}
.map .button:hover .info {
  opacity: 1;
}

.map-info {
  padding: 2rem;
  background-color: teal;
  color: #fff;
}
.map-info h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}
.map-info .loc-content ul {
  padding: 0;
}
.map-info .loc-content ul li {
  list-style: none;
  border-bottom: 1px solid #fff;
}
.map-info .loc-content a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.map-info .loc-content a:hover {
  color: #000;
}/*# sourceMappingURL=custom.css.map */