/* DelhiBeautie — Tailwind companion styles */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #f4f4f5; }
body.locked { overflow: hidden; }

.hero-bg {
  background:
    linear-gradient(135deg, rgba(9,9,11,0.94) 0%, rgba(159,18,57,0.4) 50%, rgba(9,9,11,0.96) 100%),
    url('https://images.unsplash.com/photo-1539104036884-99d2c45d0e20?w=1920&q=80&auto=format&fit=crop&h=1080') center/cover no-repeat;
}
.hero-bg h1,
.hero-bg p,
.hero-bg nav { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

.prose-body { color: #d4d4d8; }
.prose-body p { color: #d4d4d8; }
.prose-body strong { color: #ffffff; }

.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9998;
}

.nav-link {
  position: relative;
  color: #e4e4e7;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fb7185;
  transition: width 0.25s ease;
}
.nav-link:hover { color: #fb7185; }
.nav-link:hover::after { width: 100%; }

.card-hover {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(225,29,72,0.15);
}

.girl-img { background-size: cover; background-position: center top; }

.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: #16a34a;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: left;
}
.contact-wa-btn:hover { background: #22c55e; }
.contact-wa-btn:active { transform: scale(0.98); }
.contact-wa-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wa-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  line-height: 1.2;
}
.contact-wa-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.contact-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid #3f3f46;
  color: #e4e4e7;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-call-btn:hover {
  border-color: #71717a;
  color: #fff;
}
@media (min-width: 640px) {
  .contact-wa-btn { padding: 0.875rem 1.25rem; }
  .contact-wa-num { font-size: 1.05rem; }
}

.filter-btn.active {
  background: #e11d48 !important;
  border-color: #e11d48 !important;
  color: white !important;
}

.age-gate.is-hidden { display: none !important; }

.age-panel { animation: ageIn 0.45s cubic-bezier(0.22,1,0.36,1); }
@keyframes ageIn {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.fab-pulse { animation: fabPulse 2.5s ease infinite; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

.loc-link {
  display: block;
  color: #f4f4f5;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.loc-link:hover {
  border-color: rgba(225,29,72,0.4) !important;
  color: #fb7185;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-hover:hover { transform: none; }
  .fab-pulse { animation: none; }
  .age-panel { animation: none; }
}