html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: black;
  font-size: 20px;
  color: whitesmoke;
  font-family: "Bona Nova SC", serif;
}

.h1 {
  color: goldenrod;
  font-size: 2.30em;
}

/* Styles for the hero wrapper */
.hero-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* Styles for the slideshow */
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  opacity: 0.3;
}

.slideshow img:first-child {
  display: block;
}

/* Styles for the hero content */
.hero-content {
  text-align: center;
  color: #f2f2f2;
  z-index: 1;
  position: relative;
}

.hero-content h1 {
  margin: 0;
  font-size: 2em;
  font-family: 'Playwrite NZ', sans-serif;
  color: goldenrod;
}

.hero-content h2 {
  font-family: 'Playwrite NZ', sans-serif;
  color: whitesmoke;
  font-size: 1.80em;
}

/* Styles for the booking button */
.booking-button {
  font-size: xx-large;
  padding: 10px 20px;
  margin: 20px 0;
  background-color: goldenrod;
  color: black;
  border: none;
  cursor: pointer;
  font-weight: bolder;
  border-radius: 0.3em;
}

.booking-button:hover {
  background-color: #ddd;
  color: #333;
  text-decoration: underline;
}

.booking-button a {
  text-decoration: none;
  color: black;
}

/* Styles for the header */
header {
  text-align: center;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #f2f2f2;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

/* Styles for the navigation */
nav {
  background-color: black;
  display: flex;
  justify-content: center;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 18px 20px;
  text-decoration: none;
  font-size: x-large;
  font-family: 'Playwrite NZ', sans-serif;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

/* Gallery styles */
.gallery {
  padding: 100px 20px;
  text-align: center;
}

.gallery h1 {
  font-size: 2.10em;
  font-family: 'Playwrite NZ', sans-serif;
  color: goldenrod;
  margin-bottom: 40px;
}

.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 5px solid #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-container img,
.image-container video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 5px solid #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-container img:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.services {
  padding: 100px 20px;
  text-align: center;
}

.services h1 {
  font-size: 2.10em;
  font-family: 'Playwrite NZ', sans-serif;
  color: goldenrod;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  font-size: 1.5em;
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.service-list li span {
  flex: 1;
}

.service-list li span:first-child {
  text-align: left;
  font-size: x-large;
}

.service-list li span:last-child {
  text-align: right;
  color: goldenrod;
}

.contact {
  padding: 100px 20px;
  text-align: center;
}

.contact h1 {
  font-size: 2.10em;
  font-family: 'Playwrite NZ', sans-serif;
  color: goldenrod;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-details {
  font-size: 1.5em;
  color: whitesmoke;
}

.map {
  margin-top: 20px;
}

.map iframe {
  width: 800px;
  max-width: 1000px;
  height: 800px;
  border: 0;
}

/* Footer styles */
footer {
  background-color: black;
  color: whitesmoke;
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 100px;
  border-radius: 0.3em;
}

.footer-info,
.footer-hours {
  flex: 1;
  margin-right: 20px;
}

.footer-info {
  text-align: center;
}

.footer-info h3 {
  margin: 0;
  font-size: 1.5em;
  color: goldenrod;
}

.footer-info p {
  margin: 5px 0;
  font-size: 1em;
}

.footer-hours {
  text-align: center;
  margin: 0 auto;
  font-size: 1em;
}

.footer-hours h3 {
  margin: 0;
  font-size: 1.5em;
  color: goldenrod;
}

.footer-hours p {
  margin: 5px 0;
  font-size: 1em;
}

/* This will set the color of all anchor tags to white */
a {
  text-decoration: none;
  color: whitesmoke;
}

/* This will ensure visited links are also white */


/* This will ensure links remain white when hovered */
a:hover {
  color: white;
  text-decoration: dashed;
}

/* This will ensure active links are also white */
a:active {
  color: white;
}

/* Media query for smartphones/smaller screens */
@media only screen and (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    font-size: large;
    padding: 14px 10px;
  }

  a {
    text-decoration: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    margin-left: 0px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-info,
  .footer-hours {
    text-align: center;
    margin-left: 0px;
    font-size: 1.87em;
  }

  .service-list li {
    flex-direction: column;
    text-align: left;
  }

  .service-list li span:last-child {
    text-align: left;
    margin-top: 5px;
  }

  .h2 {
    color: white;
    font-size: large;
  }

  .image-container img {
    border-radius: 5px;
    width: 100%;
    height: auto;
  }

  .map iframe {
    width: 100%;
    height: 400px;
  }
}