/* --- IMPORTATION DES POLICES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Roboto:wght@300;400;500&display=swap');

/* --- VARIABLES GLOBALES (THEME DARK INDUSTRIAL) --- */
:root {
  /* Couleurs */
  --accent-color: #FBD304; /* Jaune Sécurité (High-Tech) */
  --bg-color: #050505;     /* Noir quasi pur */
  --bg-secondary: #0f0f0f; /* Gris très sombre pour les sections */
  --card-bg: #141414;      /* Gris anthracite pour les cartes */
  
  /* Texte */
  --text-main: #e0e0e0;    /* Blanc cassé (plus doux pour les yeux) */
  --text-muted: #888888;   /* Gris pour les détails */
  
  /* Bordures */
  --border-color: #333333;
}

/* --- BASE --- */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Légère trame de fond pour l'effet technique */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 40px;
  
  /* 👇 ON CHANGE LA HAUTEUR ICI (80px -> 120px) */
  height: 120px; 
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: height 0.3s ease; /* Animation fluide si on change de taille */
}

/* --- LOGO AVEC ANIMATION --- */
.logo {
  height: 90px; /* Grande taille */
  width: auto;
  cursor: pointer;
  
  /* Animation fluide avec un petit effet "rebond" */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
  /* 1. On l'agrandit (Scale) */
  /* 2. On le fait pencher (Rotate) comme avant */
  transform: scale(1.1) rotate(5deg);

  /* 3. On ajoute la lueur (Glow) */
  /* J'ai mis la couleur Jaune (var(--accent-color)) pour aller avec le thème */
  filter: drop-shadow(0 0 20px var(--accent-color));
}

/* RESPONSIVE MOBILE (On garde le logo petit sur téléphone) */
@media (max-width: 768px) {
  .logo {
    height: 50px; 
  }
}

/* --- NAVIGATION --- */
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav ul li a:hover { color: var(--accent-color); }
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }

/* --- HERO SECTION --- */
.background-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* On assombrit la vidéo pour que le texte reste lisible */
  filter: grayscale(100%) contrast(1.2); /* Vidéo en noir et blanc pour le style pro */
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
}

/* --- TYPOGRAPHIE --- */
h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0 0 20px 0;
  color: #fff;
  line-height: 1;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 700px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* --- BOUTONS --- */
.btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 35px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px; /* Coins carrés pour le look robotique */
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

/* Bouton Jaune */
.btn-primary, .btn {
  background-color: var(--accent-color);
  color: #000; /* Texte noir sur jaune */
}
.btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Bouton Contour (Outline) */
.btn-secondary, .btn-discord {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-secondary:hover, .btn-discord:hover {
  background-color: #fff;
  color: #000;
}

/* Boutons Réseaux spécifiques (optionnel) */
.btn-youtube { border-color: #ff0000; color: #ff0000; }
.btn-youtube:hover { background: #ff0000; color: white; }
.btn-twitch { border-color: #9146ff; color: #9146ff; }
.btn-twitch:hover { background: #9146ff; color: white; }

.icon { width: 18px; height: 18px; }

/* --- CARTES PROJETS --- */
.projets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  margin-top: 50px;
}

.projet-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.projet-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color); /* Bordure jaune au survol */
}

.projet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(40%); /* Images légèrement désaturées */
  transition: filter 0.3s;
}
.projet-card:hover img { filter: grayscale(0%); }

.projet-content { padding: 30px; text-align: left; }
.projet-content h2 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.projet-content p { color: var(--text-muted); font-size: 0.95rem; }

/* --- ABOUT & RADIO BOX --- */
.radio-box, .about-grid {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 4px;
  max-width: 1200px;
  width: 100%;
  margin-top: 40px;
}
.about-grid { display: flex; gap: 40px; flex-wrap: wrap; text-align: left;}
.about-text { flex: 1; min-width: 300px; }
.about-video { flex: 1; min-width: 300px; }
.about-video iframe { width: 100%; height: 350px; border: none; }

/* Visualizer Radio */
.visualizer { display: flex; justify-content: center; align-items: flex-end; gap: 4px; height: 50px; margin: 20px 0;}
.bar { width: 6px; background: var(--accent-color); animation: equalize 1s infinite; }
@keyframes equalize { 0%, 100% { height: 10px; } 50% { height: 40px; } }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  header { padding: 0 20px; height: 70px; flex-direction: column; justify-content: center; gap: 10px; }
  nav ul { gap: 20px; font-size: 0.8rem; }
  h1 { font-size: 2.5rem; }
  .btn { width: 100%; justify-content: center; }
}

/* --- BOUTONS RÉSEAUX SPÉCIFIQUES --- */
/* Base commune pour les boutons réseaux */
.btn-social {
  width: 100%;
  justify-content: center; /* Centre le texte */
  margin-bottom: 15px;
  background: transparent;
  border-width: 2px; /* Bordure un peu plus épaisse pour la couleur */
  font-size: 1rem;
}

/* YOUTUBE (Rouge) */
.btn-youtube { border-color: #FF0000; color: #FF0000; }
.btn-youtube:hover { 
  background-color: #FF0000; 
  color: #fff; 
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* TWITCH (Violet) */
.btn-twitch { border-color: #9146FF; color: #9146FF; }
.btn-twitch:hover { 
  background-color: #9146FF; 
  color: #fff; 
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.4);
}

/* TIKTOK (Cyan/Turquoise) */
.btn-tiktok { border-color: #00F2EA; color: #00F2EA; }
.btn-tiktok:hover { 
  background-color: #00F2EA; 
  color: #000; /* Texte noir car le cyan est clair */
  box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
}

/* DISCORD (Blurple) */
.btn-discord { border-color: #5865F2; color: #5865F2; }
.btn-discord:hover { 
  background-color: #5865F2; 
  color: #fff; 
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

/* INSTAGRAM (Optionnel - Dégradé) */
.btn-insta { border-color: #E1306C; color: #E1306C; }
.btn-insta:hover { 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  color: #fff; 
  border-color: transparent;
}

/* --- SÉCURITÉ AUDIO --- */
/* Cache le menu de débordement sur Chrome/Edge/Safari */
audio::-webkit-media-controls-enclosure {
    overflow: hidden;
}

audio::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Pousse le bouton "..." hors de l'écran */
}