:root {
  --primary: #ff4081;
  --secondary: #9c27b0;
  --text: #c257d4;
  --bg: #000000;
  --card: rgba(34, 34, 34, 0.85);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
p{
  color: white;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: center;
}

p {
  margin-bottom: 12px;
  text-align: center;
}

/* ================= NAVBAR ================= */
/* NAVBAR */
.navbar {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  padding: 10px 0;
}

/* LOGO */
.logo img {
  width: 175px;
}

/* NAV CENTER */
nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* HOVER EFFECT (OLD STYLE FEEL) */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* CTA RIGHT */
.nav-cta {
  display: flex;
  justify-content: flex-end;
}

/* ================= HERO + CAROUSEL ================= */

.hero {
  position: relative;
  height: 60vh; /* 🔥 REDUCED from 85vh */
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

/* CAROUSEL */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transform: none; /* start slightly zoomed */
  transition: opacity 1.2s ease;
}

.hero-carousel .slide.active {
  opacity: 1;
  transform: none; /* 🔥 stays slightly zoomed */
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* TEXT ABOVE */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #9c27b0;

  text-shadow:
    1px 1px 0 #000000,
    -1px 1px 0 #9c27b0,
    1px -1px 0 #b4b4b4,
    -1px -1px 0 #b4b4b4;
}

.hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================= BUTTONS ================= */

.btn {
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.primary {
  background: var(--primary);
  color: white;
}

.primary:hover {
  background: var(--secondary);
}

.secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.secondary:hover {
  background: var(--primary);
  color: white;
}

.about-intro {
  padding: 20px 0;
  background: #000000;
  text-align: center;
}

.about-intro p {
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

.about-points {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.about-points li {
  margin: 8px 0;
  font-weight: 500;
  color: #9c27b0;
}

/* ================= WELLNESS SECTION ================= */

.wellness-section {
  padding: 30px 0;
  text-align: center;
}

/* LEAD TEXT */
.lead {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* HIGHLIGHT BOX (WEDDINGS) */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.15), rgba(156, 39, 176, 0.15));
  border: 1px solid rgba(255, 64, 129, 0.3);
  padding: 25px;
  border-radius: 14px;
  margin: 30px auto;
  max-width: 700px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.highlight-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.highlight-box p {
  color: #ddd;
}

/* SERVICES + PRODUCTS BLOCKS */
.services-overview,
.products-overview {
  margin-top: 40px;
}

.services-overview h3,
.products-overview h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta-section {
  margin-top: 40px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

/* BUTTON UPGRADE */
.btn-primary,
.btn-secondary {
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* SUBTLE ANIMATION */
.highlight-box,
.services-overview,
.products-overview,
.cta-section {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SECTIONS ================= */

section {
  padding: 30px 0;
}

/* ================= GRID ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ================= CARDS ================= */

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card:hover {
  transform: translateY(-3px);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= SERVICE DETAILS ================= */

.service-details {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #ccc;
  text-align: left;
}

/* BUTTONS INSIDE CARDS (FIX WIDTH ISSUE) */

.card .btn,
.card .toggle-btn {
  width: auto;
}

/* TOGGLE BUTTON */

.toggle-btn {
  margin-top: 8px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
}

.toggle-btn:hover {
  background: var(--secondary);
  color: #fff;
}

/* ================= CTA ================= */

.cta {
  text-align: center;
  background: #0a0a0a;
}

/* ================= FORMS ================= */

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
}

button {
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= FOOTER ================= */

.footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #aaa;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #111;
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;

  position: relative; /* 🔥 important */
}

/* CLOSE BUTTON FIXED INSIDE BOX */
.close-modal {
  position: absolute;
  top: 10px;
  right: 12px;

  font-size: 26px;
  cursor: pointer;
  color: #aaa;

  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  transition: 0.2s ease;
}

.close-modal:hover {
  background: rgba(255, 64, 129, 0.15);
  color: #ff4081;
}

select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  border: 1px solid #333;
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero {
    height: 45vh;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-carousel .slide {
    background-position: center 25%; /* better face framing */
  }

  .nav-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-cta {
    justify-content: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
