body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  color: white;
}

p,
a,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

header,
footer {
  flex-shrink: 0;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
  background-color: white;
  width: 100%;
}

header h1 {
  display: flex;
  justify-content: center;
  font-size: 5vw;
  margin: 3vw 0 1vw 0;
}

a {
  text-decoration: none;
  color: lightblue;
}
a:visited {
  color: lightblue;
}
a:hover {
  color: aqua;
}

/* @TODO - remove if not using HRs */
hr {
  width: 80%;
  background-color: #aaa;
  border: 0;
  height: 4px;
}

/* Main */
main {
  flex-grow: 1;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------- */

/* SOCIAL MEDIA LINKS */
ul#social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-around; */
  justify-content: center;
  gap: 1vw;
  list-style-type: none;
  width: 100%;
  height: 6vw;
  padding: 0;
  margin: 0;
  background-color: #333;
}
#social-links li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 5vw;
  gap: 10px;
}
#social-links li a span {
  font-size: 0.6vw;
}
.social-media-logo {
  width: 1.25vw;
  height: 1.25vw;
  background-color: black;
  padding: 1vw;
  border-radius: 1.75vw;
}
a:hover .social-media-logo {
  border: 2px solid aqua;
  border-collapse: collapse;
  width: calc(1.25vw - 4px);
  height: calc(1.25vw - 4px);
}

/* HERO IMAGE */
#main-image-wrapper {
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  border-top: 2px solid #000;
}
.slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade 16s infinite;
  opacity: 0;
}
.s1 {
  animation-delay: 0s;
}
.s2 {
  animation-delay: 4s;
}
.s3 {
  animation-delay: 8s;
}
.s4 {
  animation-delay: 12s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* adjust darkness */
  z-index: 1;
}
.overlay-text {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  text-shadow: 0 0 10px black;
  z-index: 2;
  text-align: center;
}
.overlay-text #tagline {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: 2vw;
  padding-left: 8vw;
  width: 100%;
}
/* Footer, etc. */
footer {
  color: #aaa;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 5vw;
}

/* Testimonials */
#testimonials {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-direction: row;
  width: 100%;
  padding: 2vw 0;
}
.testimonial {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 80%;
}
.testimonial .stars {
  color: #f5c518;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.testimonial .text {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}
.testimonial .name {
  font-size: 0.85rem;
  color: #555;
}

/* Mailing list */
#mailing-list {
  display: flex;
  padding: 1em;
  width: 100%;
  background-color: #444;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.mailing-list p {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
.mailing-list form {
  display: flex;
  gap: 0.5em;
}
.mailing-list input[type="email"] {
  flex: 1;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.mailing-list button {
  padding: 0.5em 1em;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

nav#footer-nav {
  font-size: small;
  padding: 3vw 0;
  display: flex;
  gap: 2vw;
}

#fine-print {
  display: flex;
  background-color: #222;
  font-size: 0.5em;
  height: 96px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* <><><><><><><><><><><><><> about.html <><><><><><><><><><><><><> */

#about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 3vw auto;
  width: 60%;
  gap: 2vw;
}
