/* Midnight Rose — Вечерний гламур */
:root {
  --t-bg: #1A1425;
  --t-bg-alt: #231C32;
  --t-text: #F0EBF5;
  --t-text-muted: #A89DB8;
  --t-accent: #FF4D8A;
  --t-accent-hover: #E63E78;
  --t-surface: #2A2240;
  --t-border: #3D3458;
  --t-gold: #FFD700;
  --t-neon-pink: #FF4D8A;
  --t-font-heading: 'Abril Fatface', serif;
  --t-font-body: 'Poppins', sans-serif;
}

/* ===== Neon glow text ===== */
.neon-text {
  color: var(--t-neon-pink);
  text-shadow: 0 0 10px rgba(255, 77, 138, 0.5), 0 0 40px rgba(255, 77, 138, 0.2);
}

/* ===== Pulsing urgency animation ===== */
@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.pulse-text {
  animation: pulse-urgency 2s ease-in-out infinite;
}
.urgency-badge {
  animation: pulse-urgency 2.5s ease-in-out infinite;
}

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

/* ===== Nav scrolled state ===== */
.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Section divider ===== */
.section-divider {
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  margin: 0.75rem auto;
  background: var(--t-neon-pink);
}

/* ===== Event package cards ===== */
.event-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 77, 138, 0.15);
}
.event-card-featured {
  border-color: var(--t-neon-pink);
  box-shadow: 0 0 30px rgba(255, 77, 138, 0.2), inset 0 0 30px rgba(255, 77, 138, 0.03);
  animation: neon-card-glow 3s ease-in-out infinite alternate;
}
@keyframes neon-card-glow {
  from { box-shadow: 0 0 20px rgba(255, 77, 138, 0.15), inset 0 0 20px rgba(255, 77, 138, 0.02); }
  to { box-shadow: 0 0 40px rgba(255, 77, 138, 0.3), inset 0 0 40px rgba(255, 77, 138, 0.05); }
}
.event-card .event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-card .event-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

/* ===== Masonry showcase grid ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.showcase-item {
  aspect-ratio: 3/4;
  border-radius: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  color: #F0EBF5;
}
.showcase-item:hover { transform: scale(1.02); }
.showcase-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== Urgency banner ===== */
.urgency-banner {
  background: linear-gradient(135deg, var(--t-neon-pink), #FF6B9D);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { box-shadow: 0 0 20px rgba(255, 77, 138, 0.3); }
  to { box-shadow: 0 0 40px rgba(255, 77, 138, 0.6); }
}

/* ===== VIP review cards ===== */
.vip-review {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  position: relative;
}
.vip-review::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--t-neon-pink);
  opacity: 0.3;
}

/* ===== Stars ===== */
.stars { display: flex; gap: 2px; }
.stars svg { width: 1rem; height: 1rem; fill: var(--t-gold); }

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

/* ===== Floating CTA ===== */
.floating-cta a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.floating-cta a:hover { transform: scale(1.1); }

/* ===== Mobile sticky bar ===== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item:first-child { grid-row: span 1; aspect-ratio: 3/4; }
}

@media (min-width: 640px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-item:first-child { grid-row: span 2; aspect-ratio: auto; }
}
