/* ============================================================
   style.css — StarBookings | Luxury Light Theme
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: White · Warm gold · Charcoal text · Light grey surfaces
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f8f7f4;
  --bg-3: #f0ede8;
  --bg-4: #e8e4dc;
  --gold: #b8922e;
  --gold-light: #d4a93c;
  --gold-pale: #fdf3dc;
  --charcoal: #1a1a1a;
  --dark: #2d2d2d;
  --muted: #7a7672;
  --light-muted: #b0ada8;
  --border: #e2ddd8;
  --border-gold: rgba(184, 146, 46, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dark);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

p {
  color: var(--muted);
}

/* ─── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--gold);
}

/* ─── Navigation ─────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: padding var(--transition), box-shadow var(--transition);
}

.main-nav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal) !important;
  letter-spacing: 0.02em;
}

.brand-star {
  color: var(--gold);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 8px 14px !important;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  filter: none;
}

.nav-dropdown {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
}

.nav-dropdown .dropdown-item {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 20px;
  transition: all var(--transition);
}

.nav-dropdown .dropdown-item:hover {
  background: var(--bg-2);
  color: var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: #fff !important;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 26px;
  transition: all var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 146, 46, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 26px;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff !important;
}

/* ─── Section Helpers ────────────────────────────────────── */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 16px 0 28px;
}

.gold-line-center {
  margin: 16px auto 28px;
}

.bg-navy-2 {
  background: var(--bg-2);
}

.bg-navy-3 {
  background: var(--bg-3);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg-2);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184, 146, 46, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(240, 237, 232, 0.9) 0%, transparent 70%);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--charcoal);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 24px 0 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-muted);
}

.hero-image-panel {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(8%) brightness(0.96);
}

.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 180px;
  box-shadow: var(--shadow-md);
}

.hero-img-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-img-badge span {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Celebrity Card ─────────────────────────────────────── */
.celeb-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.celeb-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.celeb-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.celeb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(5%);
}

.celeb-card:hover .celeb-card-img img {
  transform: scale(1.04);
}

.celeb-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 30px;
}

.unavailable-badge {
  background: #b0ada8;
  color: #fff;
}

.celeb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.45) 0%, transparent 50%);
}

.celeb-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.celeb-card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.celeb-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.celeb-card-known {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 16px;
}

.celeb-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ─── Category filter bar ────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ─── Service Cards ──────────────────────────────────────── */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  background: var(--gold-pale);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.service-card h5 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
}

.testimonial-date {
  font-size: 12px;
  color: var(--light-muted);
}

/* ─── Booking Modal ──────────────────────────────────────── */
.modal-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 24px 28px 20px;
  background: var(--bg-2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
}

.modal-body {
  padding: 28px;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  background: var(--bg-2);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-close {
  filter: none;
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: all var(--transition);
}

.form-control::placeholder {
  color: var(--light-muted);
}

.form-select option {
  background: var(--bg);
  color: var(--dark);
}

.form-control:focus,
.form-select:focus {
  background: var(--bg);
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 0 3px rgba(184, 146, 46, 0.12);
  outline: none;
}

/* ─── Celebrity Profile ──────────────────────────────────── */
.profile-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
}

.profile-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}

.profile-category-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.profile-known {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.profile-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.profile-meta-item i {
  color: var(--gold);
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.site-breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item a {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-item.active {
  font-size: 13px;
  color: var(--gold);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light-muted);
  content: '›';
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(184, 146, 46, 0.05) 0%, transparent 70%);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  color: var(--charcoal);
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 16px auto 0;
  position: relative;
}

/* ─── Contact Page ───────────────────────────────────────── */
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--gold-pale);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links li:not(:has(a)) {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 48px 0 28px;
}

.footer-bottom {
  padding: 0 0 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  max-width: 500px;
  text-align: right;
  margin: 0;
}

/* ─── WhatsApp float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

/* ─── Alerts ─────────────────────────────────────────────── */
.alert-success {
  background: #edf7f0;
  border-color: #b7dfc3;
  color: #2d7a47;
  border-radius: var(--radius);
}

.alert-danger {
  background: #fdf0f0;
  border-color: #f5c0c0;
  color: #c0392b;
  border-radius: var(--radius);
}

/* ─── Pagination ─────────────────────────────────────────── */
.page-link {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  color: var(--muted) !important;
  border-radius: var(--radius) !important;
  padding: 8px 14px;
  font-size: 13px;
  transition: all var(--transition);
}

.page-link:hover {
  background: var(--bg-2) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.page-item.active .page-link {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

/* ─── Utility ────────────────────────────────────────────── */
.text-gold {
  color: var(--gold) !important;
}

.text-muted-custom {
  color: var(--muted) !important;
}

.border-gold {
  border-color: var(--border-gold) !important;
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ─── Responsive tweaks ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-img-frame {
    display: none;
  }

  .section-pad {
    padding: 60px 0;
  }

  .footer-disclaimer {
    text-align: left;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}