/* Réinitialisation minimale */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
height: 100%;
background: transparent;
font-family: 'Lato', sans-serif;
font-size: 1em;
color: rgba(248, 248, 248, 1);
}

/* Vidéo en fond */
.video-wrapper {
position: fixed;
top: 0; left: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
z-index: -1;
pointer-events: none; /* ← essentiel */
}

.video-wrapper video {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.logo {
width: fit-content;         /* réduit le conteneur à la taille du contenu */
margin: 0 auto;             /* centre le conteneur */
display: block;
margin: 0 auto;
}
.logo:hover {
    animation: vibrate 0.1s linear;
}
.logo img {
width: 120px;               /* ajuste ici selon la taille désirée */
height: auto;               /* garde les proportions */
display: block;
}
  
  

/* Bloc de contact */
.content-wrapper {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end; /* place en bas */
align-items: center;
height: 100vh;
z-index: 1;
pointer-events: auto;
}

#contact {
position: relative;
z-index: 1;
/* background: url(IMAGES/Logo_TTM.png) no-repeat center 18px;
padding: 7em 1em 0em; */
text-align: center;
/* font-stretch: condensed; */
}

/* #contact a {
display: block;
position: relative;
padding: 0.5em 1em 2em 1em;
font-weight: 600;
letter-spacing: 2px;
color: white;
text-decoration: none;
text-transform: uppercase;
font-size: .8em;
transition: all 0.4s ease-out;
cursor: pointer;
} */

#contact a {
    position: relative;
    padding: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    color: rgba(208, 208, 208, 1);
    text-decoration: none;
    text-transform: uppercase;
    font-size: .8em;
    transition: all 0.4s ease-out allow-discrete
}
#contact a:hover {
    color: rgba(248, 248, 248, 1);
    animation: vibrate 0.1s linear;
}
@keyframes vibrate {
    0%   { transform: translate(0); }
    50%  { transform: translate(10px, 80px); }
    100% { transform: translate(0); }
  }




  /* ---------- CSS pour page 2 --------------- */

  #FlashBox {
    font-family: 'BankGothic';
    font-weight: 300;
    color: black;
    }

    /* Déclaration de la police personnalisée */
  
  @font-face {
      font-family: 'BankGothic';
      src: url('FONTS/BankGothic-Medium.woff2') format('woff2'),
          url('FONTS/BankGothic-Medium.woff') format('woff');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
  }
  
  @font-face {
      font-family: 'BankGothic';
      src: url('FONTS/BankGothic-Regular.woff2') format('woff2'),
          url('FONTS/BankGothic-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }

  
  @font-face {
      font-family: 'BankGothic';
      src: url('FONTS/BankGothicBT-Light.woff2') format('woff2'),
          url('FONTS/BankGothicBT-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
  }
small {
  font-size: 0.8em;
}

#FlashBox article {
    margin-top: 90px;
}
  #FlashBox h1 {
    font-family: 'BankGothic';
    font-weight: 300;
    font-style: normal;
    color: black;
    font-size: 1.8em;
    text-align: left;
    /* margin-top: 6vw; */
    margin-left: 4vw;
    /* margin-bottom: 20px; */
  }

  /* #FlashBox h2 {
    font-family: 'BankGothic';
    font-weight: normal;
    font-style: normal;
    margin-left: 4vw;
    margin-bottom: 20px;
    font-size: 1.8em;
  } */

  .imgProduit {
        /* width: 300px;   remplace 300px par la taille souhaitée */
        height: auto;   /* garde les proportions */
        display: block; /* optionnel si tu veux qu'elle se comporte comme un bloc */
        margin-top: 10px;
 }
  

