* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    background-image: url("pizza.LaTrattoria.jpg");
    background-position: center 65%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    line-height: 1.5;
    padding-top: 80px;
  }
  
  .organisateur {
    display: flex;
    min-height: 100vh;
  }
  
  /* =============== SIDEBAR =============== */
  .sidebar {
    width: 260px;
    background: rgba(0, 0, 0, 0.88);
    color: white;
    padding: 2rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 0; 
    left: 0;
    width: 260px;
    height: 100vh;
  }
  
  .sidebar h1 {
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .contact, .side-nav, .slogan {
    text-align: center;
    margin: 1.5rem 0;
  }
  
  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .side-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
  }
  
  .side-nav a:hover {
    color: #f0b400;
  }
  
  .slogan {
    font-size: 0.85rem;
    color: #ccc;
  }
  
  /* =============== FOOTER =============== */
  .footer {
    background: rgba(0, 0, 0, 0.9);
    color: #aaa;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-left: 260px;
  }
  
  .footer nav {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer a:hover {
    color: #f0b400;
  }
  
  .footer p {
    font-size: 0.9rem;
    margin: 0;
  }