/**
 * SECRET SANTA PAGE STYLES
 * Page dédiée Secret Santa - Édition Noël
 */

/* ============================================
   HERO SECRET SANTA
   ============================================ */

.secret-santa-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
    #0f172a 0%,
    #7f1d1d 50%,
    #065f46 100%
  );
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}

.secret-santa-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.2) 0%, transparent 50%),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" opacity="0.03">❄️</text></svg>');
  background-size: 100% 100%, 100% 100%, 100px 100px;
  animation: snowfall-bg 20s linear infinite;
  pointer-events: none;
}

@keyframes snowfall-bg {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 0 100px; }
}

.santa-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.santa-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #22c55e);
  color: white;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
  animation: pulse 2s ease-in-out infinite;
}

.santa-hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.gradient-christmas {
  background: linear-gradient(135deg, #dc2626, #22c55e, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.santa-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.santa-hero__cta {
  margin-bottom: var(--space-8);
}

.santa-hero__free {
  margin-top: var(--space-4);
  color: #fbbf24;
  font-size: var(--text-base);
  font-weight: 600;
}

.santa-hero__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

.trust-icon {
  color: #22c55e;
  font-weight: 900;
}

/* ============================================
   SANTA STEPS
   ============================================ */

.santa-steps {
  padding: var(--space-20) 0;
  background: white;
}

.santa-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.santa-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10);
  background: linear-gradient(135deg,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}

.santa-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.santa-step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #dc2626, #22c55e);
  border-radius: var(--radius-full);
  color: white;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.santa-step__icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
}

.santa-step h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.santa-step p {
  color: var(--color-text-secondary);
  margin: 0;
}

/* ============================================
   SANTA WHY
   ============================================ */

.santa-why {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg,
    rgba(220, 38, 38, 0.03) 0%,
    rgba(34, 197, 94, 0.03) 100%
  );
}

.santa-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.santa-feature {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.santa-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #dc2626;
}

.santa-feature__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.santa-feature h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.santa-feature p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   SANTA PRICING
   ============================================ */

.santa-pricing {
  padding: var(--space-20) 0;
  background: white;
}

.santa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto var(--space-8);
}

.santa-price-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.santa-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.santa-price-card--popular {
  border-color: #dc2626;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
  transform: scale(1.05);
}

.santa-price-card--popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dc2626, #22c55e);
  color: white;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}

.santa-price-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: var(--space-2);
}

.price-detail {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  text-align: left;
}

.price-features li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.price-features li:last-child {
  border-bottom: none;
}

.santa-pricing-note {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6);
  background: rgba(251, 191, 36, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* ============================================
   SANTA TESTIMONIALS
   ============================================ */

.santa-testimonials {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg,
    #0f172a 0%,
    #1e293b 100%
  );
}

.santa-testimonials .section__title,
.santa-testimonials .section__subtitle {
  color: white;
}

.santa-testimonials .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.santa-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.santa-testimonial {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.testimonial-stars {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: white;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.testimonial-author span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ============================================
   SANTA FAQ
   ============================================ */

.santa-faq {
  padding: var(--space-20) 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.faq-item h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: #dc2626;
  margin-bottom: var(--space-3);
}

.faq-item p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SANTA CTA FINAL
   ============================================ */

.santa-cta-final {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg,
    #7f1d1d 0%,
    #065f46 100%
  );
}

.santa-cta-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 5rem;
  margin-bottom: var(--space-6);
}

.santa-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-4);
}

.santa-cta-card > p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

.cta-guarantee {
  margin-top: var(--space-4);
  color: #fbbf24;
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .santa-steps__grid,
  .santa-features-grid,
  .santa-pricing-grid,
  .santa-testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .santa-price-card--popular {
    transform: scale(1);
  }

  .santa-hero__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .secret-santa-hero {
    min-height: 60vh;
    padding: 120px 0 60px;
  }

  .santa-hero__trust {
    flex-direction: column;
    gap: var(--space-4);
  }
}
