/* =============================================
   Salon Elite — "Премиум-салон" (violet dark)
   Font: Bodoni Moda + Manrope
   ============================================= */

:root {
  /* Backgrounds */
  --t-bg: #121015;
  --t-bg-alt: #1A1820;
  --t-bg-section: #121015;
  --t-bg-dark: #0E0C12;

  /* Text */
  --t-text: #E8E5F0;
  --t-text-muted: #9B95A8;
  --t-text-light: #6B6580;

  /* Accent — violet */
  --t-accent: #A78BFA;
  --t-accent-hover: #8B6FE0;
  --t-accent-light: rgba(167, 139, 250, 0.1);

  /* Surfaces */
  --t-surface: #1E1C25;
  --t-surface-warm: #252230;
  --t-border: #2D2840;

  /* Fonts */
  --t-font-heading: 'Bodoni Moda', 'Georgia', serif;
  --t-font-body: 'Manrope', system-ui, sans-serif;

  /* Radius */
  --t-radius: 0.75rem;
  --t-radius-lg: 1.25rem;

  /* Shadows */
  --t-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --t-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --t-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ---- Base ---- */
body {
  font-family: var(--t-font-body);
  color: var(--t-text);
  background: var(--t-bg);
}
h1, h2, h3, h4 {
  font-family: var(--t-font-heading);
}

/* ---- Hero ---- */
.hero-elite {
  background: linear-gradient(170deg, var(--t-bg-dark) 0%, var(--t-bg) 50%, var(--t-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero-elite::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(167,139,250,0.06), transparent 70%);
  pointer-events: none;
}
.hero-elite::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(139,111,224,0.04), transparent 70%);
  pointer-events: none;
}

/* ---- Section divider ---- */
.section-divider {
  width: 50px;
  height: 2px;
  background: var(--t-accent);
  margin: 0.5rem auto 0.75rem;
}

/* ---- Event packages ---- */
.event-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.35s, box-shadow 0.35s;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--t-shadow-lg);
}
.event-card.featured {
  border-color: var(--t-accent);
  position: relative;
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.12);
}
.event-card.featured::before {
  content: 'Хит';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.75rem;
  background: var(--t-accent);
  color: var(--t-bg);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
}
.event-price {
  font-family: var(--t-font-heading);
  font-size: 2rem;
  color: var(--t-accent);
  font-weight: 700;
}

/* ---- FAQ ---- */
.faq-item {
  background: var(--t-surface);
  overflow: hidden;
}
.faq-item summary {
  padding: 0.875rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--t-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  font-size: 0.6rem;
  transition: transform 0.3s;
  color: var(--t-text-muted);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

/* ---- Floating CTA ---- */
.floating-cta a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--t-shadow-md);
  transition: transform 0.3s;
}
.floating-cta a:hover { transform: scale(1.1); }

/* ---- Mobile CTA bar ---- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.5rem 0.75rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  background: rgba(18, 16, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--t-accent);
  display: flex;
  gap: 0.5rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.625rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
}

/* ---- Nav scrolled ---- */
.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
}

/* ---- Swiper ---- */
.swiper-pagination-bullet-active {
  background: var(--t-accent) !important;
}
.swiper-pagination-bullet {
  background: var(--t-text-light) !important;
}

/* ---- Float animation ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .event-card { padding: 1.5rem; }
}

@media (max-width: 640px) {
  .mobile-cta-bar { display: flex !important; }
  .floating-cta { display: none !important; }
}
