@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html{
    overflow-x: hidden;

}
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color:#121321 !important;
    font-family: DM Sans, sans-serif;
    font-variant: semibold;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color : #F5F5F5
}

a{
    font-family: DM Sans, sans-serif;
    font-variant: semibold;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color : #F5F5F5 !important;

}

h1, h2, h3{
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    color: #F5F5F5
}

.hero-mobile {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

/*HEADER*/



@media all and (max-width: 576px) {

    .topnav {
        display: grid;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        background-color: #1E1B2E;
        padding: 0 16px;
        position: relative;
        height: 100px;
        color: white;
        margin-top : -6px;
        gap: 10px;
    }
    .topnav a:hover {
        background-color: #ddd;
        color: black;
    }
    #logo {
        width: 60px;
        height: auto;
    }
    #typo { /*Titre*/
        height: 60px;
        width: auto;
    }
    .icon { /*Menu Hamburger */
        justify-self: end;
        cursor: pointer;
        font-size: 24px;
        background: none;
        padding: 8px 12px;
        border-radius: 4px;
        color: white;
    }
  
    #liens {
        display: none;
        position: absolute;
        top: 99%;
        right: 0;
        background-color: #1E1B2E;;
        width: 220px;
        z-index: 10;
        padding: 10px 0;
        border-radius: 0 0 4px 4px;
        font-family: 'Cinzel', serif;
    }
    #liens.show {
        display: block;
    }
    .langue {
        display: none;
    }
    #liens a {
        color: white;
        padding: 12px 20px;
        text-decoration: none;
        display: block;
    }
    #liens a:hover {
        background-color: #555;
        color: #fff;
    }
    .connexion {
        padding: 10px 20px;
        color: #ccc;
        font-size: 14px;
    }
    .contenu {
        margin: 10px;
        padding: 0 1%;
        color: blueviolet;
    }
  

  
  
  
  }
  
  
  /* Breakpoint intermédiaire pour les écrans moyens */
  @media all and (min-width: 577px) {
    .topnav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #1E1B2E;
        padding: 0 20px;
        height: 170px;
        color: white;
        flex-wrap: wrap;
    }
  
    #logo{
        width: 70px;
        height: auto;
        margin-top: 10px;
        flex-shrink: 0;
    }
  
    #typo{
        margin-top: -25px;
        height: 60px;
        width: auto;
        flex-shrink: 0;
    }
  
    #liens {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        gap: 20px;
        text-decoration: underline;
        flex-wrap: wrap;
        margin: 0 10px;
        font-family: 'Cinzel', serif;
  
    }
  
    #liens a {
        display: inline-block;
        padding: 6px 10px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 4px;
        font-size: 14px;
        white-space: nowrap;
    }
  
    #liens a:hover {
        background-color: #555;
        color: #fff;
    }
  
    .langue {
        color: white;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 6px 10px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
  
    .langue:hover {
        background-color: #555;
        color: #ffffff;
    }
  
    .icon {
        display: none;
    }
  
    .connexion {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 6px 10px;
        margin: 0;
        color: #ccc;
        font-size: 12px;
        flex-shrink: 0;
    }
  

  
    .connexion a {
        color: #fff !important;
        padding: 4px 8px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 12px;
    }
  
    .connexion a:hover {
        background-color: #555;
    }
  }
  
  .contenu{
    color: white;
  }
  
  /* Breakpoint pour les grands écrans */
  @media all and (min-width: 769px){
    .topnav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #1E1B2E;
        padding: 0 40px;
        height: 100px;
        color: white;
    }
  
  
    #logo{
        width: 90px;
        height: auto;
        margin-top: -5px;
    }
  
    #typo{
        margin-top: -35px;
        height: 80px;
        width: auto;
    }
  
    #liens {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        gap: 70px;
        text-decoration: underline;
        font-family: 'Cinzel', serif;
  
    }
  
    #liens a {
        display: inline-block;
        padding: 8px 12px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 4px;
        font-size: 18px;
    }
  
    #liens a:hover {
        background-color: #555;
        color: #fff;
    }
  
    .langue {
        color: white;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 8px 12px;
        border-radius: 4px;
        margin-left: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
  
    .langue:hover {
        background-color: #555;
        color: #ffffff;
    }
  
    .icon {
        display: none;
    }
  
    .connexion {
        display: flex;
        align-items: center;
        gap: 70px;
        padding: 8px 12px;
        margin: 0;
        color: #ccc;
        font-size: 14px;
        margin-left: 10px;
        padding-left: 15px;
    }
  
    .connexion a {
        color: #fff !important;
        padding: 6px 12px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
  
    .connexion a:hover {
        background-color: #555;
    }
  
    .contenu{
        color: white;
    }
  

  }
  
  
/* FOOTER */


.footer {
    background-color: #1E1B2E;
    height: 147px;
    color: #ccc;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top: 2px solid #614bf2;
}

.footer-links {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footer-links a {
    color: #ccc;
    text-decoration: underline;
}

.footer-logos {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}

.footer-icon {
    width: 40px;
    height: 40px;
}


@media (min-width: 577px) {


.footer-links {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
}



/*triangle*/

#accueil_triangle_mobile{
    position: absolute;
    top: 730px;
}

#accueil_triangle_pc{
    display: none;

}
#concept_triangle_mobile{
  position: absolute;
  top: 70px;
  z-index: -10;
}

#concept_triangle_pc{
  display: none;

}
#info_triangle_mobile{
  position: absolute;
  top: 100px;
  z-index: -10;
}

#info_triangle_pc{
  display: none;

}



@media (min-width: 577px) {
    #accueil_triangle_mobile{
        display: none;

    }
    #accueil_triangle_pc{
      position: absolute;
      display: block;
      top: 880px;
    }
    #concept_triangle_mobile{
      display: none;

  }
  #concept_triangle_pc{
    position: absolute;
    display: block;
    top: 200px;
  }
  #info_triangle_mobile{
    display: none;

  }
  #info_triangle_pc{
    position: absolute;
    display: block;
    top: 300px;
    z-index: -10;
  }

  
}



/* PAGE ACCUEIL */





  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
  }
  
  
  p, span, div, a, button, input, textarea, .slogan{
      font-family: 'DM Sans', Arial, Helvetica, sans-serif;
      font-weight: 500;
  }
  #hero-mobile {
    display: block;
  }
  
  #hero-pc{
      display: none;
  }
  .hero{
      height: 685px;
      width: 576px;
      position: relative;
      margin: 0;
  }
  .hero-overlay{
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 576px;
      z-index: 10;
  }
  
  .hero-info-bar{
      position: absolute;
      height: 99px;
      width: 576px;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      bottom: 0;
      background-color: rgba(115, 76, 54, 0.3);
  
  }
  
  .info-separator{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  
  .slogan{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 80px;
      margin-bottom: 140px;
  }
  
  .accueiltitre {
      font-size: 24px;
    }
    .accueiltxt {
      font-size: 16px;
      line-height: 20px;
    }
    #scenario, #plusimage{
      background: #282A45;
      border-radius: 0;
      width: 100vw;
      position: relative;
      margin-bottom: 100px;
    
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      padding: 16px 0; 
      display: flex;
    }
    
    #scenario {
      margin-top: 100px;
      height: 942px;
      margin-bottom: 280px;
    }
    #scenario .accueil_section-flex {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    #scenario .accueil_section-flex-left {
      height: 50%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    #scenario .accueil_section-flex-right {
      height: 50%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    #plusimage {
      height: 404px;
      margin-bottom: 60px;
    }
    #plusimage .accueil_section-flex {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    #plusimage .accueil_section-flex-left {
      height: 15%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    #plusimage .accueil_section-flex-right {
      height: 85%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    
    
    
    
    .accueil_section-inner {
      width: 100%;
      max-width: 800px;
      padding: 0 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }
    
    .accueiltitre {
      font-size: 1.4em;
      margin-bottom: 12px;
      font-weight: bold;
      text-align: left;
      color: #F5F5F5;
    }
    
    .accueiltxt {
      font-size: 1em;
      margin-bottom: 8px;
      text-align: left;
      color: #F5F5F5;
    }
    
    
    
    
    
    .accueil_img-section {
      display: block;
      margin: 24px auto 0 auto;
      max-width: 100%;
      height: auto;
    }
    
    .accueil_section-flex {
      display: flex;
      flex-direction: column; 
      width: 100%;
      justify-content: space-between;
      align-items: center;
    }
    
    .accueil_section-flex-left,
    .accueil_section-flex-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    
    .accueil_section-flex-left {
      width: 384px;
    }
    
    
    #scenario, #plusimage {
      padding: 16px 0;
    }
    .accueil_section-inner {
      padding: 0 12px;
    }
    .accueiltitre, .accueiltxt {
      text-align: left;
      margin-bottom: 8px;
      color: #F5F5F5;
    }
    
    
    .accueil_img-section {
      display: block;
    }
  
  
  
  
  
    
  
  
  
  
  @media (min-width: 577px) {
  
      .hero-overlay{
          width: 1920px;
      }
      .hero-info-bar{
          width: 1920px;
      }
      .info-separator{
  
          flex-direction: row;
          justify-content: space-around;
          gap: 20px;
  
      }
  
      #hero-mobile{
          display: none;
      }
      
      #hero-pc {
          display: block;
      }
  
  
  
      #scenario{
          margin-top: 112px;
          margin-bottom: 140px;
        }
        #plusimage{
          margin-bottom: 84px;
        }
        .accueiltitre, .accueiltxt{
          line-height: 28px;
        }
        
        #scenario, #plusimage{
          width: 1350px;
  
          position: static;
          left: auto;
          right: auto;
          margin-left: 0;
          margin-right: 0;
        }
          
        #plusimage .accueil_section-inner{
          padding: 0 32px;
        }
        
        #scenario, #plusimage {
          height: 504px;
          padding: 0;
          justify-content: center;
          align-items: center;
        }
        
        #scenario .accueil_section-inner, #plusimage .accueil_section-inner {
          width: 1350px;
          max-width: 1350px;
          height: 100%;
          padding: 0;
        }
        
        #scenario .accueil_section-flex {
          flex-direction: row;
          justify-content: center;
          align-items: center; 
          gap: 0;
          height: 100%;
          width: 100%;
        }
        
        #plusimage .accueil_section-flex {
          flex-direction: row-reverse;
          justify-content: center;
          align-items: center; 
          gap: 0;
          height: 100%;
          width: 100%;
        }
        
        #scenario .accueil_section-flex-left,
        #scenario .accueil_section-flex-right,
        #plusimage .accueil_section-flex-left,
        #plusimage .accueil_section-flex-right {
          flex-basis: 50%;
          flex-grow: 0;
          display: flex;
          justify-content: center;
          padding: 24px;
          box-sizing: border-box;
        }
        .accueil_section-flex-left{
          height: 90%!important;
          display: flex;
          flex-direction: column;
          justify-content: space-around!important;
        }
        
        #scenario .accueil_section-flex-left,
        #plusimage .accueil_section-flex-left {
          flex-direction: column;
        }
        
        #scenario .accueiltitre,
        #plusimage .accueiltitre {
          text-align: center;
          width: 100%;
        }
        
        #scenario .accueiltxt,
        #plusimage .accueiltxt {
          width: 100%;
          text-align: left;
          line-height: 28px;
          font-size: 16px;
        }
        
        
        .accueiltitre{
          font-size: 32px;
          line-height: 28px;
        }
        .accueiltxt {
          max-width: 478px;
          margin: 0 auto;
        }
        #plusimage .accueil_img-section {
          width: 710px;
          height: 398px;
          max-width: none;
          margin-left: 32px;
        }
        #scenario, #plusimage {
          margin-left: auto;
          margin-right: auto;
        }
        .slogan {
          font-size: 32px;
        }
  }




















/* PAGE CONCEPT*/

.contenu_concept {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
  .concepttitre {
    font-size: 24px;
  }
  .concepttxt {
    font-size: 16px;
    line-height: 20px;
  }
  #murderparty, #pourquoi, #comment {
    background: #282A45;
    border-radius: 0;
    width: 100vw;
    position: relative;
    margin-bottom: 100px;
  
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 16px 0; 
    display: flex;
  }
  
  #murderparty {
    margin-top: 100px;
    height: 760px;
  }
  #murderparty .section-flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #murderparty .section-flex-left {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #murderparty .section-flex-right {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #pourquoi {
    height: 720px;
  }
  #pourquoi .section-flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #pourquoi .section-flex-left {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #pourquoi .section-flex-right {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  
  #comment {
    height: 680px;
  }
  
  .section-inner {
    width: 100%;
    max-width: 800px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  
  .concepttitre {
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: left;
    color: #F5F5F5;
  }
  
  .concepttxt {
    font-size: 1em;
    margin-bottom: 8px;
    text-align: left;
    color: #F5F5F5;
  }
  
  
  
  #comment .ligne_concept img {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    background: #F5F5F5;
  }
  
  .img-section {
    display: block;
    margin: 24px auto 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  .section-flex {
    display: flex;
    flex-direction: column; 
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  .section-flex-left,
  .section-flex-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .section-flex-left {
    width: 384px;
  }
  
  .contenu_concept {
    padding: 0;
  }
  #murderparty, #pourquoi, #comment {
    padding: 16px 0;
  }
  .section-inner {
    padding: 0 12px;
  }
  .concepttitre, .concepttxt {
    text-align: left;
    margin-bottom: 8px;
    color: #F5F5F5;
  }
  
  #comment_ligne{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
  }
  #comment .section-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
  }
  #comment .ligne_concept {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 356px;
  }
  .img-section {
    display: block;
  }
  
  /* --- DESKTOP STYLES --- */
  @media (min-width: 577px) {
    #murderparty{
      margin-top: 168px;
      margin-bottom: 84px;
    }
    #pourquoi, #comment{
      margin-bottom: 84px;
    }
    .concepttitre, .concepttxt{
      line-height: 28px;
    }
    .contenu_concept{
      max-width: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #murderparty, #pourquoi, #comment{
      width: 1350px;
  
      position: static;
      left: auto;
      right: auto;
      margin-left: 0;
      margin-right: 0;
    }
      
    #pourquoi .section-inner, #comment .section-inner {
      padding: 0 32px;
    }
    
    #murderparty, #pourquoi {
      height: 448px;
      padding: 0;
      justify-content: center;
      align-items: center;
    }
  
    #murderparty .section-inner, #pourquoi .section-inner {
      width: 1350px;
      max-width: 1350px;
      height: 100%;
      padding: 0;
    }
  
    #murderparty .section-flex {
      flex-direction: row;
      justify-content: center;
      align-items: center; 
      gap: 0;
      height: 100%;
      width: 100%;
    }
  
    #pourquoi .section-flex {
      flex-direction: row-reverse;
      justify-content: center;
      align-items: center; 
      gap: 0;
      height: 100%;
      width: 100%;
    }
  
    #murderparty .section-flex-left,
    #murderparty .section-flex-right,
    #pourquoi .section-flex-left,
    #pourquoi .section-flex-right {
      flex-basis: 50%;
      flex-grow: 0;
      display: flex;
      justify-content: center;
      padding: 24px;
      box-sizing: border-box;
    }
    .section-flex-left{
      height: 90%!important;
      display: flex;
      flex-direction: column;
      justify-content: space-around!important;
    }
  
    #murderparty .section-flex-left,
    #pourquoi .section-flex-left {
      flex-direction: column;
    }
  
    #murderparty .concepttitre,
    #pourquoi .concepttitre {
      text-align: center;
      width: 100%;
    }
  
    #murderparty .concepttxt,
    #pourquoi .concepttxt {
      width: 100%;
      text-align: left;
      line-height: 28px;
      font-size: 16px;
    }
  
  
    #comment {
      height: 448px;
      padding: 0;
      justify-content: center;
      align-items: center;
    }
  
    #comment .section-inner {
      width: 1350px;
      max-width: 1350px;
      height: 100%;
      padding: 0;
    }
    
    #comment .section-flex {
      flex-direction: row;
      height: 100%;
      width: 100%;
      gap: 0;
    }
  
    #comment #comment_titre,
    #comment #comment_ligne {
      flex-basis: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #comment #comment_ligne {
      flex-direction: column;
      gap: 20px; 
    }
  
    #comment .concepttitre {
      text-align: center;
    }
    .concepttitre{
      font-size: 32px;
      line-height: 28px;
    }
    .concepttxt {
      max-width: 478px;
      margin: 0 auto;
    }
}

.info section {
	background-color: #282A45;
	height: 580px;
	width: 576px;
	margin: 100px -16px;
    
}

.info h1{
    display: flex;
    justify-content: center;    
    position: relative;
    top : 20px;
}

.info p{
    margin-left : 50px;
    position: relative;
    top: 20px;
}

.info #adr{
    margin : 0 85px 50px;
}
.info li{
    margin: auto 85px 5px;
    list-style-type: none;
}

.info h3 {
    font-size : 20px;
    margin-left : 10px;
}

.info iframe{
    display:block;
    width:422px;
    height : 308px;
    margin: 0 auto;
    filter:greyscale(100%);
    -webkit-filter: grayscale(100%);
}

.info  #contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, (300px, 1fr));
    gap: 40px;
    justify-content: center;
    margin : 0 auto 142px -16px;
    height: 440px;

}

.info #mail img{
    width: 60px;
    height: 43px;
    margin: 0 30px;
}
.info #tel img{
    width: 44.74px;
    height: 48.25px;
    margin: 0 30px;
    rotate: -6.49deg;
}
.info #tel{
    margin-top : 25px;
}
.info #mail a{
    margin-left : 38px
}
.info #tel a{
    margin-left : 50px
}
.info a{
    text-decoration: none;
}
#PCOnly {
    display: none;
}

.info .prevoir-content{
    margin-top : 30px;
}

@media all and (min-width:577px){
    #PCOnly {
        display: block;
    }
    .info section {
        width: 85.78%;
        height: 600px;
        margin: 220px auto;
       
    }

    .info #prevoir-section{
        height: 490px;
        margin-top: -160px
    }
    .info h1{
        position: relative;
        top : 60px;
    }
    .info p{
        text-align: center;
    }
    .info #adr{
        margin : 0 85px 50px;
        position: relative;
        top : 60px;
    }
    .info li{
        margin: auto 85px 5px;
        list-style-type: none;
    }
    
    .info #loc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap; 
    position:relative;
    top: 60px;
    
}

.info #loc a,
.info #loc iframe {
    display: flex;
    max-width: 454px;
    max-height: 280px;
    flex: 0 1 auto; 
    margin: 0 auto; 
    
    
}
}
@media (min-width: 769px) {
  .prevoir-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;     
    padding: 0 20px;
  }

  #prevoir {
      
    grid-column: 2;   
    text-align: right;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;               
    align-self: center; 
     position: relative;
      top : 280%;
    
    }

  .prevoir-content {
    grid-column: 1;
      position: relative;
      top : -90px;
      margin-left : -10px;
      text-align: start;
      
  }
    .info #contact{
        margin-top:-120px;
        display : grid;
        grid-template-columns: 1fr 1fr;
        height : 364px;
        margin-left: auto;
        
    }

    .info #contact h1{
        grid-column: 1;
        position: relative;
        top: 40%;
        
    }
    .info .contact-infos{
        grid-column: 2;
        display: flex;
        flex-direction: row; 
    align-items: center;
    justify-content: flex-start; 
    margin-left : -50px;
    }

    .info #mail a{
        margin :-50px;
        position: relative;
        top: 84px;
    }
    
    .info #tel a{
        margin : -119px;
        position: relative;
        top: 94px;
        left : 10px;
    }
    
    .info #tel img{
        position: relative;
        top : -32px;
    }
}

/* PAGE PROFIL */

.profile-container {
    max-width: 800px;
    margin: 80px auto 50px;
    background: #282A45;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-container:hover {
    transform: translateY(-5px);
}

.profile-header {
    background: #1E1B2E;
    color: #F5F5F5;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.profile-name {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F5F5F5;
}

.admin-badge, .user-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 245, 245, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(245, 245, 245, 0.2);
    color: #F5F5F5;
}

.admin-badge::before {
    content: '👑';
    margin-right: 8px;
    font-size: 1.2em;
}

.user-badge::before {
    content: '👤';
    margin-right: 8px;
    font-size: 1.2em;
}

.profile-content {
    padding: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: #1E1B2E;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #F5F5F5;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    color: #F5F5F5;
    font-size: 1.2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-card h3::before {
    content: '📋';
    margin-right: 10px;
    font-size: 1.2em;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    font-family: 'DM Sans', sans-serif;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #F5F5F5;
    font-size: 16px;
}

.info-value {
    color: #F5F5F5;
    font-weight: 500;
    font-size: 16px;
}

.email-value {
    color: #F5F5F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-value:hover {
    color: #ccc;
}

.actions-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #F5F5F5;
}

.btn-primary {
    background: #1E1B2E;
    border: 2px solid #F5F5F5;
}

.btn-primary:hover {
    background: #F5F5F5;
    color: #1E1B2E;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #1E1B2E;
    border: 2px solid #F5F5F5;
}

.btn-secondary:hover {
    background: #F5F5F5;
    color: #1E1B2E;
    transform: translateY(-2px);
}

.btn-logout {
    background: #1E1B2E;
    border: 2px solid #F5F5F5;
}

.btn-logout:hover {
    background: #F5F5F5;
    color: #1E1B2E;
    transform: translateY(-2px);
}

.btn::before {
    margin-right: 8px;
    font-size: 1.1em;
}

.btn-primary::before {
    content: '✏️';
}

.btn-secondary::before {
    content: '💬';
}

.btn-logout::before {
    content: '🚪';
}

.admin-panel {
    background: #1E1B2E;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #F5F5F5;
    position: relative;
    overflow: hidden;
}

.admin-panel h3 {
    color: #F5F5F5;
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.admin-panel h3::before {
    content: '⚙️';
    margin-right: 10px;
    font-size: 1.3em;
}

.admin-panel p {
    color: #F5F5F5;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.admin-access-btn {
    background: #1E1B2E;
    color: #F5F5F5;
    padding: 12px 24px;
    border: 2px solid #F5F5F5;
    border-radius: 25px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.admin-access-btn:hover {
    background: #F5F5F5;
    color: #1E1B2E;
    transform: translateY(-2px);
}

.admin-access-btn::before {
    content: '🔐';
    margin-right: 8px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .profile-container {
        margin: 20px 10px;
    }
    
    .profile-content {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .actions-section {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
    }

    .profile-name {
        font-size: 1.8em;
    }
}

.messagerie section{
  width : 1346px;
  height:934px;
  flex-shrink: 0;
  background: #282A45;
  margin : 50px auto;
    padding : 50px;
}

.messagerie label{
  display :none;
}
.messagerie .rect1{
  width :1074px;
  height:66px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #B2B2B2;
  margin :30px auto;
  color : white;
}
.messagerie .rect2{
  width :1074px;
  height:392px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #B2B2B2;
  margin :30px auto;
  color : white;
}

.messagerie #env{
  padding : 10px;
  color : white;
  background: #282A45;
  border-radius: 10px;
  margin-top : 15px;

  
}

.messagerie #env:hover{
  background: #B2B2B2;
  color : black;
}

.messagerie form{
  display : flex;
  flex-direction: column;
  align-items: center;
}
/* Conteneur centré */
.messagerie .table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto;
}

/* Table de messagerie */
.messagerie table {
  width: 1074px;
  height: 635px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #B2B2B2;
  border-collapse: collapse;
  overflow: hidden;
  text-align: center;
}

/* En-tête du tableau */
.messagerie thead tr {
  background: #D9D9D9;
  height: 63px;
}

/* Ligne de séparation entre thead et tbody */
.messagerie thead::after {
  content: "";
  display: block;
  width: 1010px;
  height: 1px;
  background: #838383;
  margin: 0 auto;
}

/* Corps du tableau */
.messagerie tbody tr {
  width: 1074px;
  height: 63px;
  flex-shrink: 0;
}

/* Alternance des lignes */
.messagerie tbody tr:nth-child(odd) {
  background: #D9D9D9;
}

.messagerie tbody tr:nth-child(even) {
  background: #9D9D9D;
}

/* Cellules */
.messagerie th,
.messagerie td {
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #333;
  text-align: center;
  vertical-align: middle;
}

/* Lien dans les cellules */
.messagerie a {
  color: #333;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.messagerie a:hover {
  background-color: #838383;
  color: white;
}

/* Responsive */
@media (max-width: 1200px) {
  .messagerie table {
      width: 95%;
  }
}

@media (max-width: 768px) {
  .messagerie table {
      font-size: 14px;
  }

  .messagerie th,
  .messagerie td {
      padding: 8px;
      font-size: 12px;
  }

  .grid-inscription {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
  }

  .img-inscription {
    display: none !important;
  }

  .contenu {
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contenu h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 20px;
  }

  form {
    gap: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    font-size: 0.95rem;
    padding: 12px;
  }

  .checkbox-container {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .contenu p {
    text-align: center;
    font-size: 0.85rem;
  }

}
  .mentions{
  padding: 50px;
  background :#121321;  
    
  }
.mention h1, .mentions h2{
    padding: 40px;
}

/*PAGE INSCRIPTION*/


.grid-inscription {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 40px;
    gap: 20px;
    background-color: #0e0e1a;
}

/* Image */
.img-inscription {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-inscription img {
    max-width: 100%;
    height: auto;
}

/* Formulaire */
.contenu {
    background-color: #1a1a3a;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.contenu h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    background-color: #ccc;
    border: none;
    padding: 14px;
    font-size: 1rem;
    color: #000;
}

input::placeholder {
    color: #444;
}

input:focus {
    outline: 2px solid #6a5acd;
    background-color: #eee;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Bouton */
button[type="submit"] {
    padding: 12px;
    background-color: #6a5acd;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #5941b3;
}

/* Liens */
.contenu p {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
}

.contenu a {
    color: #c5c5ff;
    text-decoration: none;
}

.contenu a:hover {
    text-decoration: underline;
}

/* Messages */
.error {
    color: #ff6b6b;
    text-align: center;
}

.success {
    color: #51cf66;
    text-align: center;
}
