*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scrolling */
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
}


.Wrapper {
  width: 1500px;
  margin: 0 auto;
}




/* Navbar */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: absolute;       
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: rgba(0,0,0,0.2); 
  z-index: 1000;
}

nav.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

nav.navbar ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

nav.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav.navbar ul li a:hover {
  color: #a1725c; /* warm orange accent */
}



/* Hamburger Button */
.navbar .hamburger {
  display: none; /* hidden by default on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar .hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Responsive Menu */
@media (max-width: 768px) {
  nav.navbar ul {
    position: absolute;
    top: 70px; /* below navbar */
    left: 50%;
    transform: translateX(-50%); /* center horizontally */
    width: 90%;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent */
    backdrop-filter: blur(10px); /* frosted glass */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    padding: 1.5em 0;
    display: none; /* hidden by default */
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 999; /* on top of everything */
  }

  nav.navbar ul.active {
    display: flex;
  }

  nav.navbar ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  nav.navbar ul li a:hover {
    color: #ffd700; /* gold accent on hover */
  }

  /* Hamburger */
  .navbar .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .navbar .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}













/* Base Hero styling */
header {background-color: #f8f8f8;}

.hero { 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  height: 80vh;
  background-image: url('../imgs/Hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay-left {
  background: rgba(0,0,0,0.25);
  padding: 2em 3em;
  color: white;
  border-radius: 10px;
  max-width: 450px;
  backdrop-filter: blur(2px);
}

/* Subtitle (Welcome to) */
.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d8c3a5;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Heading */
.overlay-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: #fff;
}

/* Description */
.hero-description {
  font-size: 1.2rem;
  color: #f0e5d8;
  font-weight: 400;
  margin-top: 0.2rem;
}

/* Apply animations with delays */
.animate-subtitle {
  animation: fadeSlideDown 0.8s ease forwards;
}

.animate-heading {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-desc {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 0 20px;
  }
  .overlay-left {
    max-width: 90%;
    padding: 1.5em 2em;
  }
  .overlay-left h2 {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* Animation keyframes */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}













/* About */
.About {
  display: flex;
  width: 100%;
  min-height: 400px;
}

.about-left, .about-right {
  width: 50%; /* Each takes half */
  padding: 2em;
}

.about-left {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3em;
}

.section-subtitle {
  color: goldenrod;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
}

.section-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #222;
}

.about-left p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 2em;
}




/* Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin: 2em 0;
}

.info-box {
  background-color: white;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  text-align: left;
}

.info-box h4 {
  margin: 0 0 0.5em;
  font-size: 1.1em;
  font-weight: 600;
  color: #222;
}

.info-box p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}




/* Btn */
.btn-primary {
  display: inline-block;
  width: 120px;
  padding: 5px 15px;
  background-color: gold;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d4af37; /* richer gold */
  transform: translateY(-2px);
}







/* About Right */
.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-right img {
  width: 90%;
  height: 90%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1100px) {
  .About {
    flex-direction: column; /* Stack left and right vertically */
  }

  .about-left, .about-right {
    width: 100%; /* Full width for both */
    padding: 2em;
  }

  .about-right img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }

  /* Centered and narrower info boxes */
  .info-grid {
    display: flex; /* switch from grid to flex for centering */
    flex-direction: column; /* stack vertically */
    align-items: center; /* center horizontally */
    gap: 1em;
    margin: 2em 0;
  }

  .info-box {
    width: 80%; /* narrower than full width */
    max-width: 500px; /* optional max width */
  }
}










/* Chromo Therapy */
/* New Section */
.sauna-therapy {
  padding: 80px 5%;
  background-color: #fdfdfd;
}

.therapy-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.therapy-left {
  flex: 1 1 45%;
}

.therapy-right {
  flex: 1 1 50%;
}

/* Updated Right Column - Image */
.chromotherapy-image {
  width: 100%;
  height: auto;
  border-radius: 0;  /* Removed border radius */
  box-shadow: none;  /* Removed box shadow */
}

/* Original Left Column */
.therapy-left h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.therapy-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}


/* Optional: Additional styles for responsive layout */
@media (max-width: 768px) {
  .therapy-left, .therapy-right {
    flex: 1 1 100%;
  }

  .therapy-left p {
    font-size: 16px;
  }
}












/* Services */
.Services {
  padding-left: 40px; 
  padding-right: 40px; 
  margin: 60px 0px;
}
.services {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Services Title */
.services-title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.services-title::before {
  content: "Our Services";
  position: absolute;
  top: -10px;
  left: -10px; /* move slightly to the left */
  font-size: 60px; /* bigger behind the title */
  font-weight: 900;
  color: rgba(0,0,0,0.05); /* very light */
  z-index: 0; /* behind the main title */
  pointer-events: none;
  user-select: none;
}

.services-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;         /* how far below the text */
  width: 50px;          /* underline length */
  height: 4px;          /* underline thickness */
  background-color: #e67e22; /* underline color */
  border-radius: 2px;   /* slightly rounded edges */
}






.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  gap: 20px;
  margin-top: 60px;
}

.service-box {
  display: flex;
  align-items: center;  /* Horizontal */
  justify-content: center;  /* Vertical */
  flex-direction: column;

  background-color: #fff;
  border: 1px solid #d8c3a5; /* beige border */
  padding: 20px;
  text-align: center;
  height: auto;
  min-height: 150px;
  border-radius: 2px; /* softer corners */
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-2px);
  background-color: #d9cbb4; /* beige background */
  color: white; /* white text */
}
  .service-box:hover p {
    color: white; /* make description white too */
  }


/* Responsive: switch to 2 columns */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional: 1 column on mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.service-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}







/* Booking Section Styles (like About Us) */
.booking-section {
  display: flex;
  max-width: 1200px;
  margin: 80px auto;
  flex-wrap: wrap;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.booking-left {
  flex: 1 1 50%;
  background: url("../../assets/imgs/PHL-03.jpg") center/cover no-repeat;
  min-height: 400px;
}

.booking-right {
  flex: 1 1 50%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}

.booking-right h2 {
  font-size: 2rem;
  color: #3e2c23;
  margin-bottom: 20px;
  font-weight: 600;
}

.booking-right p {
  font-size: 1rem;
  color: #5a4a3f;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-booking {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3e2c23;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-booking:hover {
  background-color: #5a4a3f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-section {
    flex-direction: column;
  }
  .booking-left, .booking-right {
    flex: 1 1 100%;
  }
  .booking-right {
    padding: 40px 20px;
  }
}













/* Clean Typographic Banner */
.shine-banner-2 {
  background: linear-gradient(90deg, #f5f0e1, #d8c3a5); /* soft gold/beige gradient */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shine-content .pre-line {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555; /* subtle text */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.shine-content .main-line {
  font-size: 3rem;
  font-weight: 800;
  color: #222; /* dark wood accent */
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
}

/* Add a thin accent line under the main line */
.shine-content .main-line::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d8c3a5; /* soft gold/beige */
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .shine-content .main-line {
    font-size: 2rem;
    letter-spacing: 3px;
  }
  .shine-content .pre-line {
    font-size: 1rem;
  }
}












/* Benefits Section */
.benefits {
  padding: 60px 40px;
  background-color: #f8f6f2;
}

.benefits-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.benefits-left {
  flex: 1;
}

.benefits-left p {
  color: #555;
  line-height: 1.6;
}

/* Benefits list */
.benefits-right {
  flex: 1;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}

.benefits-list li {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list i {
  color: #5c4033; /* dark wood accent */
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-container {
    flex-direction: column;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
}















/* FAQ Section */
.faq-section {
  display: flex;
  width: 100%;
  min-height: 400px;
  padding: 4em 2em;
  background-color: #f8f6f2;
}

.faq-left, .faq-right {
  width: 50%;
  padding: 2em;
}

/* Left Column */
.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Right Column */
.faq-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-right img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-section {
    flex-direction: column;
  }
  .faq-left, .faq-right {
    width: 100%;
    text-align: center;
    padding: 1em;
  }
}











/* Single Session Section */
.single-session-section {
  background-color: #f8f8f8;
  padding: 40px 0;
  text-align: center;
}

.single-session-container {
  max-width: 900px;
  margin: 0 auto;
}

.single-session-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-session-embed {
  display: inline-block;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Buy Now Section */
.buy-now-section {
  background-color: #f8f8f8;
  padding: 40px 0;
  text-align: center;
}

.buy-now-container {
  max-width: 900px;
  margin: 0 auto;
}

.buy-now-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.buy-now-button-container {
  display: inline-block;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.buy-now-button {
  display: inline-block;
  font-size: 18px;
  line-height: 48px;
  height: 48px;
  color: #ffffff;
  min-width: 212px;
  background-color: #006aff;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  border-radius: 6px;
  text-decoration: none;
}

.buy-now-button:hover {
  background-color: #0051cc;
}

/* Responsive for mobile screens */
@media (max-width: 768px) {
  .buy-now-container {
    width: 80%;
  }

  .buy-now-button {
    min-width: 100%;
    font-size: 16px;
  }
}








/* Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 40px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  justify-content: space-between;
  flex-direction: row;
}

.footer-col {
  max-width: 300px;
}

.footer-col h3.footer-logo {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d8c3a5; 
}

/* Social icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 1.3rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d8c3a5;
}



/* Footer Bottom */
.footer-bottom {
  padding: 15px 20px;
  background-color: #1a1a1a; 
  color: #ccc;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  text-align: center;
  flex: 1;
}

.footer-bottom .powered-by {
  text-align: center;
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col.col-1 {
    text-align: center;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .copyright,
  .footer-bottom .powered-by {
    flex: unset;
    margin: 5px 0;
  }
}










.footer-credit {
  background-color: #111; /* darker than main footer for contrast */
  color: #ccc;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 0;
}

.footer-credit a {
  color: #d8c3a5; /* match your beige/gold theme */
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  color: gold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center; /* <-- center all columns horizontally */
  }

  .footer-col {
    max-width: 300px; /* optional, keeps them from getting too wide */
    width: 90%;        /* makes them shrink a little on mobile */
    margin: 10px auto; /* centers the columns */
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .copyright,
  .footer-bottom .powered-by {
    flex: unset;
    margin: 5px 0;
  }
}
