/* Global Styles */
body {
  background-color: aquamarine;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

/* Logo Link Styles */
.header a.logo-link,
.header a.logo-link:hover,
.header a.logo-link:visited,
.header a.logo-link:active {
  text-decoration: none !important;
  color: black !important;
  border-bottom: none !important;
  background: none !important;
}

.header a.logo-link h1.legacy {
  text-decoration: none !important;
  color: black !important;
  border-bottom: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: "Montserrat", sans-serif;
}

/* Layout */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-bottom-right-radius: 30%;
  border-bottom-left-radius: 30%;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 20px;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
}

.relaxation-section {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  margin: 60px 0;
}

.client-options {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 130px;
  flex-wrap: wrap;
}

.booking-info {
  display: flex;
  margin-top: auto;
  justify-content: flex-end;
}

.columns-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 80%;
  margin: 20px auto;
  gap: 20px;
  align-items: flex-start;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.wrapper {
  flex: 1;
}

/* Components */
.legacy {
  padding: 0;
  margin: 20px;
  text-align: center;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
}

.nav-menu li {
  list-style-type: none;
  display: flex;
  color: black;
}

.nav-menu li a {
  color: black;
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  height: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  align-items: center;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

.nav-menu img {
  width: 30px;
  height: 30px;
}

.spa1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
}

.book {
  margin: 20px auto;
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.book-me-btn {
  padding: 15px 30px;
  margin: 20px auto;
  font-size: 1.2em;
  background-color: plum;
  font-family: "Montserrat", sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 6s infinite;
  display: block;
  width: fit-content;
}

.book-me-btn:hover {
  background-color: #dda0dd;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

nav ul li {
  /* height: 20px; */
  display: inline;
  list-style-type: none;
  text-decoration: none;
}

nav ul li a {
  text-decoration: none;
}

.relaxation-text,
.priority-text {
  padding: 50px 20px;
  border-radius: 30px;
  width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  text-align: center;
}

.relaxation-text {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}

.priority-text {
  background-color: plum;
  color: black;
}

.client-option {
  margin: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 200px;
  display: flex;
  flex-direction: column;
}

.client-image {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.client-btn {
  margin-top: 10px;
  padding: 10px;
  font-size: 1em;
  background-color: white;
  color: black;
  font-family: "Montserrat", sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}

.client-label {
  margin-top: 10px;
  font-size: 1em;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.info-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 30px;
  width: 200px;
  max-width: 300px;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.info-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 20px;
  margin: 10px 0;
}

.payment-methods {
  list-style-type: none;
  padding: 0;
}

.payment-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.payment-methods img {
  width: 24px;
  height: 24px;
  filter: invert(100%);
}

.contact-us {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.contact-us h2 {
  margin-bottom: 10px;
  color: #333;
}

.contact-us p {
  margin: 5px 0;
  color: #666;
}

.contact-us a {
  color: #007bff;
  text-decoration: none;
}

.contact-us a:hover {
  text-decoration: underline;
}

footer {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

.column {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.booking-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px 0;
  text-align: center;
}

.instructions {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.instructions ul li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
  margin: 5px 0;
}

.instructions ul li a:hover {
  background-color: #0056b3;
}

.menu-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-item h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.menu-item p {
  margin-bottom: 15px;
  flex-grow: 1;
}

.menu-item .price {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #007bff;
}

.menu-item .book-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.menu-item .book-btn:hover {
  background-color: #0056b3;
}

.category-header {
  cursor: pointer;
  background-color: #007bff;
  color: white;
  padding: 15px 20px;
  margin: 5px 60px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  width: 100%;
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.category-header:hover {
  background-color: #0056b3;
}

.category-header.active {
  background-color: #0056b3;
}

.category-content {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.category-content.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.menu-items .category-content:first-of-type {
  display: block;
}

.consultation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}

.consultation-btn {
  background-color: pink;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.consultation-btn:hover {
  background-color: #ff9999;
}

.consultation-btn a {
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.about-content {
  flex: 0 0 60%;
  padding-right: 20px;
}

.about-image {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: fit-content;
  align-self: flex-start;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.consultation-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: plum;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.consultation-button:hover {
  background-color: #dda0dd;
}

.contact-info-section {
  width: 90%;
  max-width: 1400px;
  margin: 40px auto;
  padding: 50px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-info-section .contact-details {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 0;
}

.contact-info-section h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}

.contact-details {
  background-color: white;
  border-radius: 10px;
}

.address-info {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.address-info h3 {
  color: #007bff;
  margin: 20px 0 10px 0;
  font-size: 20px;
}

.address-info h3:first-child {
  margin-top: 0;
}

.address-info p {
  margin: 5px 0;
  color: #555;
  line-height: 1.6;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.service-category {
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 15px;
}

.menu-items {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Page Specific Style */
.about-page h1,
.booking-page h1,
.menu-page h1 {
  color: black;
  text-align: center;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  margin: 20px;
}

.about-page p,
.booking-page p,
.menu-page p {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.about-page h2,
.booking-page h2,
.menu-page h2 {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.about-page a,
.booking-page a,
.menu-page a {
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.about-page a:hover,
.booking-page a:hover,
.menu-page a:hover {
  text-decoration: underline;
}

.about-page footer,
.booking-page footer,
.menu-page footer {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

.about-page footer p,
.booking-page footer p,
.menu-page footer p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.booking-link {
  display: block;
  text-align: center;
  margin: 20px auto;
  font-size: 18px;
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.booking-link:hover {
  text-decoration: underline;
}

.booking-section ul li {
  background-color: white;
  padding: 20px;
  margin: 10px 0;
  border-radius: 10px;
  list-style-type: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 300px;
  margin: 10px auto;
}

h2 {
  text-align: center;
}

.menu-page {
  font-family: "Montserrat", sans-serif;
}

.menu-page main {
  text-align: center;
}

.menu-page .columns-container {
  text-align: center;
}

.menu-page .column {
  text-align: center;
}

.menu-page .menu-item {
  text-align: center;
}

.menu-page .menu-item .book-btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.menu-page .price {
  text-align: center;
}

.menu-page .category-header {
  margin: 0 auto;
  display: block;
}

.about-page {
  font-family: "Montserrat", sans-serif;
}

.booking-page {
  font-family: "Montserrat", sans-serif;
}

.about-content h1,
.about-content p {
  background-color: rgba(178, 255, 229, 0.9);
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content h1 {
  display: inline-block;
  padding: 15px 30px;
  margin-bottom: 30px;
}

.about-content p {
  line-height: 1.8;
}

/* Utilities Skills Stretch*/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.81);
  }
  100% {
    transform: scale(1);
  }
}
/* W3Schools Scrollbar Skills Stretch*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: plum;
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

* {
  scrollbar-width: thin;
  scrollbar-color: plum rgba(0, 0, 0, 0.1);
}

/* Media Queries Skills Stretch*/
@media (max-width: 768px) {
  .category-content.grid-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .relaxation-text,
  .priority-text {
    width: 90%;
    height: auto;
    min-height: 100px;
    margin: 10px 0;
  }

  .relaxation-section {
    flex-direction: column;
    gap: 40px;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .legacy {
    font-size: 24px;
    margin: 10px auto;
    text-align: center;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-menu li {
    margin-bottom: 10px;
    justify-content: center;
  }

  .nav-menu li a {
    justify-content: center;
  }

  .about-container {
    flex-direction: column;
    padding: 20px;
  }

  .about-content {
    flex: 1;
    padding-right: 0;
    width: 90%;
    margin: 0 auto;
  }

  .about-image {
    flex: 1;
    width: 90%;
    margin: 20px auto;
    padding: 15px;
    height: auto;
  }

  .contact-info-section {
    width: 85%;
    padding: 30px;
    margin: 20px auto;
  }

  .contact-details {
    text-align: center;
  }

  .consultation-button {
    display: block;
    width: 80%;
    margin: 20px auto;
    text-align: center;
  }

  .columns-container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }

  .relaxation-section,
  .client-options {
    flex-direction: column;
    padding: 10px;
    align-items: center;
  }

  .relaxation-text,
  .priority-text,
  .client-options {
    max-width: 90%;
    margin: 10px auto;
    text-align: center;
  }

  .booking-info {
    margin: 20px auto;
    justify-content: center;
  }

  .info-box {
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }

  .payment-methods {
    justify-content: center;
  }

  .service-category {
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }

  .menu-item {
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }

  .booking-section {
    margin: 30px 0;
    padding: 0 20px;
  }

  .booking-section .consultation-button {
    width: 100%;
    max-width: 300px;
  }

  .contact-info-section {
    width: 85%;
    padding: 30px;
    margin: 20px auto;
  }

  .contact-info-section .contact-details {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .map-container iframe {
    height: 350px;
    min-height: unset;
  }

  .book-me-btn {
    margin: 10px auto;
    padding: 12px 24px;
    font-size: 1em;
  }

  .text-overlay {
    width: 95%;
    padding: 10px;
  }

  .image-container {
    height: 400px;
  }

  .book {
    font-size: 2em;
    margin: 10px auto;
  }

  .client-options {
    flex-direction: column;
    gap: 40px;
    padding: 10px;
  }

  .client-option {
    margin: 10px;
    width: 80%;
    max-width: 300px;
  }

  .client-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .client-btn {
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
  }

  .client-label {
    margin: 10px auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .category-content.grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media only screen and (max-width: 430px) and (max-height: 932px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .legacy {
    margin: 10px auto;
    text-align: center;
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .nav-menu li {
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
  }

  .nav-menu li a {
    justify-content: center;
    width: 100%;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .about-content {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .about-content h1 {
    width: 100%;
    text-align: center;
    display: block;
  }

  .about-content p {
    text-align: center;
  }

  .about-image {
    width: 90%;
    margin: 20px auto;
  }

  .contact-info-section {
    width: 90%;
    margin: 20px auto;
  }

  .contact-details {
    text-align: center;
  }

  .address-info {
    margin: 0 auto;
  }

  .consultation-button {
    display: block;
    width: 80%;
    margin: 20px auto;
    text-align: center;
  }

  .image-container {
    height: 180px;
  }

  .relaxation-text,
  .priority-text {
    font-size: 15px;
    text-align: center;
    max-width: 90%;
    margin: 10px auto;
  }

  .client-options {
    padding: 5px;
    justify-content: center;
  }

  footer {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .menu-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 1024px) {
  .legacy {
    font-size: 2em;
  }

  .nav-menu li a {
    font-size: 1em;
  }

  .book {
    font-size: 2.5em;
  }

  .category-content.grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.logo-link {
  text-decoration: none !important;
  color: black !important;
}

.logo-link:hover {
  text-decoration: none !important;
  color: black !important;
}

.logo-link:visited {
  color: black !important;
}

.logo-link h1 {
  text-decoration: none !important;
  color: black !important;
}

.header .logo-link {
  text-decoration: none !important;
  color: black !important;
}

.header .logo-link:hover {
  text-decoration: none !important;
  color: black !important;
}

/* specific rules for text decoration */
.header a.logo-link h1.legacy:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
}

.header a.logo-link:hover h1.legacy {
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
}
nav ul li a.logo-link:hover {
  text-decoration: none !important;
}

.nav-menu li a.logo-link:hover {
  text-decoration: none !important;
}
