* ------------------- MEDIA QUERIES ------------------- */
@media screen and (max-width: 1024px) {
}

@media screen and (min-width: 1025px) {
  #nav { display: flex; }
  #nav_mobile { display: none; }
  .neon_scroll { display: none; }
}

@media screen and (max-width: 768px) and (orientation: landscape),
       screen and (max-width: 768px) and (orientation: portrait) {
        #nav { 
    display: none !important; 
  }
  #nav_mobile { 
    display: flex !important;
    width: 100%;
  }
  body{
    margin: 0 !important; /* marges gauche et droite de 40px */
    padding: 0 !important;
    box-sizing: border-box;
    position: relative;
  }
  #slider{
    background: url('img/slide_mobile.png');
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 1080px;
    max-height: 1920px;
    width: calc(100% - 10%);
    height: 100%;
    padding-top: 23.78%; /* 440 / 1850 = 0.2378 ⇒ 23.78% de la largeur */
    position: relative;
    border-radius: 50px;
    box-shadow: 0 0 6px 5px #96701860; /*box-shadow: offset-x offset-y blur-radius spread-radius color;*/
    margin-top: 50px;
  }
  #titre{
    width: 100%;
    font-family: 'Montserrat_Bold', sans-serif;  
    text-transform: uppercase;
    float: left;
    font-size: 2em;
    background: -webkit-linear-gradient(#661b0d, #B91C00,#FBA609,#FBF309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #banner_cts{
    width: 100%;
    height: 1600px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat_Bold', sans-serif;  
    text-transform: uppercase;
    font-size: 1vw;
    text-align: center;
    align-items: center;
  }
  #banner_cts .A{
    width: calc(100% - 10%);!important;
    height: auto;
    border-radius: 50px;
    margin: 5px;
    padding:10px;
    color: width;
    flex: 1; /* Permet aux divs de prendre la même largeur (ou hauteur) */
    overflow: hidden; /* Gère le contenu qui déborde */
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    text-align: center;
  }
  #banner_cts .B{
    width: calc(100% - 10%);!important;
    height: auto;
    border-radius: 50px;
    margin: 5px;
    padding:10px;
    color: width;
    flex: 1; /* Permet aux divs de prendre la même largeur (ou hauteur) */
    overflow: hidden; /* Gère le contenu qui déborde */
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
  }
  #banner_cts .C{
    width: calc(100% - 10%);!important;
    height: auto;
    border-radius: 50px;
    margin: 5px;
    padding:10px;
    color: width;
    flex: 1; /* Permet aux divs de prendre la même largeur (ou hauteur) */
    overflow: hidden; /* Gère le contenu qui déborde */
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
  }
  /*banner*/
  #banner_art {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 80px;
    background: url("https://natolagroupbelgium.eu/home/img/fond_banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
  }

  #banner_art .sous_banner_art {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    margin: 0;
    padding: 40px;
  }

  #banner_art .img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #banner_art .img img {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 0 30px #edc17a;
  }

  .line-glow {
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, #00f0ff, #a855f7);
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
    border-radius: 2px;
    animation: pulse-glow 2s infinite ease-in-out;
  }

  #banner_art .texte {
    flex: 2;
    color: #ffffff;
  }

  #banner_art h1 {
    font-size: 1.8vw;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4em;
  }

  #banner_art p {
    font-size: 1.1vw;
    line-height: 1.6em;
    width: auto;
  }

  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
    }
    50% {
      box-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff;
    }
  }
  .sous_banner_art_B{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
  }
  #footer_natola {
    width: 100%;
    display: flex;
    color: #967018;
    background-color: transparent;
    font-family: 'Montserrat_Bold', sans-serif;  
    text-transform: uppercase;
    margin-top: 40px;
    align-content: center;
    padding-bottom: 20px;
    margin: 0;
    padding: 0;
  }
}

