:root {
  --btn-color: #fdfdfd; /* button color*/
  --btn-bg: #a2d278; /* button bg color*/

  --header-link-hover: #a2d278;
  --site-bg: #000000;
  --site-text-dark: #000000;
  --site-text: #ffffff;
  --primary-text-color: #a2d278;
  /* --link-hover: #4f55c1; */
  --input-hover-bd-color: black;
}

* {
  font-family: "Montserrat", sans-serif;
}

p.open-sans {
  font-family: "Open Sans", sans-serif;
}

.header .open-sans {
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Slideshow takes full viewport height minus header (60px) */
.slideshow-container {
  height: calc(100vh - 60px) !important;
}

.slideshow-container > .tw-relative {
  height: 100% !important;
}

header {
  background-color: var(--site-bg);
}

header > .collapsible-header {
  display: flex;
  gap: 0.5rem;
  background-color: var(--site-bg);
  overflow: hidden;
}

.animated-collapse {
  transition: width 0.3s ease;
}

.header-links {
  display: flex;
  align-items: center;
  min-width: fit-content;
  padding: 8px 10px;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.header-links:hover {
  border-bottom: 2px solid var(--header-link-hover);
}

.black-text {
  color: #000;
}

.white-text {
  color: #fff;
}

.primary-text-color {
  color: var(--primary-text-color);
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-100 {
  opacity: 100 !important;
}

.btn {
  padding: 10px 15px;
  width: max-content;
  border-radius: 25px;
  color: var(--site-text-dark);
  background-color: var(--btn-bg);
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
}

.input {
  padding: 10px;
  border-radius: 10px;
  outline: none;
  min-width: 100px;
  border: 2px solid #cecece;
  transition: border 0.3s;
  color: #000;
}

.input:active,
.input:focus,
.input:focus-within {
  border: 2px solid var(--input-hover-bd-color);
}

.slides {
  display: none;
  position: relative;
  height: 100%;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  height: 100%;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 10;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.slideshow-container .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Navigation dots styling */
.dots-container {
  text-align: center;
  margin-top: 20px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dots-container .active,
.dot:hover {
  background-color: #fff;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.footer-link {
  color: #fff;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #0fe857;
}

.review-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.review-slide {
  display: none;
  padding: 20px;
  text-align: center;
}

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stars {
  display: inline-block;
  font-size: 40px;
  cursor: pointer;
}
.stars .star {
  color: #ccc;
  transition: color 0.2s;
}
.stars .star:hover,
.stars .star.active {
  color: gold;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-fade-in {
  opacity: 0;
  animation: slideFadeIn 1s ease forwards;
  animation-delay: 1s;
}

.fade-in-left {
  transform: translateX(-40px);
  opacity: 1;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}

@media not all and (min-width: 768px) {
  header .collapsible-header {
    position: absolute;
    right: 0px;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    height: 100vh;
    width: 0vw;
    padding: 5px;
    padding-top: 5%;
    padding-bottom: 5%;
    place-items: end;
    background-color: black;
    color: white;
  }
}

.aboutUsImage {
  border-radius: 10px;
}

.about-image-container {
}

.about-text-container {
}

@media (max-width: 768px) {
  .about-image-container {
    padding-bottom: 5%;
  }
  .about-text-container {
    padding-bottom: 5%;
  }
}

/* ensure slideshow container allows the wave to extend and overlay */
.slideshow-container .tw-relative {
  overflow: visible !important;
}

/* wave positioning and appearance */
#slideshow-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  bottom: 0;
  pointer-events: none;
  z-index: 20;
  display: block;
}

#slideshow-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

#slideshow-wave path {
  fill: #a2d278;
  opacity: 1;
  filter: drop-shadow(0 -6px 8px rgba(0, 0, 0, 0.12));
}

.header-links.active {
  color: #fff;
  border-bottom: 2px solid var(--header-link-hover);
  transition: border-bottom 0.2s;
}

.collapsible-header .header-links.active {
  border-bottom: 2px solid var(--header-link-hover);
  color: #fff;
}

.header {
  z-index: 21;
  gap: 20px;
}

h1.open-sans {
  font-family: "Open Sans", sans-serif;
  font-style: oblique;
  font-weight: 800;
}

.service-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slideshow-darken {
  opacity: 0.6;
}

.book-now-btn {
  background: #a2d278;
  color: #000;
  font-size: 1.25rem;
  width: 200px;
  padding: 12px 0;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s,
    border 0.3s;
  cursor: pointer;
  box-shadow: none;
}
.book-now-btn .arrow {
  stroke: #000;
  transition: stroke 0.3s;
}
.book-now-btn:hover {
  background: #000;
  color: #a2d278;
  border: 2px solid #a2d278;
}
.book-now-btn:hover .arrow {
  stroke: #a2d278;
}
.book-now-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
}

.lettering-img {
  width: 20%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .lettering-img {
    width: 50%;
  }
}

.hero-content {
}

.hero-position {
  left: 50px;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

@media (max-width: 768px) {
  .hero-position {
    left: 0px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center !important;
    text-align: center;
  }
  .hero-content p,
  .hero-content img,
  .hero-content button {
    margin-left: auto;
    margin-right: auto;
  }
}

.dynamic-service-grid > div {
  min-height: 220px;
}

@media (max-width: 768px) {
  .dynamic-service-grid > div {
    min-height: 180px;
    padding: 16px 0;
  }
  .dynamic-service-grid img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto;
    display: block;
  }
  .dynamic-service-grid img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
  }
  .dynamic-service-grid .tw-text-siteTextDark {
    font-size: 1rem;
    margin-top: 8px;
    word-break: break-word;
  }
}

.booking-section {
  min-height: 60vh;
  padding-bottom: 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .booking-section {
    min-height: 70vh;
    padding-bottom: 60px;
  }
}
