/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-image: url("../images/femme.png");
  background-repeat: no-repeat;       /* Empêche la répétition */
  background-size: cover;             /* Étire l'image pour couvrir tout l'écran */
  background-position: center center; /* Centre l'image */
  background-attachment: fixed;       /* (Optionnel) effet de parallaxe */
}


#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/femme.png') no-repeat center center/cover;
  z-index: -1;
}
  
  /* === EN-TÊTE (BANDEAU) === */
.bandeau {
    background-image: url('../../../pictures/bandeau-1.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
}
  
.bandeau-contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
#logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%; 
    border: 2px solid rgb(238, 1, 1);
    box-shadow: 0 3px 7px rgb(250, 6, 6);
    margin-bottom: 20px;
}
  
.texte-bandeau h1 {
    font-size: 2.2rem;
    margin: 0;
}
  
.texte-bandeau h2 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 5px;
}
  
  .separator {
    width: 60px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto;
}
  
  /* === NAVIGATION === */
nav {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
  
nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}
  
  nav ul li {
    margin: 0 15px;
}
  
nav ul li a {
    text-decoration: none;
    font-weight: bold; 
    color: #222;
    font-size: 16px;
    transition: 0.3s ease;
}
  
nav ul li a:hover {
  color: #e63946;
}
  
  /* === CONTENEUR === */
.contener {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}
  
/* Section Bienvenue */
.intro {
    max-width: 1200px;
    margin: 40px auto 40px auto;
    padding: 0 20px;
    text-align: center;
}
  
.intro h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #a30266;
}
  
.texte-bienvenue {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1.2em;
    line-height: 1.8em;
    color: #c40404;
    margin-bottom: 20px;
    text-align: justify;
    padding: 1rem;
    border-radius: 10px;
    color: red;
    text-shadow: 1px 1px 1px white;
}
  
  /* === GALERIE === */
#galerie {
    text-align: center;
}
  
#galerie h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #a30266;
}

.grille-Créations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-top: 20px;
}
  
.Créations-link {
    text-decoration: none;
}
  
.Créations {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
  
.Créations:hover img {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}
  
.Créations img {
    width: 100%;
    height: auto;
    display: block;
}
  
.Créations p {
    font-weight: bold;
    color: #111;
    padding: 15px 10px;
    margin: 0;
}

.Créations video {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.Créations.horizontal {
    width: 340px; 
}

.Créations.horizontal video {
    width: 100%;
    border-radius: 8px;
}
  
.Créations.vertical video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
}

.badge {
    position: absolute;
    background: #ff0066;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 8px;
    top: 10px;
    left: 10px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* contact */
#contact {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 30px 30px;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 860px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
}
  
#contact h6 {
    font-size: 2em;
    font-weight: 700;
    margin: 40px auto 20px;
    text-transform: uppercase;
}
  
.btn-contact {
    background-color: #222;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-left: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}
  
.btn-contact i {
    margin-right: 5px;
}
  
.btn-contact:hover {
    background-color:  #0b73eb;
    transform: scale(1.05);
}
  
#contact p strong {
    color: #000;
}
  
.contact-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    max-width: 780px;
    margin: 30px auto;
    font-size: 1rem;
    line-height: 1.6;
}
  
.contact-box i {
    color: #0fb5f7;
}
  
.contact-box a {
    color: #f3f8f7;
    text-decoration: none;
}
  
.contact-box a:hover {
    text-decoration: underline;
}
  
.contact-box p {
    margin: 8px 0;
}
  
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 25px auto 30px;
  flex-wrap: wrap;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background-color: #a80606;
  color: #00aaff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-social:hover {
  background-color: #0b73eb;
  color: #fff;
  transform: scale(1.12);
}

.btn-social i {
  line-height: 1;
}

.icon-img {
  height: 30px;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .contact-box {
    padding: 15px;
    font-size: 0.95rem;
    text-align: center;
  }

  .btn-contact {
    margin-top: 15px;
    display: inline-block;
    font-size: 1rem;
  }

  .contact-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-social,
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .contact-icon img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }
}
  
/* Partie Contact */
h6 {
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
    color: #a30266;
}
  
/* Footer */
footer {
    background-color: #070707;
    color: white;
    text-align: center;
    padding: 20px 20px;
    font-size: 0.95em;
    position: relative;
}
  
.footer-content {
    margin-bottom: 15px;
    line-height: 1.6;
}
  
footer small {
    display: block;
    margin-top: 10px;
    font-size: 0.8em;
    opacity: 0.7;
}
  
.horizontal img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
  
.vertical img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
  
  /* Responsive tablette */
 @media screen and (max-width: 1024px) {
    .Créations {
      width: calc(50% - 30px); 
    }
}
  
  /* Responsive mobile */
 @media screen and (max-width: 600px) {
    .Créations {
      width: 100%; 
    }
}

@media screen and (max-width: 1200px) {
    .Créations.horizontal {
      width: 300px;
    }
}

@media screen and (max-width: 600px) {
    .Créations.vertical {
      width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-buttons {
      flex-wrap: wrap;
      gap: 12px;
    }
  
    .btn-social {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
    }
}

/* Version pour très grands écrans (ex : écran PC, ultra-wide) */
@media screen and (min-width: 1400px) {
  body {
    background-size: contain; /* ou 120% auto pour zoomer légèrement */
    background-position: top center; /* ou right center si Venom est à droite */
  }
}

/* Pour les grands écrans (desktop) */
@media screen and (min-width: 1024px) {
  body {
    background-size: cover;
    background-position: top center;
  }
}

/* Pour les écrans moyens (tablettes) */
@media screen and (max-width: 1023px) and (min-width: 601px) {
  body {
    background-size: cover;
    background-position: center center;
  }
}

/* Version pour les écrans plus petits (ex : tablette, smartphone) */
@media screen and (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center center;
  }
}

/* Pour les petits écrans (mobiles) */
@media screen and (max-width: 600px) {
  body {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: scroll;
  }
}

/* Bouton retour haut */
#topBtn {
  position: fixed; 
  bottom: 80px; 
  right: 30px; 
  opacity: 0; 
  visibility: hidden;
  font-size: 22px;
  border: none;
  outline: none;
  background-color: #a80606;
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: opacity 0.5s ease, transform 0.3s ease, visibility 0.5s;
  z-index: 100;
}

#topBtn:hover {
  background-color: #e63946;
  transform: scale(1.1);
}

/* Vimeo*/
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Pour vidéos horizontales (16:9) */
.video-container.landscape::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

/* Pour vidéos verticales (9:16) */
.video-container.portrait::before {
  content: "";
  display: block;
  padding-top: 177.77%; /* 9:16 */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


