/* ============================================
   Auram Spa Thane — stylesheet
   ============================================ */

:root {
  --navy: #14163f;
  --navy-light: #1e2154;
  --indigo: #3730c9;
  --gold: #c8a96e;
  --gold-dark: #a8863f;
  --bg: #faf8f4;
  --bg-alt: #f2ede3;
  --text: #2a2a35;
  --text-soft: #5c5c68;
  --white: #ffffff;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 22, 63, 0.1);
  --shadow-lg: 0 20px 50px rgba(20, 22, 63, 0.16);
  --transition: 0.3s ease;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Lucide icons: scale with the parent's font-size, like a glyph ── */
svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2.25;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
h3 {
  font-size: 1.25rem;
}

p {
  color: var(--text-soft);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.eyebrow-center {
  text-align: center;
}
.eyebrow-light {
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(20, 22, 63, 0.25);
}
.btn-primary:hover {
  background: var(--indigo);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200, 169, 110, 0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(20, 22, 63, 0.06);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy);
  padding: 8px 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after {
  width: 100%;
}

.dropdown-caret {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-cta {
  flex-shrink: 0;
}

/* ── Services dropdown ── */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  transition-delay: 0.4s;
  z-index: 600;
}

/* Invisible bridge so the pointer can travel from the trigger down
   into the menu without the gap ever breaking :hover. */
.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  transition:
    background var(--transition),
    color var(--transition);
}
.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--indigo);
}

/* Desktop: hover opens dropdown */
@media (hover: hover) and (min-width: 901px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .has-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
  }
}

/* Touch / mobile: tap-to-toggle via .is-open class from JS */
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown.is-open .dropdown-caret {
  transform: rotate(180deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 700;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hamburger.is-open span {
  background: var(--white);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 22, 63, 0.85) 0%,
    rgba(20, 22, 63, 0.25) 55%,
    rgba(20, 22, 63, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── About ── */
.about {
  padding: 110px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  margin-bottom: 16px;
}
.about-text .btn {
  margin-top: 10px;
}
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}
.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  height: 420px;
  object-fit: cover;
}
.about-img-sub {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 260px;
  object-fit: cover;
  margin-top: 60px;
  border: 6px solid var(--white);
}

/* ── Services ── */
.services {
  padding: 110px 0;
  background: var(--bg-alt);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-lead {
  margin-top: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  scroll-margin-top: 110px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 26px 26px 30px;
}
.service-body h3 {
  margin-bottom: 12px;
}
.service-body p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── Why Choose Us ── */
.why-choose {
  padding: 110px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.why-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
  height: 380px;
  object-fit: cover;
  width: 100%;
}
.why-features {
  display: grid;
  gap: 26px;
}
.feature-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.feature-box h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.feature-box p {
  font-size: 0.94rem;
  margin: 0;
}

/* ── Contact ── */
.contact {
  padding: 110px 0 80px;
  background: var(--navy);
}
.contact .section-head h2 {
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.contact-card .feature-icon {
  margin: 0 auto 18px;
}
.contact-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.contact-card h3 a {
  color: var(--white);
}

/* ── Map ── */
.map-section {
  padding: 90px 0;
  background: var(--bg);
}
.map-section .section-head {
  margin-bottom: 36px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

/* ── CTA banner ── */
.cta-banner {
  padding: 120px 0;
  background:
    linear-gradient(120deg, rgba(20, 22, 63, 0.43), rgba(56, 48, 201, 0.507)),
    url("../img/hero-banner.webp") center 30% / cover no-repeat;
  background-attachment: fixed;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .cta-banner {
    background-attachment: scroll;
  }
}

/* ── Footer ── */
.site-footer {
  background: #0d0e28;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand,
.widget-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}
.footer-links li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-links a {
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 0.88rem;
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}
.footer-bottom i {
  color: var(--gold);
}

/* ── Floating action buttons ── */
.fab-stack {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  z-index: 800;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.fab:hover {
  transform: scale(1.1);
}
.fab-call {
  background: var(--navy);
}
.fab-whatsapp {
  background: #25d366;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 82vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 650;
  }
  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
  }
  .nav-link {
    color: var(--white);
    font-size: 1.05rem;
  }
  .nav-link::after {
    display: none;
  }

  .has-dropdown {
    width: 100%;
  }
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    margin-top: 10px;
  }
  .has-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }
  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.85);
  }
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 66vh;
    text-align: left;
  }
  .about-img-sub {
    margin-top: 0;
  }
  .about-media {
    grid-template-columns: 1fr;
  }
  .fab {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
  .map-embed iframe {
    height: 320px;
  }
}
