﻿/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  border: thin #DEC861 solid;
  background: #fff;
  color:#333;
}

#wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px 50px;
}

#wrapper ul {
  padding-left: 1.2rem;
  list-style-position: outside;
  text-align: left;
}

/* Header */
.header {
  background: linear-gradient(135deg, #FFD9FF, #FFFFFF);
  padding: 15px 5px;
  border-radius: 12px;
  text-align: center;
  color: #CC0066;
  margin-bottom: 25px;
  border: thin #DEC861 solid;
}

.header h1 {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #d63384;
}
 .search-container {
  display: flex;
  justify-content: center;
  margin-top: -10px; /* pull up the search bar */
  margin-bottom: -100px;
  padding-top: 0 !important;
  flex-direction: column;
  align-items: center;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #EC4899; /* Soft pink */
}

#siteSearch {
  width: 100%;
  padding: 14px 16px 14px 50px;
  border: 2px solid #EC4899;
  border-radius: 9999px;
  font-size: 18px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

#siteSearch.active {
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3); /* Golden glow on focus */
}

#suggestions {
  margin-top: 8px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  position: absolute;
  width: 100%;
  z-index: 999;
}

#linkContainer {
  margin: 20px auto;
  max-width: 600px;
}

#pagination {
  text-align: center;
  margin-top: 20px;
}

/* Navbar */
.navbar {
  background: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(107, 9, 85, 0.3);
  margin-bottom: 25px;
  border: thin #DEC861 solid;
}

.navbar a {
  color: #CC0066;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar a:hover,
.navbar a:focus {
  background-color: #CC0066;
  color: #f7b733;
  outline: none;
}

.text-rotator {
  text-align: center;
  padding: 10px;
  color: #6b0955;
}

.text-rotator p {
    text-align: center;
}

.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Container */
.container {
  margin: 0 auto 40px;
  text-align: center;
}
.container p {
  margin-left: 30px;
  text-align: left;
}

.container h3:hover {
  color: #FF00FF;
}

.container h2:hover {
  color: #FF00FF;
}

.center-text {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}
 
/* WhatsApp Contact Section */
.whatsapp-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-button:hover { 
    background-color: #1ebe5d;
 }

/* Headings and paragraphs */
 h2 {
  color: #d63384; 
  font-size: 28px; 
  margin-bottom: 20px;
  border: thin #DEC861 solid;
}

h3 {
  font-size: 1.4em;  /* Smaller than h2 */
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.4em;
  color: #CC0066;
  border: thin #DEC861 solid;
}

h4 {
  font-size: 1.1rem;
  color: #CC0066;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding-left: 0.6rem;
  border: thin #DEC861 solid;
}

p {
  max-width: 100%;
  margin: 10px auto 0 auto;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: #4a1a4a;
  text-align: left;
}

  ul.massage-list {
    list-style: none;            /* Removes default bullets */
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }

  ul.massage-list li {
    padding: 12px 16px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #86c5b8;  /* Soothing spa color */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: background-color 0.3s;
  }

  ul.massage-list li:hover {
    background-color: #eef7f5;
  }

  ul.massage-list li strong {
    color: #2e7066;
    font-weight: 600;
  }

  .video-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.video-container iframe {
  width: 100%;
  max-width: 700px;
  height: 360px;
  border-radius: 12px;
  border: none; /* optional: removes default iframe border */
}

.massage-types-info h3 {
    text-align: center;
}

.massage-types-info {
    text-align: left;
     margin-left: 30px;
  margin-right: 30px;
    padding: 20px;
}

 .daily-update {
  padding: 20px;
}

.daily-update h2 {
  text-align: center;
  color: #d63384; /* optional matching color */
}

.daily-update p,
.daily-update ul {
  text-align: left;
  margin-left: 30px;
  margin-right: 30px;
}

.destination {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 12px;
}

.flag-circle {
  width: 36px;
  height: 36px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3f8;
  color: #d63384;
  box-shadow: 0 0 0 2px #ffc107 inset;
}

 /* Make all images responsive */

figcaption {
  font-size: 0.9em;
  color: #555;
  margin-top: 0.5em;
}

figure {
  text-align: center;
  margin: 20px 0;
}

figure img {
  display: block; 
  margin: 0 auto;
  max-width: 100%;  
  height: auto;
}

.anchor-links {
      background-color: #fff;
      border: 2px solid #e9d8c6;
      padding: 1rem;
      margin-bottom: 2rem;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 0 5px rgba(191, 168, 128, 0.1);
}

.anchor-links a {
      margin: 0 1rem;
      color: #7c5e3b;
      text-decoration: none;
      font-weight: bold;
    }
    .anchor-links a:hover {
      text-decoration: underline;
      color: #bfa880;
    }

.massage-thumb {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Grid before footer for links */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin: 40px 0;
  padding: 0 10px;
}
/*region grid*/

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive columns */
  gap: 30px;
  padding: 20px;
}
.region-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-column li {
  margin: 8px 0;
  font-weight: 600;
  color: #6b0955;
}

.region-column li a {
  text-decoration: none;
  color: #b75d95;
  transition: color 0.3s ease;
}

.region-column li a:hover {
  color: #f7b733;
}


section ul li {
  text-align: left !important;
}

section ul {
  list-style: none;
  padding-left: 0;
}

section ul li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.5rem;
  text-align: left;
}

section ul li::before {
  position: absolute;
  left: 0;
  color: #cc0066;
  font-weight: bold;
}

/* Content pushes footer down */
.content {
  flex: 1;
}
  /* Footer styling */
.footer {
  background-color: white;
  border: thin #DEC861 solid;
  color: #d63384; /* Dark pink text color */
  text-align: center;
  padding: 30px;
  width: 100%; /* Full width */
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  margin-top: 20px; /* Space above the footer */
  clear: both; /* Ensure no floating elements are above */
}

/* Footer Links */
.footer-links {
  margin-bottom: 15px; /* Space between links and Back to Top button */
}

.footer-link {
  margin: 0 10px;
  color: #d63384; /* Dark pink color for links */
  text-decoration: none;
  font-weight: bold;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Back to Top button */
.backtotop {
  margin-top: 10px;
}

.backtotop button {
  background-color: white;
  color: #d63384;
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid gold;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.backtotop button:focus {
  outline: 2px solid #d63384;
  outline-offset: 4px;
}

.backtotop button:hover {
  background-color: #f1e5f3; /* Light hover effect */
}

.footer p {
    text-align: center;
}

/* Remove footer from being sticky */
footer {
  position: relative;
  bottom: auto;
  top: auto;
}

:root {
  --primary-color: #CC0066;
  --accent-color: #f7b733;
  --text-color: #4a1a4a;
  --background-color: #fff;
}

/* Then use these variables */
.header {
  color: var(--primary-color);
  background: linear-gradient(135deg, #FFD9FF, var(--background-color));
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  .container {
    max-width: 100%;
  }

  .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .row {
    grid-template-columns: 1fr;
  }

  /* ↓ Add these lines ↓ */
  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.95rem;
  }
}
 /* === Hamburger Icon === */
    .menu-icon-container {
      display: none; /* hidden by default */
      position: fixed;
      top: 15px;
      right: 20px;
      cursor: pointer;
      z-index: 10001;
    }

    .bar1, .bar2, .bar3 {
      width: 30px;
      height: 4px;
      background-color: #e91e63;
      margin: 6px 0;
      transition: 0.4s;
      border-radius: 2px;
    }

    .change .bar1 {
      transform: translateY(10px) rotate(-45deg);
      background-color: #ffd700;
    }

    .change .bar2 {
      opacity: 0;
    }

    .change .bar3 {
      transform: translateY(-10px) rotate(45deg);
      background-color: #ffd700;
    }

    /* === Responsive Nav === */
    @media (max-width: 1280px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        padding-top: 60px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      }

      .navbar.open {
        transform: translateX(0);
      }

      .menu-icon-container {
        display: block;
      }
    }