/* 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: 3vw;
}

#FlashBox h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;

  font-family: 'BankGothic';
  font-weight: 300;
  font-style: normal;
  color: black;
  font-size: 1.8em;
  text-align: left;

  margin-left: 3vw;
  margin-right: 0;

  line-height: 1.2;
}

/* TITRE + LIGNE = un seul bloc */
#FlashBox h1 .titre-ligne {
  display: flex;
  align-items: baseline;
  flex: 1 1 auto;
  min-width: 0;
}

/* COSMOFLASHBOX ne se coupe jamais */
#FlashBox h1 .titre {
  white-space: nowrap;
}

/* La ligne remplit tout l'espace restant */
#FlashBox h1 .ligne {
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 2px solid black;
  margin-left: 0.15em;
  margin-right: 0;
  position: relative;
  top: 0.12em;
}

/* Bloc date */
#FlashBox h1 small {
  font-size: 0.8em;
}

/* La date reste toujours solidaire */
#FlashBox h1 .date {
  white-space: nowrap;
}

/* Le lieu peut passer à la ligne */
#FlashBox h1 .lieu {
  white-space: nowrap;
  margin-left: 0.35em;
  margin-right: 1vw;
}

/* Date = bloc absolument solidaire */
#FlashBox h1 .date {
  white-space: nowrap;
}



.imgProduit {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}
  

