/* ============================================
   OSCAR CADRES - PREMIUM CSS ELEVATION
   Style: Excellence • Classe • Élégance
   ============================================ */

/* ============================================
   1. TYPOGRAPHY - Polices Premium
   ============================================ */

/* Police titre élégante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  /* Couleurs raffinées */
  --oscar-gold: #D4AF37;
  --oscar-gold-light: #E5C76B;
  --oscar-gold-dark: #B8962E;
  --oscar-deep: #0A0E1A;
  --oscar-slate: #141B2D;
  --oscar-accent: #1E293B;
  
  /* Ombres premium */
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-gold-hover: 0 0 60px rgba(212, 175, 55, 0.3);
  --shadow-elevation: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  
  /* Transitions fluides */
  --transition-elegant: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   2. HERO SECTION - Effet WOW
   ============================================ */

/* Titre avec police premium */
.hero-title {
  font-family: 'Playfair Display', serif !important;
  letter-spacing: 0.08em;
  text-shadow: 
    0 0 40px rgba(212, 175, 55, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Sous-titre élégant */
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Tagline plus humaine */
.hero-tagline {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: 1.5rem;
  opacity: 0.9;
}

/* ============================================
   3. GLASSMORPHISM - Cards Premium
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-elegant);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-gold-hover), var(--shadow-elevation);
}

/* ============================================
   4. BOUTONS CTA - Premium Hover
   ============================================ */

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--oscar-gold) 0%, var(--oscar-gold-dark) 100%);
  border: none;
  transition: var(--transition-bounce);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(212, 175, 55, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  position: relative;
  border: 2px solid var(--oscar-gold);
  background: transparent;
  transition: var(--transition-elegant);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--oscar-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-secondary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary:hover {
  color: var(--oscar-deep);
  border-color: var(--oscar-gold);
}

/* ============================================
   5. ANIMATIONS ÉLÉGANTES
   ============================================ */

/* Glow pulsé raffiné */
@keyframes elegant-glow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(212, 175, 55, 0.3),
      0 0 40px rgba(212, 175, 55, 0.1);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(212, 175, 55, 0.5),
      0 0 60px rgba(212, 175, 55, 0.2),
      0 0 80px rgba(212, 175, 55, 0.1);
  }
}

.animate-elegant-glow {
  animation: elegant-glow 4s ease-in-out infinite;
}

/* Float subtil */
@keyframes elegant-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  75% { transform: translateY(-4px) rotate(-0.5deg); }
}

.animate-elegant-float {
  animation: elegant-float 8s ease-in-out infinite;
}

/* Entrée fade-up */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

/* ============================================
   6. ESPACEMENTS GÉNÉREUX
   ============================================ */

.section-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-padding-lg {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* ============================================
   7. OVERLAY GRADIENT PREMIUM
   ============================================ */

.overlay-premium {
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.95) 0%,
    rgba(10, 14, 26, 0.7) 40%,
    rgba(20, 27, 45, 0.5) 100%
  );
}

/* ============================================
   8. LIENS FOOTER ÉLÉGANTS
   ============================================ */

.footer-link {
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-elegant);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.footer-link:hover {
  color: var(--oscar-gold);
  background: rgba(212, 175, 55, 0.1);
}

.footer-divider {
  color: rgba(148, 163, 184, 0.3);
  margin: 0 0.75rem;
}

/* ============================================
   9. SCROLLBAR ÉLÉGANTE
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--oscar-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--oscar-gold) 0%, var(--oscar-gold-dark) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--oscar-gold-light);
}

/* ============================================
   10. SÉLECTION TEXTE
   ============================================ */

::selection {
  background: var(--oscar-gold);
  color: var(--oscar-deep);
}

/* ============================================
   11. BADGES STATS PREMIUM
   ============================================ */

.stat-badge {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  transition: var(--transition-bounce);
}

.stat-badge:hover {
  border-color: var(--oscar-gold);
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--oscar-gold-light) 0%, var(--oscar-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   12. IMAGE HOVER PREMIUM
   ============================================ */

.img-premium {
  transition: var(--transition-elegant);
  filter: brightness(0.9) contrast(1.05);
}

.img-premium:hover {
  filter: brightness(1) contrast(1.1);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}
