﻿/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
  border: thin #DEC861 solid;
  color: #4a1a4a;
  line-height: 1.6;
}

#wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px 50px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #FFD9FF, #FFFFFF);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  color: #CC0066;
  margin-bottom: 25px;
  border: thin #DEC861 solid;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.header p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
}

/* Google Translate */
#google_translate_element {
  margin-top: 15px;
}

/* Navbar */
.navbar {
  background: linear-gradient(to left, #FFC6E2,#fee2fe, #ec008c, #fedafe, #FFE8FF);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(107, 9, 85, 0.3);
  margin-bottom: 25px;
  border: thin #DEC861 solid;
}

.navbar a {
  color: #FFFFFF;
  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;
}

/* Container */
.container {
  margin: 0 auto 40px;
  text-align: center;
}

.container h3:hover {
  color: #FF00FF;
}

.container h2:hover {
  color: #FF00FF;
}

   /* 🌸 Rotating Text Section */
    .text-rotator {
      background-color: var(--pink);
      text-align: center;
      padding: 0.3rem 1rem 2rem;
    }

    .text-rotator h1 {
      font-family: var(--font-main);
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 1rem;
      transition: opacity 0.5s ease-in-out;
    }

    .text-rotator p {
      font-size: 1.1rem;
      color: #444;
      max-width: 700px;
      margin: 0 auto;
      transition: opacity 0.5s ease-in-out;
      text-align:center;
    }

    /* 🌿 Image Slider */
    .hero-banner {
      position: relative;
      height: 80vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .text-rotator h1 {
        font-size: 2rem;
      }
      .text-rotator p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .text-rotator h1 {
        font-size: 1.5rem;
      }
      .text-rotator p {
        font-size: 0.95rem;
      }
    }

.video-container iframe {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(247, 183, 51, 0.3);
  display: block;
  margin: 0 auto;
}

.video-container p {
  text-align: center;
}

#wrapper ul {
  padding-left: 1.2rem;
  list-style-position: outside;
  text-align: left;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
  margin: 20px 0;
  text-align: center;
}

.whatsapp-contact a {
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.6);
  transition: background-color 0.3s ease;
}

.whatsapp-contact a:hover {
  background: #1da851;
}

/* Headings and paragraphs */
h2 {
  font-size: 1.8em;  /* Bigger than h3 */
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #CC0066; 
  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: 1.05rem;
  font-weight: 500;
  color: #4a1a4a;
  text-align: left;
}

 /* Make all images responsive */

.massage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem;
}

.massage-card {
  flex: 1 1 calc(25% - 1.5rem); /* 4 per row on large screens */
  max-width: 250px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: transform 0.3s;
}

.massage-card:hover {
  transform: scale(1.03);
}

.massage-card h3 {
  margin: 0;
  padding: 0.8rem;
  font-size: 1.1rem;
  background-color: #f8f8f8;
}

.massage-card img {
  width: 100%;
  height: auto;
  display: block;
}

.massage-card figcaption {
  font-size: 0.9rem;
  color: #777;
  padding: 0.5rem;
}

.massage-card .price {
  padding: 0.5rem 1rem 1rem;
  text-align: center; /* This centers all text inside the price block */
}

.massage-card .price p {
  margin: 0.3rem 0;
  text-align:center;
  display:block;
  width:100%;
}

.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;
    }
    
    .back-to-top {
  margin: 40px auto;
  text-align: left;
}

.backtotop {
  background: linear-gradient(135deg, #FFD9FF, #FFFFFF);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  color: #CC0066;
  border: thin #DEC861 solid;
}

.back-to-top a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #CC0066;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
}

.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);
}

/* Bottom image */
.bottomimage {
  text-align: center;
  margin: 40px 0 60px;
}

.bottomimage img {
  max-width: 150px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(107, 9, 85, 0.4);
}


/* 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;
}

/* Footer */
.footer {
  background: #f7b733;
  color: #4a1a4a;
  text-align: center;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 -3px 12px rgba(107, 9, 85, 0.25);
  position: relative;
  margin-top: 50px;
}

.footer p {
  margin: 0;
  font-weight: 600;
}

/* Back to top button */
.backtotop {
  margin-bottom: 15px;
  text-align: center;
}

.backtotop button {
  background-color: #6b0955;
  color: #f7b733;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.backtotop button:focus {
  outline: 2px solid #f7b733;
  outline-offset: 4px;
}

.backtotop button:hover {
  background-color: #4a1a4a;
}
.backtotop p {
	text-align:center;
}

: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;
  }

  .navbar {
    justify-content: center;
  }

  .container {
    max-width: 100%;
  }

  .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .row {
    grid-template-columns: 1fr;
  }

  .navbar a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  /* ↓ Add these lines ↓ */
  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.95rem;
  }
  @media (max-width: 1024px) {
  .massage-card {
    flex: 1 1 calc(50% - 1.5rem); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .massage-card {
    flex: 1 1 100%; /* 1 per row on mobile */
  }
}
}