/* assets/css/style.css - Bibi Saira Mehndi */

:root {
  --gold:       #b8860b;
  --gold-light: #d4a843;
  --maroon:     #7b2d42;
  --maroon-light:#c25478;
  --cream:      #fdf8f2;
  --blush:      #f9eff4;
  --text:       #2c1a22;
  --muted:      #7a6570;
  --border:     #e8d8e0;
  --shadow:     0 4px 24px rgba(123,45,66,.08);
}

/* ── Base ────────────────────────────────────── */
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Typography helpers ──────────────────────── */
.brand-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--maroon);
  line-height: 1;
}
.brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.tracking-wide { letter-spacing: 0.12em; }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--maroon);
}
.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 1rem 0;
  letter-spacing: .5rem;
}

/* ── Announcement Bar ────────────────────────── */
.announcement-bar {
  background: var(--maroon);
  color: #fff;
  font-size: .85rem;
}
.announcement-bar.offer {
  background: var(--gold);
}

/* ── Navbar ──────────────────────────────────── */
.bs-navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.navbar-brand { line-height: 1; }
.nav-link {
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: .5rem .75rem !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--maroon) !important; }

.btn-book {
  background: var(--maroon);
  color: #fff !important;
  border-radius: 2px;
  padding: .5rem 1.4rem !important;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-book:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0d6e4 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5e6c8 0%, transparent 70%);
  pointer-events: none;
}
.hero-kicker {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--maroon);
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 1.5rem 0 2rem;
  font-weight: 300;
}
.hero-img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 520px;
  box-shadow: 20px 20px 0 var(--blush);
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1rem;
  font-size: .78rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-badge i { color: var(--gold); }

/* ── Buttons ─────────────────────────────────── */
.btn-primary-custom {
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: .75rem 2rem;
  font-family: 'Jost';
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,45,66,.2);
}
.btn-outline-custom {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  border-radius: 2px;
  padding: .75rem 2rem;
  font-family: 'Jost';
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
  display: inline-block;
}
.btn-outline-custom:hover {
  background: var(--maroon);
  color: #fff;
}

/* ── Cards ───────────────────────────────────── */
.card-fancy {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.card-fancy:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ── Gallery ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--blush);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  loading: lazy;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123,45,66,.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-size: .85rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Pricing ─────────────────────────────────── */
.price-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: all .25s;
  position: relative;
  background: #fff;
}
.price-card:hover {
  border-color: var(--maroon);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--gold);
  background: var(--cream);
}
.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .8rem;
  border-radius: 50px;
}
.price-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.price-amount { font-size: 2.5rem; color: var(--maroon); font-family: 'Cormorant Garamond', serif; }
.price-list li { font-size: .9rem; padding: .35rem 0; border-bottom: 1px dotted var(--border); color: var(--muted); }
.price-list li:last-child { border: none; }
.price-list strong { color: var(--text); }

/* ── Services section ────────────────────────── */
.service-row {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border: none; }

/* ── Booking form ────────────────────────────── */
.booking-wrap {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Jost';
  font-size: .9rem;
  padding: .65rem 1rem;
  color: var(--text);
}
.form-control:focus, .form-select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123,45,66,.1);
}
.form-label { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }

/* ── Testimonials ────────────────────────────── */
.testimonial-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 4px 4px 0;
}
.testimonial-card p { font-style: italic; color: var(--muted); }
.testimonial-stars { color: var(--gold); letter-spacing: .1rem; }

/* ── Dividers ────────────────────────────────── */
.henna-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.henna-divider::before,
.henna-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.henna-divider span { color: var(--gold); font-size: 1.2rem; }

/* ── Sections ────────────────────────────────── */
section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }

/* ── WhatsApp float ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: .75rem 1.25rem .75rem 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
.wa-label { font-size: .8rem; font-family: 'Jost'; letter-spacing: .04em; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--maroon); }
.footer-hr { border-color: var(--border); }

/* ── Badges ──────────────────────────────────── */
.badge-maroon { background: var(--maroon); color: #fff; }
.badge-gold { background: var(--gold); color: #fff; }

/* ── Alert styles ────────────────────────────── */
.ann-offer { background: #fff8e8; border: 1px solid #f5c842; }
.ann-notice { background: #f9f0f4; border: 1px solid var(--border); }

/* ── Map ─────────────────────────────────────── */
.map-embed { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; }

/* ── Admin (minimal) ─────────────────────────── */
.admin-sidebar { background: #2c1a22; min-height: 100vh; }
.admin-sidebar .nav-link { color: rgba(255,255,255,.7) !important; font-size: .85rem; border-radius: 4px; }
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-sidebar .brand-script { color: var(--gold-light); }
.stat-card { border-left: 4px solid var(--maroon); }
.stat-card.gold { border-color: var(--gold); }

/* ── Utilities ───────────────────────────────── */
.text-maroon { color: var(--maroon) !important; }
.text-gold { color: var(--gold) !important; }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush); }

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-img { height: 320px; box-shadow: none; }
  .booking-wrap { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .wa-label { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
}
