@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Agbalumo&display=swap");
* {
  box-sizing: border-box;
}

body::before {
  background-image: url(../assets/background-2.jpg);
  background-size: cover;
  background-repeat: repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
}

body {
  position: relative;
}

section:not(#footer, #contact-section, #contact) {
  width: 100vw;
  min-height: 100vh;
  margin-top: 50px;
}

.layout div,
.guide div {
  border: 1px black solid;
}

body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Style the scrollbar itself (Chrome, Edge, and Safari) */
::-webkit-scrollbar {
  width: 5px;
  /* Scrollbar width */
  height: 5px;
  /* Scrollbar height for horizontal scroll */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox */
.scrollable-text {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.page-title {
  margin-bottom: 30px;
  font-family: agbalumo;
  text-align: center;
}
.page-title h1 {
  font-size: 3em;
}

/*Menu bar with mneu and Booking Buttons*/
.button-bar {
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  gap: 20px;
  justify-content: space-between;
  z-index: 10;
}
.button-bar .square-one,
.button-bar .square-two {
  position: relative;
  width: 60px;
  height: 60px;
}
.button-bar .square-one .booking-container,
.button-bar .square-one .menu-container,
.button-bar .square-two .booking-container,
.button-bar .square-two .menu-container {
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.button-bar .square-one .booking-container.open,
.button-bar .square-one .menu-container.open,
.button-bar .square-two .booking-container.open,
.button-bar .square-two .menu-container.open {
  width: 350px;
  height: auto;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.button-bar .square-one .booking-menu,
.button-bar .square-one .menu-nav,
.button-bar .square-two .booking-menu,
.button-bar .square-two .menu-nav {
  z-index: 10;
  font-family: Agbalumo;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  bottom: 0;
}
.button-bar .square-one .booking-form,
.button-bar .square-two .booking-form {
  display: none;
  text-align: center;
  margin-top: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f0f0f0;
  border-radius: 8px;
}
.button-bar .square-one .booking-form select,
.button-bar .square-two .booking-form select {
  min-height: 40px;
}
.button-bar .square-one .booking-form h2,
.button-bar .square-two .booking-form h2 {
  text-align: center;
}
.button-bar .square-one .booking-form .form-row,
.button-bar .square-two .booking-form .form-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .button-bar .square-one .booking-form .form-row,
  .button-bar .square-two .booking-form .form-row {
    flex-direction: column;
  }
}
.button-bar .square-one .booking-form .form-column,
.button-bar .square-two .booking-form .form-column {
  flex: 1;
}
.button-bar .square-one .booking-form .form-column input,
.button-bar .square-two .booking-form .form-column input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.button-bar .square-one .booking-form button,
.button-bar .square-two .booking-form button {
  width: 100%;
  padding: 10px;
  background-color: #555;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.button-bar .square-one .booking-form button:hover,
.button-bar .square-two .booking-form button:hover {
  background-color: #333;
}
.button-bar .square-one .menu,
.button-bar .square-two .menu {
  display: none;
  text-align: center;
  margin-top: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f0f0f0;
  border-radius: 8px;
}
.button-bar .square-one .menu a,
.button-bar .square-two .menu a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button-bar .square-one .menu a:hover,
.button-bar .square-two .menu a:hover {
  background-color: #e0e0e0;
  color: #000;
}
.button-bar .square-one .menu-toggle,
.button-bar .square-one .booking-toggle,
.button-bar .square-two .menu-toggle,
.button-bar .square-two .booking-toggle {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 15px;
  font-family: Agbalumo;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.homepage {
  display: grid;
  gap: 20px;
  padding: 20px;
  align-items: center;
  align-content: space-evenly;
}
@media screen and (max-width: 950px) {
  .homepage {
    align-content: space-between;
  }
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.row .text-block h2 {
  font-family: Agbalumo;
  font-size: 2.5rem;
  text-align: center;
}
.row.r1 .image-block,
.row.r1 .text-block, .row.r2 .image-block,
.row.r2 .text-block, .row.r3 .image-block,
.row.r3 .text-block {
  flex: 0 0 auto;
  max-width: calc(70% - 20px);
  min-width: 150px;
}
.row.r1 {
  width: 100%;
}
.row.r1 .image-block {
  flex: 0 0 calc(20% - 10px);
  max-width: calc(20% - 10px);
  min-width: 200px;
  padding-right: 70px;
}
.row.r1 .text-block {
  flex: 0 0 calc(60% - 10px);
  max-width: calc(60% - 10px);
  min-width: 400px;
  text-wrap: balance;
}
@media screen and (max-width: 800px) {
  .row.r1 .text-block {
    padding-left: 70px;
  }
}
.row.r1 .rounded-rectangle {
  position: relative;
  border-radius: 15px;
  /* Removed overflow: hidden; */
  height: 100px;
  width: 200px;
  left: 50px;
}
.row.r1 .overflow-image {
  position: absolute;
  top: calc(20% + 3px);
  left: 102px;
  width: calc(100% + 19px);
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  min-height: 141px;
  min-width: 302px;
}
.row.r1 .background-image {
  background: url(../assets/2\ -\ A\ modern\ and\ stylish\ bathroom\ interior\ with\ a\ black\ tray\ placed\ diagonally\ from\ the\ left\ to\ the\ right\ side\ on\ a\ white\ marble\ countertop.\ The\ tray\ feat.png) no-repeat center center;
  background-size: cover;
  width: 200px;
  min-width: 200px;
  height: 100%;
  border-radius: 15px;
  min-height: 100px;
}
.row.r2 .image-block {
  flex: 0 0 calc(70% - 20px);
  max-width: calc(70% - 20px);
  min-width: 250px;
}
.row.r2 .text-block {
  flex: 0 0 calc(30% - 20px);
  max-width: calc(30% - 20px);
  min-width: 250px;
}
@media screen and (max-width: 850px) {
  .row.r2 .text-block {
    order: 1;
  }
}
.row.r2 .rounded-rectangle {
  position: relative;
  border-radius: 15px;
  /* Removed overflow: hidden; */
  height: 100px;
}
.row.r2 .overflow-image {
  position: absolute;
  top: 50%;
  /* Adjust as needed */
  left: 0;
  /* Adjust if you want the overflow to start from a specific point */
  width: 100%;
  /* Full width of the parent */
  height: auto;
  /* Maintain aspect ratio */
  transform: translateY(-50%);
  /* Adjust the spillover effect */
  z-index: 2;
  /* Ensure it's above the .background-image */
  min-height: 100px;
  min-width: 250px;
}
.row.r2 .background-image {
  background: url("../assets/massage background.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  /* Match the container's border-radius */
  min-height: 100px;
  min-width: 250px;
}
.row.r3 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.row.r3 .background-image {
  background: url("../assets/massage.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  min-height: 100px;
  min-width: 250px;
  background-position: 0% 45%;
}
.row.r3 .image-block {
  flex: 0 0 calc(70% - 20px);
  max-width: calc(70% - 20px);
  min-width: 250px;
}
.row.r3 .text-block {
  flex: 0 0 calc(30% - 20px);
  max-width: calc(30% - 20px);
  min-width: 250px;
}

.about-us h2,
.about-us h3 {
  margin-bottom: 10px;
  font-family: agbalumo;
}
.about-us h2:not(.text-body) {
  text-align: center;
}
.about-us .container {
  padding: 1em;
}
.about-us .two-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about-us .two-columns .column {
  flex: 1 0 300px;
  padding: 10px;
  width: 50%;
  margin: 0;
}
.about-us .text-body {
  overflow: scroll;
  max-height: 500px;
  padding-left: 30px;
  min-width: 300px;
}
.about-us .team-container {
  flex-basis: 100%;
  padding: 20px;
  margin-top: 0;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.about-us .team {
  position: relative;
  border-radius: 15px;
  height: auto;
  background-color: #f5f5f5;
  padding: 20px;
  max-width: 500px;
}
.about-us .team .profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  padding: 5px;
}
.about-us .team .profiles .profile {
  text-align: center;
}
.about-us .team .profiles .profile .image img {
  position: relative;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
.about-us .team .profiles .profile .name {
  font-weight: bold;
  font-family: agbalumo;
}
.about-us .team .experience {
  display: block;
  position: relative;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 10px;
  box-sizing: border-box;
  min-height: 80px;
}
.about-us .team .experience .message {
  display: none;
  /* Initially hide all messages */
}
.about-us .team .experience .message.active {
  display: block;
  /* Show the message when it has 'active' class */
}
.about-us .carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #f5f5f5 10px solid;
  background-color: #f5f5f5;
}
.about-us .carousel .carousel-images {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us .carousel .carousel-images .carousel-image {
  display: none;
  transition: transform 0.5s ease;
}
.about-us .carousel .carousel-images .carousel-image:nth-of-type(2) {
  display: block;
}
.about-us .carousel .carousel-images .main-image {
  display: block;
  width: 100%;
  position: absolute;
}
.about-us .carousel .carousel-images .prev-preview,
.about-us .carousel .carousel-images .next-preview {
  display: block;
  position: absolute;
  width: 20%;
  transform: scale(0.7);
  opacity: 1;
  z-index: 1;
  border: white 6px solid;
}
.about-us .carousel .carousel-images .prev-preview {
  left: 10px;
  z-index: 1;
}
.about-us .carousel .carousel-images .next-preview {
  right: 10px;
  z-index: 1;
}
.about-us .carousel .carousel-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  outline: none;
}
.about-us .carousel .carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.about-us .carousel .carousel-button.prev {
  left: 0;
}
.about-us .carousel .carousel-button.next {
  right: 0;
}
.about-us .carousel .carousel-counter {
  position: absolute;
  bottom: 10px;
  /* Adjust as needed */
  left: 50%;
  /* Adjust as needed */
  transform: translate(-50%, -50%);
  background-color: white;
  /* Grey background */
  color: black;
  padding: 3px 8px;
  border-radius: 10px;
  /* Rounded corners */
  font-size: 1em;
  text-align: center;
  /* Add a bit of shadow for depth (optional) */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.services-section .service-item {
  background-color: #f5f5f5;
  border-radius: 10px;
  width: 400px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.services-section .service-item img {
  width: 100%;
  height: auto;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.services-section .service-description {
  padding: 15px;
}
.services-section .service-description h3 {
  margin-top: 0;
  font-family: agbalumo;
}

#reviews {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews .reviews-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews .reviews-container #loadMore {
  background-color: #555;
  color: white;
  border: none;
  border-radius: 15px;
  height: 40px;
  font-size: 15px;
  font-family: Agbalumo;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.reviews .testimonial-card {
  font-family: "Open Sans", Arial, sans-serif;
  /* Example font */
  min-width: 300px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  max-height: 400px;
  max-width: 350px;
}
.reviews .testimonial-image {
  margin-right: 20px;
  /* Space between image and text */
  display: contents;
}
.reviews .testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.reviews .testimonial-content {
  flex: 1;
}
.reviews .testimonial-name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2em;
  color: #333;
  align-self: flex-start;
  font-family: Agbalumo;
  margin-bottom: 20px;
  /* Space below the name */
}
.reviews .testimonial-info {
  margin-top: 5px;
  height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-left: 5px;
  font-weight: 800;
}
.reviews .testimonial-role,
.reviews .testimonial-location {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #666;
  font-style: italic;
}
.reviews .testimonial-quote {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  quotes: "“" "”" "‘" "’";
  margin: 0;
  /* Remove margin to fit in the design */
  overflow: scroll;
  height: 250px;
  padding-right: 12px;
}
.reviews .testimonial-quote:before,
.reviews .testimonial-quote:after {
  font-size: 2em;
  vertical-align: -0.4em;
}
.reviews .left-column {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.faq .faq-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.faq .faq-item {
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  flex-basis: calc(50% - 20px);
  min-width: 300px;
  max-width: 400px;
}
.faq .faq-question {
  font-weight: bold;
}
.faq .faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
}

.contact-section {
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
  margin: 0 auto;
  gap: 20px;
  align-items: center;
  background-image: url(./../assets/map.png);
  -o-object-fit: fill;
     object-fit: fill;
}
.contact-section .fa-map-marker-alt {
  position: fixed;
  font-size: 30px;
  left: 200px;
  top: 200px;
}
.contact-section h2 {
  font-family: Agbalumo;
  text-align: center;
}
.contact-section .contact-info,
.contact-section .contact-form {
  flex-basis: 48%;
  min-width: 300px;
  max-width: 400px;
}
.contact-section .contact-info .details,
.contact-section .contact-form .details {
  vertical-align: middle;
  display: flex;
  justify-content: center;
}
.contact-section .contact-info .details .address-text,
.contact-section .contact-form .details .address-text {
  z-index: 2;
  position: relative;
  width: 300px;
  text-align: center;
  background-color: #555;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}
.contact-section .contact-info .details .address-text h2,
.contact-section .contact-info .details .address-text h3,
.contact-section .contact-form .details .address-text h2,
.contact-section .contact-form .details .address-text h3 {
  font-family: Agbalumo;
  margin: 5px;
}
.contact-section .contact-info .details .map,
.contact-section .contact-form .details .map {
  width: 300px;
  height: 300px;
  margin: 10px 0;
  border: 5px solid #ccc !important;
  border-radius: 15px;
}
.contact-section .contact-info .details p,
.contact-section .contact-form .details p {
  margin: 0 20px;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}
.contact-section .contact-form form input,
.contact-section .contact-form form textarea,
.contact-section .contact-form form button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contact-section .contact-form form textarea {
  min-height: 250px;
}
.contact-section .contact-form form button {
  background-color: #555;
  color: white;
  border: none;
  cursor: pointer;
  font-family: Agbalumo;
}
.contact-section .contact-form form button:hover {
  background-color: #333;
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-section .contact-info,
  .contact-section .contact-form {
    flex-basis: 100%;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #555;
  color: white;
  height: 100px;
  padding: 0 20px;
}
.footer .social-media a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}
.footer .social-media a:hover {
  color: #ddd;
}

.alert {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  overflow: auto;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert .alert-content {
  width: clamp(200px, 50%, 600px);
  height: auto;
  background-color: #fff;
  color: #000;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=style.css.map */