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

  footer {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-family: "Manrope", sans-serif;
    padding: 5rem 3rem;
  }

  .main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* ======== PARTIE HAUTE ======== */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #444;
    padding-bottom: 2rem;
  }

  /* Logo */
  .partie1 img {
    width: 220px;
    height: auto;
    margin-left: 4rem;
    transition: transform 0.3s ease;
  }

  .partie1 img:hover {
    transform: scale(1.05);
  }

  /* Liens rapides */
  .partie2 {
    flex: 1;
    margin-left: 0.2rem;
  }

  .partie2 h2 {
    margin-bottom: 1.5rem;
    color: rgb(207, 61, 4);
    font-size: 1.5rem;
    margin-left: 6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .partie2 ul {
    list-style-position: inside;
    list-style-type: disc;
    color: rgb(182, 54, 3);
    margin-left: 6rem;
    font-size: 1.1rem;
  }

  .partie2 ul li {
    margin: 0.7rem 0;
  }

  .partie2 ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }

  .partie2 ul li a:hover {
    color: rgb(207, 61, 4);
  }

  /* Instagram */
  .partie3f {
    margin-left: 0.3rem;
  }

  .partie3f h2 {
    margin-bottom: 1rem;
    color: rgb(217, 65, 4);
    font-size: 1.5rem;
  }

  .partie3f a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  .partie3f a:hover {
    color: rgb(207, 61, 4);
  }

  /* Iframe */
  .partie4 iframe {
    width: 280px;
    height: 160px;
    border-radius: 10px;
    border: none;
    margin-left: 2rem;
  }

  /* ======== PARTIE BASSE ======== */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 1rem;
    color: #ccc;
  }

  .footer-bottom a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .footer-bottom a:hover {
    color: rgb(255, 130, 30);
  }

  /* Réseaux sociaux */
  .reseaux-sociaux {
    display: flex;
    list-style: none;
    gap: 1rem;
  }

  .reseaux-sociaux img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
  }

  .reseaux-sociaux img:hover {
    transform: scale(1.2);
  }

  /* ======== RESPONSIVE ======== */
  @media (max-width: 900px) {
    footer {
      padding: 3rem 1.5rem;
      text-align: center;
    }

    .footer-top {
      flex-direction: column;
      gap: 2.5rem;
      align-items: center;
      border-bottom: 1px solid #333;
      padding-bottom: 2rem;
    }

    .partie1 img {
      margin-left: 0;
    }

    .partie2,
    .partie3,
    .partie4 {
      margin-left: 0;
    }

    .partie2 h2,
    .partie2 ul {
      margin-left: 0;
      list-style-type: none;
    }
    

    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .reseaux-sociaux {
      justify-content: center;
    }
  }
