
.decoration-de-fond4 {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #5e5e5e, #535353);
  padding-bottom: 60px;
}

/* =========================
   NAVIGATION
========================= */

nav {
    background-color: #111;
    padding: 40px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 20px;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: red;
  }

  /* =========================
   STYLE GENERAL
========================= */

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  background-color: #111;
  color: white;
}

/* Conteneur fond */

.decoration-de-fond5 {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* =========================
 HEADER
========================= */

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #e22a2a;
}

/* =========================
 NAVIGATION
========================= */



/* =========================
 MAIN
========================= */

main {
  margin-top: 40px;
}

/* =========================
 SECTIONS TECHNIQUES
========================= */

.technique {
  background-color: #1c1c1c;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
  transition: 0.3s;
}

.technique:hover {
  transform: translateY(-5px);
}

/* =========================
 TITRES
========================= */

.technique h2 {
  color: #e22a2a;
  font-size: 2em;
  margin-bottom: 15px;
}

.technique h3 {
  color: #ff4c4c;
  margin-top: 20px;
}

/* =========================
 TEXTE
========================= */

.technique p {
  line-height: 1.7;
  font-size: 1.1em;
  color: #ddd;
}

/* =========================
 LISTES
========================= */

.technique ul {
  margin-top: 15px;
  padding-left: 20px;
}

.technique li {
  margin-bottom: 8px;
}

/* =========================
 INTRO
========================= */

.intro-techniques {
  background-color: #000;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.intro-techniques h2 {
  color: #e22a2a;
}

/* =========================
 ANIMATION
========================= */

.technique {
  animation: apparition 0.6s ease;
}

@keyframes apparition {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

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

@media (max-width: 900px) {

header h1 {
  font-size: 2.2em;
}

.technique {
  padding: 20px;
}

nav ul {
  gap: 15px;
}

}

@media (max-width: 600px) {

header h1 {
  font-size: 1.8em;
}

.technique h2 {
  font-size: 1.5em;
}

.technique p {
  font-size: 1em;
}

}


  .fiche-boxeur{
    background:#111;
    color:white;
    max-width:900px;
    margin:60px auto;
    padding:50px;
    }
    
    .fiche-boxeur h1{
    font-size:40px;
    border-bottom:4px solid red;
    padding-bottom:10px;
    }
    
    .photo-boxeur{
    width:300px;
    display:block;
    margin:30px auto;
    box-shadow:8px 8px 0 black;
    }
    
    .fiche-boxeur p{
    line-height:1.7;
    font-size:17px;
    }
    
    .fiche-boxeur ul{
    margin-left:20px;
    line-height:1.7;
    }

    .decoration-de-fond7 {
        min-height: 100vh;
        background: linear-gradient(135deg, #000000, #5e5e5e, #535353);
        padding-bottom: 60px;
      }


/* =========================
   VIDEO TECHNIQUE
========================= */
.video-lien {
  text-align: center;
  margin-top: 30px;
}

.video-lien img {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

.video-lien img:hover {
  transform: scale(1.02);
}

.video-lien p {
  margin-top: 15px;
  color: white;
}