/* =========================
   GLOBAL STYLES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #fde2f3, #f3e5f5);
  color: #3a003a;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */

header {
  background: linear-gradient(90deg, #8e44ad, #e84393);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #d4af37;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
}

/* For logo image on index page */
.logo img {
  height: 60px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

/* =========================
   NAVIGATION
========================= */

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  background: linear-gradient(135deg, #d4af37, #f7e48b);
  color: #4a004a;
  box-shadow: 0 4px 12px rgba(212,175,55,0.6);
}

/* =========================
   HERO SECTION
========================= */

.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(rgba(142,68,173,0.6), rgba(232,67,147,0.6)), 
              url('spa-bg.jpg') center/cover no-repeat;
  color: #fff;
  border-bottom: 4px solid #d4af37;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f7e27e);
  color: #4a004a;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212,175,55,0.7);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(212,175,55,0.9);
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

section h1,
section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #6a0572;
  font-size: 36px;
  position: relative;
}

section h1::after,
section h2::after {
  content: "";
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #d4af37, #f7e27e);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* =========================
   CARDS
========================= */

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card,
.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(142,68,173,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  transition: all 0.3s ease;
}

.card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(212,175,55,0.4);
}

.card h3,
.service-card h2 {
  color: #8e44ad;
  margin-bottom: 10px;
}

/* Images inside service cards */
.service-card img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid rgba(212,175,55,0.6);
}

/* =========================
   ABOUT PAGE
========================= */

.about {
  border-radius: 25px;
  padding: 80px 30px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 2000px rgba(255, 192, 203, 0.7);
}

.about p {
  background: rgba(255,255,255,0.85);
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}

/* =========================
   CONTACT FORM
========================= */

.contact form {
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(142,68,173,0.2);
  border: 2px solid rgba(212,175,55,0.4);
}

.contact label {
  font-weight: 600;
  display: block;
  margin-top: 16px;
  color: #6a0572;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 15px;
  border: 1px solid #e1bee7;
  margin-top: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* Service description box */
#serviceDescription {
  margin-top: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.4);
}

#serviceDescription p {
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid #e1bee7;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#serviceDescription p:hover {
  background: #f8c8ff;
  transform: translateX(5px);
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 25px;
  background: linear-gradient(90deg, #8e44ad, #e84393);
  color: #fff;
  border-top: 3px solid #d4af37;
  margin-top: 60px;
  font-size: 14px;
}
