
/* =============== CONTENU PRINCIPAL =============== */
.contenu {
    flex: 1;
    margin-left: 260px; 
    display: flex;
    flex-direction: column;
    padding: 2rem;
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
  }
  
  .Titre {
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .Titre h1 {
    font-size: 2vw;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;
  }
  
  /* Pizzas */
  .pizzas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  
  .pizza-bloc {
    flex: 1 1 calc(33.333% - 1.3rem);
    background: rgba(0, 0, 0, 0.65);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    min-width: 280px;
  }
  
  .pizza-bloc h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
  }
  
  .pizza-bloc p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: #eee;
  }
  
  .pizza-bloc h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
  }
  
  
  /* =============== RESPONSIVE =============== */
  
  /* Tablet */
  @media (max-width: 1024px) {
    .pizza-bloc {
      flex: 1 1 calc(50% - 1rem);
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .sidebar {
      position: relative;
      width: 100%;
      height: auto;
      padding: 1rem;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      background: rgba(0, 0, 0, 0.92);
    }
  
    .sidebar h1 {
      font-size: 1.4rem;
      margin-bottom: 0;
    }
  
    .contact, .side-nav, .slogan {
      margin: 0.6rem;
      font-size: 0.8rem;
    }
  
    .side-nav {
      flex-direction: row;
      gap: 1rem;
    }
  
    .slogan {
      text-align: left;
      flex: 1 1 100%;
      order: 99;
    }
  
    .contenu,
    .footer {
      margin-left: 0;
      padding: 1.5rem 1rem;
    }
  
    .Titre h1 {
      font-size: 8vw;
      text-align: center;
      padding-left: 0;
    }
  
    .pizzas {
      justify-content: center;
    }
  
    .pizza-bloc {
      flex: 1 1 100%;
      min-width: auto;
    }
  }