/* -----------------------------spa.html   SUGOD --------------------------------- */

/* New Spa-Themed Styling with Pastel Colors */
:root {
  --spa-pastel-mint: #d1e8e2;
  --spa-pastel-sage: #c8d5b9;
  --spa-pastel-lavender: #d9d2e9;
  --spa-pastel-peach: #fae3d9;
  --spa-pastel-blue: #d6eaf8;
  --spa-dark-teal: #116466;
  --spa-medium-teal: #2c7873;
  --spa-light-teal: #6fb98f;
  --spa-text-dark: #2f4858;
  --spa-text-medium: #4a6572;
  --spa-background: #fafafa;
  --spa-border-light: rgba(0, 75, 66, 0.15);
}

body {
  background-color: var(--spa-background);
  color: var(--spa-text-medium);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* Spa Main Content Styling */
#spaMain {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* Wellness Landing Enhancements */
#wellnessLanding .wordItem {
  display: none;
  font-size: 22px;
  color: var(--spa-dark-teal);
  margin: 0 6px;
}

#wordsWithPhoto {
  position: relative;
}

#wordsWithPhoto .wwpSlide {
  display: none;
}

#wellnessRibbon .nav-item {
  display: inline-block;
  margin: 6px 8px;
  padding: 8px 14px;
  border: 1px solid var(--spa-pastel-mint);
  border-radius: 999px;
  color: var(--spa-medium-teal);
}

#spaMain h1,
#spaMain h2,
#spaMain h3 {
  font-family: "Georgia", serif;
  letter-spacing: 0.5px;
}

.leoxTitle1 {
  color: var(--spa-dark-teal) !important;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.leoxTitle1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--spa-pastel-mint),
    var(--spa-pastel-lavender)
  );
}

.leoxTitleColor1 {
  color: var(--spa-dark-teal) !important;
}

#spaMain p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--spa-text-medium);
}

#spaMain p.iJustify {
  text-align: justify;
  font-size: 16px;
}

#spaMain .spacer30px {
  height: 30px;
  clear: both;
}

/* Image styling */
#spaMain img.IpatungaDblock {
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto 20px;
}

#spaMain img.padding3px {
  padding: 3px;
  background-color: white;
  border: 1px solid var(--spa-pastel-mint);
}

/* Enhanced image sizing for better visual balance */
@media only screen and (min-width: 600px) {
  #spaMain img.IpatungaDblock {
    min-width: 100%;
    object-fit: cover;
  }

  /* Ensure proper spacing between image and text */
  #spaMain p.iJustify {
    margin-top: 15px;
  }
}

/* List styling */
#spaMain ul.iLeft {
  list-style-type: none;
  padding-left: 5px;
  margin: 20px 0;
}

#spaMain ul.iLeft li {
  position: relative;
  padding: 8px 0 8px 30px;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--spa-text-medium);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

#spaMain ul.iLeft li:before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--spa-light-teal);
  font-size: 18px;
  line-height: 1.5;
}

/* Heading styling */
#spaMain h3.txtDarkGreen {
  color: var(--spa-medium-teal);
  font-size: 22px;
  font-weight: 500;
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--spa-pastel-mint);
}

/* Container styling */
.leoxSudlanan {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Italics styling */
#spaMain i {
  color: var(--spa-text-medium);
  font-style: italic;
  font-weight: 300;
}

/* Navigation styling */
.desktop_TopSubMenu ul li a,
.desktop_BottomSubMenu ul li a {
  color: var(--spa-medium-teal) !important;
  transition: color 0.3s ease;
}

.desktop_TopSubMenu ul li a:hover,
.desktop_BottomSubMenu ul li a:hover {
  color: var(--spa-dark-teal) !important;
  text-decoration: none;
}

.desktop_TopSubMenu ul li.selected a,
.desktop_BottomSubMenu ul li.selected a {
  color: var(--spa-dark-teal) !important;
  font-weight: bold;
}

/* Footer styling */
[data-role="footer"] {
  background-color: var(--spa-pastel-mint);
  border-top: 1px solid var(--spa-border-light);
  padding-top: 20px;
}

/* Mobile responsiveness improvements */
@media only screen and (max-width: 768px) {
  #spaMain {
    padding: 15px;
  }

  .leoxTitle1 {
    font-size: 24px;
  }

  #spaMain p.iJustify {
    font-size: 15px;
    line-height: 1.6;
  }

  #spaMain ul.iLeft li {
    font-size: 15px;
  }

  #spaMain img.IpatungaDblock {
    margin-bottom: 15px;
  }
}

/* Additional responsive adjustments for smaller screens */
@media only screen and (max-width: 600px) {
  /* Remove padding and margin for key elements */
  #spaMain {
    padding: 10px 5px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
  }

  .leoxSudlanan {
    padding: 10px 0;
    border-radius: 0;
    box-shadow: none;
  }

  #spaMain img.IpatungaDblock {
    border-radius: 0;
    box-shadow: none;
  }

  #spaMain img.padding3px {
    padding: 0;
    border: none;
  }

  #spaMain .spacer30px {
    height: 15px;
  }

  #spaMain p {
    margin-bottom: 15px;
  }

  #spaMain ul.iLeft {
    margin: 10px 0;
  }

  #spaMain ul.iLeft li {
    padding: 5px 0 5px 20px;
    margin-bottom: 0;
  }

  .leoxTitle1 {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .leoxTitle1:after {
    width: 60px;
  }

  /* Adjust navigation for mobile */
  .desktop_TopSubMenu,
  .desktop_BottomSubMenu {
    padding: 0;
  }

  /* Fix for inline block elements on mobile */
  .IpatungaInlineBlock {
    display: block;
    width: 100%;
  }

  /* Ensure text is properly sized and aligned */
  #spaMain p.iJustify {
    text-align: left;
    padding: 0 5px;
  }

  /* Ensure proper content flow */
  .homeArticle {
    padding: 0;
  }

  /* Adjust breadcrumb navigation */
  .L_YourAreHere {
    padding: 5px;
  }

  /* Ensure footer is properly styled */
  [data-role="footer"] {
    padding-top: 10px;
  }
}

.spaTableWithPrice {
  margin: 0 auto;
  border-width: 0 0 0 0;
  border-spacing: 0;
}
.spaTableWithPrice tr:nth-child(odd) {
  line-height: 30px;
  color: rgb(1, 75, 66);
  font-weight: bold;
}
.spaTableWithPrice tr:nth-child(odd) i {
  color: #000;
}

.spaTableWithPrice .rowHighlighted {
  /*background-color: rgba(0,0,0,0.07); */
  /*background-color: rgba(1,75,66,0.07);*/
}
.spaTableWithPrice tr:nth-child(even) p {
  margin-top: 0;
  margin-left: 0;
}
.spaTableWithPrice td:nth-child(1) {
  text-align: left;
  padding-left: 10px;
}
.spaTableWithPrice td:nth-child(2) {
  width: 78px;
  text-align: right;
  padding-right: 10px;
}

#mogambosprings .ui-listview .ui-li-divider {
  margin-bottom: 0px;
}

#mogambosprings .ui-listview li {
  margin-bottom: -10px;
}
#mogambosprings .ui-listview li h4 i {
  color: black;
}
#mogambosprings #LovingLifeDay1 li p,
#mogambosprings #LovingLifeDay2 li p {
  font: 14px Arial;
  text-overflow: initial;
  overflow: visible;
  white-space: normal;
}

#spaTreatMents,
#spaLovingLife,
#spaIndugencePac,
#spaNailSalon {
  margin: 0 auto;
  max-width: 800px; /* with of treats pic width;*/
}

#spaTreatMents .ui-collapsible-set,
#spaLovingLife .ui-collapsible-set,
#spaIndugencePac .ui-collapsible-set,
#spaNailSalon .ui-collapsible-set {
  margin: 15px 3px 0;
}
#spaTreatMents .ui-collapsible,
#spaLovingLife .ui-collapsible {
  border-radius: 3px;
  padding: 2px 0;
  margin-bottom: 5px;
  text-shadow: none;
}
#spaTreatMents .ui-collapsible-heading,
#spaLovingLife .ui-collapsible-heading {
  /*border: 1px solid teal;*/
}

#spaTreatMents .ui-collapsible-content,
#spaLovingLife .ui-collapsible-content {
  background: #f6f6f6;
  padding: 8px;
  border: none;
  border-top: 1px solid #ddd;
}
#spaTreatMents .ui-collapsible .ui-btn,
#spaLovingLife .ui-collapsible .ui-btn {
  border-bottom: none;
  border-style: none;
  color: teal;
  text-shadow: none;
  box-shadow: none;
}
#spaTreatMents .ui-mini.ui-btn-icon-right:after,
#spaLovingLife .ui-mini.ui-btn-icon-right:after {
  background-color: teal;
  -webkit-border-radius: 0;
  border-radius: 0;
}

#spaLovingLife ul li {
  padding-top: 5px;
  /*padding-left: 20px;*/
  line-height: 20px;
  /*list-style-type: none;*/
  /*background: url(pbayImages/bullet.png) no-repeat 0 10px;*/
  list-style: square url(pbayImages/favicon.ico);
}

.divRoomCategory {
  margin: 0 auto;
  max-width: 572px;
  background-color: #fff;
  vertical-align: top;
  text-align: left;
  padding: 10px;
  border-radius: 3px;
  border: 1px dotted rgba(0, 75, 66, 0.3);
  -moz-box-shadow: 3px 3px 3px 1px rgba(0, 128, 128, 0.1),
    0px 0px 3px 1px rgba(0, 128, 128, 0.1);
  -webkit-box-shadow: 3px 3px 3px 1px rgba(0, 128, 128, 0.1),
    0px 0px 3px 1px rgba(0, 128, 128, 0.1);
  box-shadow: 3px 3px 3px 1px rgba(0, 128, 128, 0.1),
    0px 0px 3px 1px rgba(0, 128, 128, 0.1);
}
.divRoomCategory hr {
  border-color: rgba(255, 255, 204, 0.2);
}
.divRoomCategory h4 {
  margin-top: 0;
  color: rgb(1, 75, 66);
  text-align: left;
  background: url(pbayImages/gauze.png) #ececec;
  padding: 8px 15px 8px;
  margin-bottom: 0;
}
.divRoomCategory h3 span {
  /* Price */
  float: right;
}

.divRoomCategory p {
  margin-bottom: 1px;
  margin-left: 10px;
}
.divRoomCategory .ui-listview {
  padding: 0 10px;
  box-shadow: none;
}
.divRoomCategory ul.ui-listview li {
  border: none;
}
.divRoomCategory img.rmDetails {
  cursor: pointer;
}
@media only screen and (min-width: 180px) {
  .divRoomCategory {
    margin: 5px 3px 50px 3px;
    padding: 3px;
  }
  .divRoomCategory h3 span {
    display: none;
  }
  .leoxTitle {
    font-size: 23px;
  }
}

@media only screen and (min-width: 370px) {
  .divRoomCategory {
    margin: 0 auto;
    padding: 10px;
  }
  .divRoomCategory h3 span {
    display: inline-block;
  }
  .leoxTitle {
    font-size: 28px;
  }
}

.roomDetailsTbl {
  margin-left: 10px;
  max-width: 550px;
  border-width: 1px 1px 1px 1px;
  border-spacing: 0;
  border-color: #d2bd86;
  border-collapse: collapse;
  border-style: solid;
}
.roomDetailsTbl td {
  border-width: 0 0 1px 1px;
  border-spacing: 0;
  border-color: #d2bd86;
  border-collapse: collapse;
  border-style: solid;
  padding: 8px 8px 8px 13px;
}
.roomDetailsTbl td:nth-child(1) {
  text-align: left;
  color: rgb(1, 75, 66);
  font-weight: bold;
}
.roomDetailsTbl td:nth-child(2) {
  text-align: right;
  font-weight: bold;
  max-width: 80px;
}

.roomAction a.ui-btn {
  color: teal !important;
  font: bold 14px Arial;
  text-shadow: none;
  background-color: transparent;
  padding-top: 4px;
  padding-right: 3px;
  padding-bottom: 4px;
  border: none;
}
.roomAction a.ui-btn:hover {
  color: red !important;
  text-shadow: none;
  background-color: transparent;
}
.roomAction a.ui-btn:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.roomAction .ui-btn-icon-left {
  padding-left: 2em;
}
.roomAction .ui-btn-icon-left:after {
  background-color: teal;
  border-radius: 3px;
  left: 0;
}
.roomAction {
  text-align: left;
  margin: 15px 0;
}

.Menu .rest-menu-item-title {
  text-transform: capitalize;
}
#spaMain ul,
#spaReminders ul {
  list-style-type: none;
}

#spaMain ul li::before,
#spaReminders ul li::before {
  content: "";
  position: absolute;
  margin-top: 4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #efbb35;
  margin-left: -15px;
}

.salonWax {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (min-width: 520px) {
  .salonWax {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Mobile-first responsive styles for therapy images gallery using CSS Grid */
.therapy-images-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto;
  padding: 0 15px;
  padding-bottom: 0;
  max-width: 100%;
}

.therapy-images-gallery > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.therapy-images-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.therapy-images-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Small mobile devices: Single column (base - mobile-first) */
/* No media query needed - this is the default */

/* Larger mobile devices: 2 columns */
@media only screen and (min-width: 480px) {
  .therapy-images-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
  }
}

/* Tablets: 2 columns with better spacing */
@media only screen and (min-width: 768px) {
  .therapy-images-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 40px;
    max-width: 800px;
  }
}

/* Medium desktop: 4 columns with proper sizing */
@media only screen and (min-width: 1024px) {
  .therapy-images-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    max-width: 1000px;
    width: 100%;
  }

  .therapy-images-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    min-height: 200px;
  }
}

/* Large desktop: 4 columns with larger sizing */
@media only screen and (min-width: 1200px) {
  .therapy-images-gallery {
    max-width: 1200px;
    gap: 24px;
  }

  .therapy-images-gallery img {
    min-height: 240px;
  }
}

/* Extra large desktop: Even larger images */
@media only screen and (min-width: 1400px) {
  .therapy-images-gallery {
    max-width: 1400px;
    gap: 28px;
  }

  .therapy-images-gallery img {
    min-height: 280px;
  }
}

/* Red Light Healing Page - Mobile-First Responsive Styles */
.red-light-content {
  color: #000000;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Mobile-first base styles */
.red-light-title {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--spa-dark-teal);
  line-height: 1.3;
}

.red-light-intro,
.red-light-text {
  font-size: 1rem;
  margin-top: 1.5rem;
  text-align: left;
  line-height: 1.6;
  color: var(--spa-text-medium);
}

.red-light-note {
  margin-top: 0.5rem;
}

.red-light-description {
  text-align: justify;
  margin-top: 2rem;
}

.red-light-subtitle {
  font-size: 1.125rem;
  margin-top: 2rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 600;
  color: var(--spa-dark-teal);
}

.red-light-image {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.red-light-pricing-list,
.red-light-features-list,
.red-light-benefits-list {
  margin-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 0;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
}

.red-light-pricing-list {
  margin-left: 1rem;
}

.red-light-features-list li,
.red-light-benefits-list li {
  margin-bottom: 1rem;
}

.red-light-feature-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  text-align: left;
  line-height: 1.6;
  color: var(--spa-text-medium);
}

.desktop-only {
  display: none;
}

/* Tablet and up (600px+) */
@media only screen and (min-width: 600px) {
  .red-light-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .red-light-title {
    font-size: 1.75rem;
    margin-top: 2rem;
  }

  .red-light-intro,
  .red-light-text {
    font-size: 1.0625rem;
    margin-top: 2rem;
  }

  .red-light-description {
    margin-top: 3rem;
  }

  .red-light-subtitle {
    font-size: 1.25rem;
    margin-top: 3rem;
  }

  .red-light-image {
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }

  .red-light-pricing-list {
    margin-left: 2rem;
  }

  .red-light-features-list,
  .red-light-benefits-list {
    margin-left: 1rem;
  }

  .desktop-only {
    display: inline;
  }
}

/* Desktop (768px+) */
@media only screen and (min-width: 768px) {
  .red-light-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .red-light-title {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .red-light-intro,
  .red-light-text {
    font-size: 1.125rem;
    margin-top: 2.5rem;
    line-height: 1.7;
  }

  .red-light-description {
    margin-top: 4rem;
  }

  .red-light-subtitle {
    font-size: 1.375rem;
    margin-top: 4rem;
  }

  .red-light-image {
    margin: 2.5rem 0;
  }

  .red-light-pricing-list {
    margin-left: 3rem;
  }

  .red-light-features-list,
  .red-light-benefits-list {
    margin-left: 1.5rem;
    margin-top: 2rem;
  }

  .red-light-benefits-list {
    margin-bottom: 3rem;
  }
}

/* Large Desktop (1024px+) */
@media only screen and (min-width: 1024px) {
  .red-light-content {
    max-width: 820px;
    margin-left: 50px;
    padding: 0;
  }

  .red-light-title {
    font-size: 1.5rem;
    margin-top: 3.75rem;
  }

  .red-light-intro {
    margin-top: 1.5rem;
  }

  .red-light-text {
    margin-top: 4.375rem;
  }

  .red-light-description {
    margin-top: 5rem;
  }

  .red-light-subtitle {
    font-size: 1.125rem;
    margin-top: 7.5rem;
  }

  .red-light-image {
    margin-bottom: 1.25rem;
  }

  .red-light-pricing-list {
    margin-left: 5.625rem;
    margin-top: 1.875rem;
  }

  .red-light-features-list {
    margin-left: 1.875rem;
    margin-top: 1.875rem;
  }

  .red-light-benefits-list {
    margin-left: 1.875rem;
    margin-top: 1.875rem;
    margin-bottom: 4.375rem;
  }

  .red-light-feature-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0.3125rem;
  }
}

/* -------- Tumoy sa spa.html  -------------------------------- */
