/* ========================================
   SECTION 1 : HERO - L'OUVERTURE MAGISTRALE
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 70%),
    linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  z-index: 1;
}

/* Vinyle supprimé - Arrière-plan simplifié */

/* Styles du vinyle supprimés */

/* Hero Content */
.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 1200px;
  padding: 0 var(--spacing-lg);
}

/* Typographie Hero - Précision Millimétrique */
.hero-title {
  font-family: var(--font-family);
  font-size: clamp(6rem, 20vw, 24rem);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.08em;
  line-height: 0.9;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  position: relative;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

/* Effet de brillance supprimé */

.title-letter {
  display: inline-block;
  color: #ffffff;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: 0.02em;
}

/* Hover effect supprimé - texte simple */

/* Animations supprimées - texte statique */

/* Tagline Rotative */
.tagline-rotator {
  position: relative;
  height: 60px;
  margin-bottom: var(--spacing-xl);
  overflow: hidden;
}

.tagline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateX(-50%) translateY(0) blur(0);
  /* Transition supprimée */
  white-space: nowrap;
}

.tagline.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0) blur(0);
}

.tagline::after {
  content: '|';
  margin-left: 8px;
  /* Animation supprimée */
  color: var(--color-primary);
}

/* Sous-titre poétique */
.hero-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-secondary);
  opacity: 0;
  /* Animation supprimée */
  margin-top: var(--spacing-xl);
}

/* Scroll Hint supprimé pour éviter les différences mobile/desktop */

/* Effet hover supprimé */

/* Hint text supprimé */

/* Toutes les animations @keyframes supprimées */

/* Responsive Design */
@media (max-width: 1024px) {
  
  .hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
  }
  
  .tagline {
    font-size: 20px;
  }
}

/* Media queries supprimées pour éviter les différences mobile/desktop */

/* Media queries supprimées pour éviter les différences mobile/desktop */

/* Performance Optimizations - Supprimées */

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .vinyl-texture {
    animation: none;
  }
  
  .title-letter {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
  
  .tagline {
    transition: none;
  }
  
  .hint-vinyl {
    animation: none;
  }
  
  .hero-title {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  
  
  
  .hero-title {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px #000000;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.8rem, 10vw, 6rem);
    letter-spacing: -0.06em;
  }
}
