@font-face {
  font-family: 'Caballar';
  src: url('/fonts/Caballar.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'NaomisHand-Regular';
  src: url('/fonts/NaomisHand-Regular.ttf') format('truetype');
  font-style: normal;
}

.container-id {
  max-width: 1600px;  /* plus large sur grands écrans */
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 600px;  /* optionnel selon design */
}

.col1 {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;  /* Arrondi en bas à gauche */
  background-color: #94a988;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.5);
}

.col2 {
  padding-top: 75px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px; /* Arrondi en bas à droite */
  padding-bottom: 75px;
  background-color: #94a988;
  padding-right: 35px;
  padding-left: 35px;
  box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.5);
}

.col-shadow-top {
  box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.5);
}

.col-shadow-bottom {
  box-shadow: inset 0 -5px 5px -5px rgba(0,0,0,0.5);
}

.col-shadow-left {
  box-shadow: inset 5px 0 5px -5px rgba(0,0,0,0.5);
}

.col-shadow-right {
  box-shadow: inset -5px 0 5px -5px rgba(0,0,0,0.5);
}

/* Animation de glissement */
.slide-in {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-in.active {
  transform: translateX(0);
  opacity: 1;
}

#id {
  transition: transform 0.3s ease; /* pour une animation douce */
  transform: rotate(-5deg);
  border: 10px solid white; /* bordure blanche */
}

.img-rounded {
  border-radius: 20px; /* Coins arrondis sur l'image */
}

.text-justify {
  text-align: justify;
  font-family: 'Caballar', sans-serif; /* police personnalisée */
  font-size:15px;      /* taille du texte */
  color: #405d47;       /* couleur placeholder */
}

/* --- Responsive : en dessous de 992px (Bootstrap lg) --- */
@media (max-width: 991.98px) {
  .col1 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;   /* arrondi aussi en haut à droite */
    border-bottom-left-radius: 0;    /* supprime l’arrondi bas gauche */
    box-shadow: inset 5px 0 5px -5px rgba(0,0,0,0.5);
  }

  .col2 {
    border-bottom-left-radius: 10px; /* arrondi aussi en bas à gauche */
    border-bottom-right-radius: 10px;/* arrondi en bas à droite */
    border-top-right-radius: 0;      /* supprime l’arrondi haut droit */
    box-shadow: inset 5px 0 5px -5px rgba(0,0,0,0.5);
  }
  .background-img {
      margin: 0 auto; /* toujours centré horizontalement */
  }
}

.background-img {
  background-image: url('/img/scotchs/9.png'); /* chemin vers ton image */
  background-repeat: no-repeat;
  background-size: contain;

  width: 100%;
  max-width: 482px; 
  aspect-ratio: 482 / 76;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.background-img p {
  color: #405d47;
  font-size: clamp(40px, 5vw, 60px);
  font-family: 'NaomisHand-Regular';
  margin: 0;
  line-height: 0.5;
}