:root {
  --primary: #0056A3;        /* Bleu profond (drapeau haïtien) */
  --secondary: #FF2400;       /* Rouge vif (sacrifice et force) */
  --accent: #FFD700;          /* Or (soleil, richesse culturelle) */
  --white: #FFF;              /* Blanc (paix, symbole central) */
  --text-dark: #111;
  --text-light: #FFF;

  /* Dégradés traditionnels */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent), var(--white));
  
  /* Ombres et effets */
  --glow: 0 0 8px var(--secondary), 0 0 15px var(--accent);
  --border-radius: 10px;
  --box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
@supports (color: oklch(0% 0% 0)) {
  :root {
    --primary: oklch(65% 0.25 270);
    --secondary: oklch(55% 0.4 15);
    --accent: oklch(85% 0.05 60);
    --tertiary: oklch(60% 0.2 140);
    --bg-1: oklch(96% 0 0);
    --bg-acc: oklch(55% 0.4 15);
    --gradient-primary: linear-gradient(135deg, oklch(65% 0.25 270), oklch(55% 0.4 15));
    --gradient-secondary: linear-gradient(135deg, oklch(85% 0.05 60), oklch(60% 0.2 140));
  }
}

/* Fond animé dynamique */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(120deg,
    var(--primary) 0%,
    var(--secondary) 35%,
    var(--accent) 70%,
    var(--primary) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 25s ease-in-out infinite;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Texture confetti subtile */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    60deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  ), 
  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23fff" opacity=".05" d="M50 0L63 38L100 38L69 62L82 100L50 76L18 100L31 62L0 38L37 38z"/></svg>') repeat 0 0;
  z-index: -1;
  animation: confettiMove 40s linear infinite;
  opacity: 0.1;
}

@keyframes confettiMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}
/* Import de polices */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;700&display=swap');

/* Typographie énergique */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  color: transparent;
  animation: explode 3s infinite alternate;
}

/* Hero section fullscreen */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero-title {
  font-size: 4rem;
  animation: explode 3s infinite alternate;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Boutons lumineux */
.btn {
  padding: 1.2rem 2.5rem;
  border-radius: 60px;
  background: var(--gradient-tertiary);
  color: var(--text-light);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 25px var(--secondary), 0 0 40px var(--secondary);
}

/* Cartes avec effet glass */
.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  border: 3px solid var(--accent);
}

.card:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--secondary);
}

/* Dancers animés */
.dancer {
  position: fixed;
  bottom: 0;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23fff" d="M50 5L55 25H75L60 38L65 58L50 45L35 58L40 38L25 25H45Z"/></svg>') no-repeat center/contain;
  z-index: 1;
  animation: dance 8s infinite ease-in-out;
  opacity: 0.3;
}

.dancer-1 { left: 10%; animation-duration: 6s; }
.dancer-2 { right: 15%; animation-duration: 10s; }

@keyframes dance {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* Section lineup avec parallaxe */
.lineup {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f00" d="M50 5L55 25H75L60 38L65 58L50 45L35 58L40 38L25 25H45Z"/></svg>') repeat center/cover;
  background-attachment: fixed;
  padding: 4rem 0;
  color: white;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Compteur avec effet pulsant */
.countdown {
  background: var(--gradient-secondary);
  color: var(--text-dark);
  text-align: center;
  padding: 4rem 1.5rem;
  font-size: 1.8rem;
  position: relative;
  overflow: hidden;
}

.time {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Titre explosion */
@keyframes explode {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(1deg); }
}

/* Liens arc-en-ciel */
a {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

a:hover {
  text-shadow: var(--glow);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .btn {
    width: 100%;
    font-size: 1.1rem;
  }
  .dancer {
    display: none;
  }
}

/* Masques flottants */
.floating-mask {
  position: fixed;
  width: 120px;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
  z-index: 0;
}

.mask-1 {
  top: 15%; left: 5%;
  animation-duration: 20s;
}

.mask-2 {
  bottom: 10%; right: 10%;
  animation-duration: 25s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0); }
}
/* Styles pour les boutons réseaux sociaux */
.social-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5rem;
}

.btn-label {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Styles pour le toggle de langue */
.language-toggle {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.lang-btn {
  background: var(--dark);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--dark);
}
:root {
  --footer-bg: #000;
  --footer-text: #fff;
  --accent-gold: #c4a742;
  --link-hover: #8b7b4c;
}

/* Reset global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

/* Footer plein écran */
.footer-black {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
margin: 0%;}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;

}

/* Logo */
.footer-brand {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo:hover svg path {
  fill: var(--link-hover);
}

.footer-desc {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Liens rapides */
.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.75rem 0;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

/* Réseaux sociaux */
.footer-social {
  flex: 1 1 200px;
}

.footer-social h3 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.2);
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.footer-bottom a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}