/* General Styles */
a {
    text-decoration: none;
    color: white;
    transition: ease-in-out 0.2s;
  }
  
  a:hover {
    color: #e6bb00;
    border-bottom: 3px solid white;
    transition: ease-in-out 0.2s;
  }
  
  /* Header Styles (Mobile First) */
  .search-input {
    width: 50dvw;
    height: 5dvh;
    border-radius: 999999px; 
    text-align: center;
    border: none;
    /* This was declared twice, combined the rules */
    display: none; 
  }
  .search{
    text-align: center;
    background-color: #6b4d2b;
  .search {
    text-align: center;
  }
  }
  
  #loupe2 {
    display: none;
  }
  
  #loupe1:hover,
  #loupe2:hover {
    cursor: pointer;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #6b4d2b;
  }
  
  .logo {
    width: 50px;
  }
  
  #burger-bar {
    width: 50px;
    margin-right: 30px;
    filter: invert();
  }
  
  #burger-bar2 {
    width: 50px;
    margin-right: 30px;
    filter: invert();
    display: none;
  }
  
  /* Mobile Header */
  #burger-bar:hover,
  #burger-bar2:hover {
    cursor: pointer;
  }
  
  nav {
    display: none;
  }
  
  .header-phone>nav,
  .header-phone,
  .header-phone>nav>ul {
    display: inline;
    width: 100dvw;
  }
  
  .header-phone>nav>ul>li {
    text-align: right;
  }
  
  .header-phone>nav>ul>li>a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
  }
  
  .header-phone {
    display: none;
  }
  
  /* (Consider a more descriptive comment here) */
  .search-icon img {
    width: 50px;
  }
  
  .map {
    width: 100%;
    height: 150px;
  }
  
  .banner {
    margin-top: 20px;
  }
  
  /* Larger Screen Styles (PC) */
  @media (min-width: 768px) {
    .header-container {
      padding: 20px 40px;
      background-color: #6b4d2b;
    }
  
    .header-phone {
      display: none;
    }
  
    .logo {
      width: 80px;
    }
  
    nav {
      display: block;
    }
  
    #burger-bar {
      display: none;
    }
  
    form {
      display: block;
      unicode-bidi: isolate; /*  Unless you have a specific reason, this might not be necessary */
    }
  
    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      font-size: 35px;
    }
  
    nav li {
      margin-left: 30px;
    }
  
    nav a {
      text-decoration: none;
      color: white;
      font-weight: bold;
    }
  
    nav a:hover {
      color: #e6bb00;
    }
  
    .search-icon img {
      width: 80px;
      margin-right: 80px;
    }
  
    .banner-image {
      width: 100%;
      border-radius: 10px;
      margin-top: 0px;
    }
  }
  
  /*  It seems like you have another set of styles below, 
      were these meant to be separate? I'll format them as well */
  
  @import url("https://use.typekit.net/dku6hfx.css");
  
  * {
    padding: 0;
    margin: 0;
  }
  
  body {
    background-color: mintcream;
  }
  
.header-phone {
    background-color:#6b4d2b;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo a {
    font-size: 60px;
    margin-right: 100px;
    color: rgb(209, 167, 77);
    text-decoration: none;
    font-family: "rama-gothic-m", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .logo img {
    padding: 30px;
    padding-right: 150px;
  }
  
  h1 {
    color: rgb(209, 167, 77);
    font-family: nexa-rust-sans-black-2, sans-serif;
    font-style: normal;
    font-weight: 900;
    text-align: center;
    font-size: 50px;
    padding-top: 10px;
  }
  
  .formulaire {
    text-align: center;
  }
  
  .formulaire input {
    padding: 10px;
    text-decoration: none;
    border: 3px;
    border-style: groove;
  }
  
  .formulaire label {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  #nom {
    width: 15%;
  }
  
  #prenom {
    width: 15%;
  }
  
  #email {
    width: 15%;
  }
  
  #telephone {
    width: 15%;
  }
  
  #sujet {
    width: 15%;
  }
  
  #message {
    width: 25%;
    height: 100px;
  }
  
/* Styles du footer */
footer {
    margin-top: px;
    background-color: #6b4d2b;
    padding: 15px;
    border-radius: 10px;  
    color: white;
    display: flex;
    flex-direction: column; 
  }
  
  @media (min-width: 768px) { 
  footer {
    flex-direction: row;
    }
  
  .contact-item + .contact-item {
    margin-left: 20px; 
    }
  }
  
  .contact-section {
    display: flex;
    flex-direction: column; 
    width: 100%;
  }
  
  @media (min-width: 768px) {
  .contact-section {
    flex-direction: row; 
    }
  }
  
  .contact-item {
    width: 100%; 
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
  .contact-item {
    width: 33.33%; 
    margin-bottom: 0;
    }
  }
  
