:root {
  --primary: #6b46c1;
  --gold: #d4af37;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
}
html{
    scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* NAVBAR */
nav {
  background: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f3e8ff, #ffffff);
}

.hero h1 {
  font-size: 32px;
  color: var(--primary);
}

.hero p {
  margin: 10px 0;
  font-size: 16px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

/* SECTION */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
}
#head2{
    text-align: center;
    margin-top: 100px;
    
}

/* SERVICES */
.services {
  padding: 40px 20px;
  display: grid;
  gap: 15px;
  column-count: 2;
  column-gap: 20px;
  
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  
}

/* ABOUT */
.about {
  text-align: center;
}

/* CONTACT */
.contact {
  text-align: center;
}

/* FOOTER */
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}
/* NAVBAR */
.navbar {
  background: white;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #6b46c1;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin-left: 15px;
  text-decoration: none;
  color: #6b46c1;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* LOGO */
.logo {
  width: 55px;
  height: auto;
  border-radius: 5%;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-logo {
  width: clamp(80px, 20vw, 140px);
  height: auto;
  margin-bottom: 15px;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  
}

/* DARK OVERLAY (luxury effect) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* TEXT ON TOP */
.hero-text {
  color: rgb(48, 37, 48);
  text-align: center;
  max-width: 600px;
  margin: 20px auto 40px;
}
/* HERO TEXT CONTAINER */
.hero-text {
  text-align: center;
  max-width: 650px;
  margin: auto;
  padding: 20px;
}

/* TITLE */
.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: #4b0082;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  color: #4b0082;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-paragraph{
   font-size: 18px;
  color: #4d4837;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}


.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color:#4A0050;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  padding: 12px 20px;
  background: #4A0050;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
/* GRID */
.products {
  width: 100%;
  max-width: 1200px; /* control how wide it can go */
  margin: 0 auto;
  padding: 20px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.product-card {
  width: 100%;
  max-width: 1000px; /* 👈 key change */
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: left; /* better for long text */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d4af37; /* gold accent */
  margin-top: 8px;
}

/* TITLE */
.product-card h3 {
  margin: 10px 0 5px;
  color: #4A0050;
}

/* TEXT */
.product-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* BUTTON */
.product-card .btn {
  display: inline-block;
  padding: 10px 15px;
  background: #4A0050;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

/* TRUST TEXT */
.secure {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgb(128, 128, 128);
}
/* MOBILE */
@media (max-width: 600px) {
  .hero {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}


.hero-image img {
  transition: transform 5s ease;
}

.hero:hover .hero-image img {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .services {
    column-count: 1;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none; /* hide for now (simple version) */
  }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #d4af37, #f3e8a9);
  padding: 12px 30px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* CONTAINER */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND (logo + name) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* NAME */
.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #4b0082; /* deep purple */
  letter-spacing: 1px;
}
/* LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #4b0082;
  font-weight: 500;
  position: relative;
}
/* HOVER EFFECT (underline animation) */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #4b0082;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }
  @media (max-width: 768px) {
  .brand-name {
    font-size: 16px;
  }

  .logo {
    width: 45px;
  }
}

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

.services-intro {
  animation: fadeUp 1s ease;
}
.featured {
   border-left: 5px solid #d4af37;
}


/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-image {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* subtle hover effect */
.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/*Image full body massage*/
.massage-image img {
  width: 100%;
  max-width: 220px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.massage-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}
.massage-image {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.video-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;/*changed from cover*/
}

/* Sound button */
.sound-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.video-cardhome {
  position:relative;
  width: 100%;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
}

.video-cardhome video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  margin: 10px 0;
  font-size: 18px;
}
.contact {
  background: #f9f7f4; /* soft warm tone */
}

.service-block {
  max-width: 900px;
  margin: 0 auto 50px;
  
}

.service-block h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #4A0050;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
  border-left: 5px solid #d4af37;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-item h4 {
  margin-bottom: 5px;
}

.service-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.note {
  margin-bottom: 15px;
}

/*Classes style*/

/* CLASS CARDS */
.class-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left: 5px solid #d4af37;
  transition: 0.3s;
}

.class-card:hover {
  transform: translateY(-5px);
}

.class-card h2 {
  color: #4b0082;
  margin-bottom: 10px;
}

.class-card ul {
  padding-left: 20px;
  margin: 15px 0;
}

.class-card li {
  margin-bottom: 5px;
}

.price {
  font-weight: bold;
  color: #6b46c1;
  margin: 10px 0;
}

.class-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.class-img-blade {
  width: 100%;
  height: 200px;
  object-fit: none;
  border-radius: 12px;
  margin-bottom: 15px;
}


@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    position: fixed; /* 🔥 KEY FIX */
    top: 0;
    right: -260px; /* hidden */
    width: 240px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px;
    display: flex;
    gap: 20px;
    transition: 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0; /* slide in */
  }
}