@charset "UTF-8";
/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
	margin: 0;
	  background-color: #000!important;
	color: black!important;
  
  height: 100%;
   font-family: 'Helvetica Neue', sans-serif;
	font-weight: 400;
  overflow-x: hidden !important;
  width: 100vw !important;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
hr {
  border: none;           /* supprime la bordure par défaut */
  height: 0.5px;            /* épaisseur souhaitée */
background-color: rgba(0,0,0,1)!important; /* noir opaque */
/* couleur noire */
  margin: 1rem 0;         /* optionnel : espace autour */
	opacity: 100%
}


.white{
	background-color: white!important;
	opacity: 100%/* noir opaque */
}

/* ------------------- STYLES GENERAUX / UTILITAIRES ------------------- */

/* Offcanvas background with opacity */
/* Corps du menu burger (mobile) */
.offcanvas {
  background-color: rgba(0,0,0,0.6) !important; /* fond noir semi-transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white !important;
  z-index: 9999 !important;
}

/* Titre et boutons du menu mobile */
.offcanvas-header h5,
.offcanvas-body a,
.offcanvas-body button {
  color: white !important;
  background: transparent !important;
  border: none;
  font-family: 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Burger button border removed */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

/* Ajustement de la taille du logo */
.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.navbar-brand img {
  max-height: 120px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
  max-height: 200px!important;
	  max-width: 300px;
	 
  }
}

.strongg{
	font-weight:bold!important
}
/* ------------------- NAVBAR ------------------- */
/* NAVBAR */
#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  /* Dégradé + blur */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  padding: 30px 0;
}


.navbar-brand img {
  max-height: 80px;
  height: auto;
  width: auto;
}

/* Soulignement animé uniquement sur les nav-link normaux */
#mainNavbar .nav-link:not(.dropdown-toggle) {
  position: relative;
  transition: color 0.3s ease;
}

#mainNavbar .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.4s ease;
}

#mainNavbar .nav-link:not(.dropdown-toggle):hover::after {
  width: 100%;
}

/* Dropdown menu transparent et texte blanc */
#mainNavbar .dropdown-menu {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Liens dans le dropdown */
#mainNavbar .dropdown-menu .dropdown-item {
  color: #fff !important;
  transition: color 0.3s ease;
}

/* Survol des sous-catégories */
#mainNavbar .dropdown-menu .dropdown-item:hover {
  color: rgba(255,255,255,1) !important;
  background: transparent !important;
}
/* Supprime le contour bleu (focus) sur le dropdown */
#mainNavbar .dropdown-toggle:focus,
#mainNavbar .dropdown-toggle:active,
#mainNavbar .dropdown-toggle.show {
  box-shadow: none !important;
  outline: none !important;
}
/* Animation dropdown fluide */
#mainNavbar .dropdown-menu {
  background: transparent !important;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

#mainNavbar .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}
#mainNavbar .dropdown-item {
  color: white !important;
  background: transparent !important;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 1px;
}

#mainNavbar .dropdown-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease;
}

#mainNavbar .dropdown-item:hover {
  color: white !important;
}

#mainNavbar .dropdown-item:hover::after {
  width: 100%;
}



/* ------------------- CAROUSEL ET HERO ------------------- */
.carousel-item { height: 100vh; min-height: 400px; }
.carousel-item img { object-fit: cover; height: 100vh; opacity: 0.9; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%) opacity(0%);
}

/* Overlay noir sur le carousel */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Hero caption */
.hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);

  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 3;
  max-width: 90%;
  width: 100%;
  padding: 0 20px;
}
.hero-caption h1 {
  font-family: 'Times New Roman Italic';
	font-style: italic;
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-align: center;
}
.scroll-down {
  position: static;
  text-align: center;
  margin-top: 1rem;
}
.hero-caption h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.scroll-down .arrow-wrapper {
  display: inline-block;
  animation: bounce-down 1.5s infinite;
}
.scroll-down .arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
  display: block;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@media (max-width: 768px) {
  .hero-caption h1 {   font-family: 'Times New Roman Italic'!important;
	font-style: italic; 
  margin-bottom: 2rem; font-size: 2.5rem; margin-top: -100px!important;}
  .hero-caption h3 { font-size: 1rem; }
  .hero-caption { bottom: 30px; }
}

/* ------------------- TYPOGRAPHIE ET BOUTONS ------------------- */

/* Fonts */
@font-face {
  font-family: 'Times New Roman';
  src: url(fonts/TimesNewRomanPS-ItalicMT.woff2) format('woff2'),
        url(fonts/TimesNewRomanPS-ItalicMT.woff) format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Times New Roman Italic';
  src: url('fonts/TimesNewRomanPS-ItalicMT.woff2') format('woff2'),
        url('fonts/TimesNewRomanPS-ItalicMT.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
         url('fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
         url('fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue.woff2') format('woff2'),
         url('fonts/HelveticaNeue.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
         url('fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Thin.woff2') format('woff2'),
         url('fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
/* Titres */
h1 {
  font-family: 'Times New Roman Italic';
  font-size: 5rem;
}
@media (max-width: 768px) {
  h1 { font-size: 3rem; }
}
h2 {
  font-family: 'Times New Roman';
  font-size: 3rem!important;
}
@media (max-width: 768px){
  h2 { font-size: 2rem!important }
}

/* Bouton Dark */
.my-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: black;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid black;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.my-button:hover {
  background-color: black;
  color: white;
  border-color: black;
}

/* Bouton Light */
.my-button-light {
  display: inline-block!important;
  padding: 10px 15px; 
  background-color: transparent;
  color: white; 
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.my-button-light:hover {
  background-color: white;
  color: black;
  border-color: white;
}

/* Image initialement invisible et décalée vers le bas */
.sectioncollection img {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.8s ease-out, transform 0.8s ease-out;
}

/* Classe ajoutée quand l'image apparaît */
.sectioncollection img.reveal {
  opacity: 1;
  transform: translateY(0);
}



/* ------------------- SECTIONS DE CONTENU ------------------- */

/* Section Atelier */
.sectionatelier {
  position: relative;
  background: 
    linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 100%), 
    url("img/hm_img_4.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Section Collection */
.sectioncollection img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .sectioncollection img { max-width: 90%; }
}







/* ------------------- SECTION PRESSE ------------------- */

.press-section {
  position: relative;
  background: url('img/side_by_side_3024x.jpg') center center/cover no-repeat;
  padding: 80px 20px;
  color: white;
}

.press-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.press-container {
  position: relative;
  z-index: 2;
}

.press-title {
  font-size: 5rem;
  margin-bottom: 50px;
  text-align: center;
  font-family: 'Helvetica Neue', serif;
}

.press-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
  height: 500px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.press-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 0;
  transition: background 0.3s ease;
}

.press-card:hover::before {
  background: rgba(0,0,0,0);
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Texte sous les cards */
.press-card-title {
  margin-top: 15px;
  font-size: 1.5rem;
}

.press-date {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.press-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
} 
.press-link:hover {
  color: white;
  text-decoration: underline;
  font-weight: bold;
  transition: 0.3s;
}

.press-link:hover {
  color: #ffffff;
}

.press-all {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.press-all:hover {
  background: white;
  color: black;
}
/* Centrer le bouton dans sa colonne */
.press-section .col-lg-4:last-child {
  display: flex;
  justify-content: center;  /* centre horizontalement */
  align-items: center;      /* centre verticalement */
  min-height: 500px;        /* même hauteur que les cards pour alignement */
}

/* Responsive */
@media (max-width: 992px) {
  .press-card {
    height: 550px;
	 
  }
	.press-card img{
		
	opacity: 100%;
	}

  .press-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .row > .col-lg-4:nth-child(2) {
    display: none; /* cacher la deuxième card sur mobile */
  }

  .press-all {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
	

}
@media (max-width: 767px) {
  .press-card {
    transform: none !important;
    box-shadow: none !important;
  }
  .press-card::before {
    background: rgba(0,0,0,0); /* overlay constant */
  }
}
/* --- cibler uniquement la 3ème colonne (bouton "Tous les articles") --- */
/* tu peux utiliser nth-last-child(1) ou last-child ; les deux fonctionnent ici */
.press-section .row > .col-lg-4:nth-last-child(1) {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  min-height: 500px;       /* gardé pour desktop, aligne avec les cards */
  padding: 0 1rem;
}

/* --- override en mobile : on supprime la min-height et les grosses marges --- */
@media (max-width: 768px) {
  .press-section .row > .col-lg-4:nth-last-child(1) {
    min-height: auto;       /* permet au contenu de définir la hauteur */
    padding: 10px 0;        /* espace raisonnable */
  }

  /* si tu utilises mb-5 sur le bouton, on force la marge à 0 pour ce bouton là */
  .press-section .row > .col-lg-4:nth-last-child(1) .my-button-light,
  .press-section .row > .col-lg-4:nth-last-child(1) .my-button {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* si tu veux centrer le bouton et le rendre non-fullwidth */
  .press-section .row > .col-lg-4:nth-last-child(1) .my-button-light {
    display: inline-block;   /* évite qu'il prenne toute la largeur */
  }
}






/*---------------foooooter------------*/
.footer {
  background-color: #25180b;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  max-width: 400px;
  height: auto;
  opacity: 0.9;
}

.footer-title {
    font-family: 'Helvetica Neue', sans-serif ;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem!important;
	font-weight: 400;
  letter-spacing: 1px;
}

.newsletter-form {
  gap: 10px;
}	 	

.newsletter-input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  outline: none;
  flex: 1;
  max-width: 250px;
  font-size: 0.95rem;
  color: #000;
}

.newsletter-input:focus {
  outline: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-link:hover::after {
  width: 100%;
}

/* -------- Responsive -------- */
@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
  .footer-logo {
	  max-width: 300px;
	  margin: auto!important;
	  text-align: center;
    margin-bottom: 20px;
  }
  .footer-title {
    margin-top: 20px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-input {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  .footer-links {
    justify-content: center !important;
    margin-top: 20px;
  }
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}


/* -------- PAGE CONTACT  -------- */

/* --- Champs de formulaire sur la page contact --- */
form .form-control {
  border: none;                 /* retire la bordure par défaut Bootstrap */
  border-bottom: 2px solid #fff; /* épaisseur et couleur du trait bas */
  border-radius: 0;             /* pas d'arrondi (met par ex. 8px si tu veux arrondi) */
  background-color: transparent;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

/* effet au focus */
form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #ccc; /* couleur du trait quand tu cliques */
}



/* --- CENTRER TITRE, TEXTE ET BOUTON SUR MOBILE --- */
@media (max-width: 768px) {
  .contact-section h1,
  .contact-section p.lead {
    text-align: center;

  }
	.contact-section p.lead {
		font-size: 1rem;
		text-align: left;
	}
  .contact-section button.my-button-light {
    display: block;
    margin: 0 auto;
  }

  /* Le formulaire reste aligné à gauche */
  .contact-section form {
    text-align: left;
  }
}



/* --- HEADER CONTACT --- */
/* --- HEADER CONTACT (MODIFIÉ) --- */
.contact-header {
  background-image: url('img/HAZEMANN&MONNIN_watches_19.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh; /* Hauteur de l'image (ajustez si besoin) */
  color: white;
  
  /* CLÉS DE POSITIONNEMENT */
  position: sticky; 
  top: 0;         
  z-index: 1;       
}


.contact-section {

  position: relative;
  z-index: 2; 	

background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Optionnel : léger voile noir pour lisibilité du texte */
.contact-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.contact-header .text-center {
  position: relative;
  z-index: 1;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2.5rem;
  }
	
	.contact-header {
		max-height: 30vh;
	}

  .contact-header p {
    font-size: 1rem;
  }
}



/* Empêche la disparition du bloc de droite sur mobile */
@media (max-width: 768px) {
  .col-lg-4 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Pour éviter qu’il soit trop large ou mal positionné */
  .col-lg-4 .bg-light {
    margin-top: 2rem;
  }
}
/* --- Bloc de droite sur la page contact --- */
.contact-sidebar {
  color: #fff;
}

@media (max-width: 768px) {
  .contact-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;

  }
	.contact-sidebar hr {
		display: none;
	}
	
	
	
  .contact-sidebar .bg-light {
    width: 90%;
    margin: 2rem auto;
  }

  .contact-sidebar h5,
  .contact-sidebar p,
  .contact-sidebar a {
    text-align: center;
  }
}


.active{
	color: white!important;
}





/* --------------------------------- Page Workshop --------------------------------- */

/* --- HERO WORKSHOP --- */
.workshop-hero {
  background-image: url('img/both.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  padding: 0 8%;
  position: relative;
}

.hero-text-left {
  z-index: 2;
}

.hero-text-left h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-text-left h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.hero-number-right {
  z-index: 2;
}

.hero-number-right h1 {
  font-size: 8rem;
  font-weight: 700;
  opacity: 0.2;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .workshop-hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-number-right h1 {
    font-size: 5rem;
    margin-top: 2rem;
    opacity: 0.3;
  }

  .hero-text-left h1 {
	  margin-top: 70%;
    font-size: 2.5rem;
  }

  .hero-text-left h2 {
    font-size: 1.2rem;
  }
}

/* --- SECTION DUO --- */
.duo-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  padding: 10vh 8%;
  background: linear-gradient(to right, #000 0%, rgba(0,0,0,0) 100%), #fff;
  color: #fff;
  overflow: hidden;
}

/* Image décorative à droite */
.duo-section::after {
  content: "";
  position: absolute;
  right: -50%;
  top: 70%;
  transform: translateY(-50%);
  width: 100%;
  height: 200%;
  background-image: url('img/test_3.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.duo-text-left,
.duo-text-right {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.duo-text-left {
  align-self: flex-start;
}

.duo-text-right {
  align-self: flex-end;
  text-align: left;
}

.duo-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .duo-section {
    padding: 8vh 5%;
    gap: 3rem;
    background: none; /* on enlève le dégradé ici */
  }

  .duo-section::after {
    content: "";
    position: absolute;
    inset: 0; /* occupe toute la section */
    background-image: url('img/test_3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* moitié transparente */
    z-index: 1;
  }

  .duo-text-left,
  .duo-text-right {
    position: relative;
    z-index: 2; /* texte au-dessus de l’image */
    max-width: 100%;
    text-align: left;
  }
}


/* --- SECTION ATELIER --- */
.atelier-section {
  position: relative;
  color: #fff;
  padding: 12vh 8%;
  background: linear-gradient(to right, #000 0%, rgba(0,0,0,0) 100%), 
              url('img/nb_closeup.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Ligne du haut */
.atelier-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.atelier-number {
  font-size: 8rem;
  font-weight: 700;
  opacity: 0.2;
}

.atelier-title {
  text-align: right;
}

.atelier-title h1 {
   font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.atelier-title h3 {
  font-size: 1.5rem;
  font-weight: 400;
 
  margin-top: 0.5rem;
}

/* Texte du bas */
.atelier-bottom {
  margin-top: 8rem;
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.atelier-bottom p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e5e5;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .atelier-section {
    padding: 10vh 5%;
    text-align: center;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.2) 100%), 
                url('img/nb_closeup.jpg') center center / cover no-repeat;
  }

  .atelier-top {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .atelier-number {
    font-size: 4rem;
  }

  .atelier-title {
    text-align: center;
  }

  .atelier-bottom {
    max-width: 100%;
    margin-top: 4rem;
  }
	.atelier-bottom p {
	text-align: left;	
	}
}



/* --- GALERIE ATELIER --- */
.atelier-gallery {
  background: #000;
  padding: 5vh 8%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-height: 90vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

/* Croix de fermeture */
.lightbox .close {
  position: absolute;
  bottom: 7%; /* plus bas */
  right: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Helvetica Neue', sans-serif; /* pour cohérence avec ton site */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox .close:hover {
  opacity: 1;
}


/* Flèches de navigation */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  z-index: 10;
  padding: 0;
}

.lightbox .nav:hover {
  opacity: 0.5;
}

.lightbox .nav svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1px; /* VRAI trait de 1 px */
  fill: none;
  pointer-events: none;
}

.lightbox .prev { left: 5%; }
.lightbox .next { right: 5%; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

   .lightbox .nav svg {
    width: 24px;
    height: 24px;
  }
  .lightbox .close {
   
    right: 25px;
  }
}


.gallery-grid img {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-grid img.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --- Apparition sobre et clean au scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}





/* -------------- SECTION EQUIPE ------------- */

.equipe {
  background-color: #000;
  color: #fff;
  padding: 10vw 8vw;
  font-family: serif;
}

.titre-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.section-left {
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: serif;
}

.section-right {
    font-size: 8rem;
  font-weight: 700;
  opacity: 0.2;
}

.sous-titre {
  font-family: 'arial';
  font-weight: normal;
  font-size: clamp(1rem, 1.5vw, 1.5rem);

}

hr {
  margin: 2vw 0 4vw;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hrr{
	  margin-bottom: 20px;;
}
/* --- la liste fluide --- */
.liste-equipe {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5vw 1vw;
  line-height: 1.3;
}

.liste-equipe h1 {

  font-style: italic;
  font-size: 4rem;
  display: inline;
  margin-right: 0.3em;
}

.liste-equipe p {
  display: inline;
  font-family: 'arial';
  font-size: 0.9rem;
  opacity: 0.8;
  margin-right: 1em;
	margin-left: -1em;
}

/* --- responsive --- */
@media (max-width: 768px) {
  .section-right {
    font-size: 4rem;
  }

  .liste-equipe {
    gap: 1rem 0.8rem;
  }

  .liste-equipe h1 {
    font-size: 2.2rem;
  }

  .liste-equipe p {
    font-size: 1.1rem;
	  
  }
}








/*------------------------------------------PRESSE PAGE ------------------------*/

.presse {
  font-family: 'Helvetica Neue', sans-serif;

}

.article-section {
  display: flex;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
}

.titre-article {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.2em;
}

.date-article {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1.2em;
}

.texte-article {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 1.5em;
}

.article-section img {
  object-fit: cover;
  height: 50vh;
  width: 100%;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .article-section {
    flex-direction: column !important;
  }
	.displaynone{
		display: none!important
	}
  .article-section img {

    height: 40vh;
  }

  .titre-article {
    font-size: 2rem;
	  	  margin-top: 0%!important;
  }

  .texte-article {
    font-size: 1rem;
  }

  .presse .col-md-6.p-5 {
    padding: 2rem !important;
  }
}
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.article-section {
  scroll-snap-align: start;
  min-height: 100vh;
}

.bg-dark{
	background-color: #23180E!important;
	background: #23180E!important
}

.tri{
	margin-top: 0%;
}

/* Style du champ de recherche */
#searchText {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    background-color: transparent !important;
    /* CHANGEZ CETTE LIGNE pour modifier la couleur du texte tapé */
    color: white!important; /* Exemple : Or */
    box-shadow: none !important;
    font-family: 'Helvetica Neue', sans-serif;
}



#searchText::placeholder {
    /* CHANGEZ CETTE LIGNE pour modifier la couleur du texte "Recherche..." */
    color: white!important; /* Exemple : Or (doit correspondre à la couleur de saisie pour la cohérence) */
    opacity: 0.8; 
}



/* === Remove ugly blue focus ring (but keep accessible focus via :focus-visible if wanted) === */

/* neutralise l'apparence native (flèches etc. peuvent changer) */
select, input, button, .form-select, .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  /* conserve le background/typo du site */
  background-clip: padding-box;
}

/* retire le focus-inner spécifique Firefox pour certains éléments */
input::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* retire le halo tactile sur iOS/Android */
* {
  -webkit-tap-highlight-color: transparent;
}

/* si tu veux TOUJOURS supprimer la bordure y compris pour focus-visible */
select:focus, input:focus, button:focus, .form-control:focus, .form-select:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* --- Recommandation accessibilité (optionnelle) --- 
   Affiche un focus discret uniquement pour les utilisateurs clavier (navigateurs modernes supportent :focus-visible).
   Si tu veux le feedback clavier, active la règle suivante (décommente) :
*/
:focus-visible {
  outline: 2px solid rgba(255,255,255,0.15); /* discret, cohérent avec ton design sombre */
  outline-offset: 2px;
}

/* Si tu veux un style encore plus subtil (exemple) */
select:focus-visible, input:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}



/* --- neutralise les surbrillances et bordures natives des menus déroulants --- */

/* enlève les contours sur le select lui-même */
select,
.form-select {
  background-color: transparent;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  color: inherit;
}

/* empêche les fonds bleus ou gris sur le menu déroulant (Safari / Chrome) */
select option {
  background-color: #000; /* ou #fff selon ton design */
  color: #fff; /* adapte selon ton thème */
  border: none;
}

/* supprime le contour quand le menu est ouvert */
select:focus,
select:active,
select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

/* pour Firefox */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

/* pour Safari iOS et Chrome */
select::-webkit-focus-inner {
  border: 0;
  outline: 0;
}



/* Réduire l'espace en haut pour le header de la section Presse */
@media (max-width: 767.98px) {
    /* Ceci est la classe presse-header-compact ajoutée dans le HTML */
    .presse-header-compact {
        padding-top: 30px !important; /* Ajustez cette valeur pour réduire l'espace. 110px semble être un bon départ pour compenser la navbar fixe */
    }
}

/* Optionnel: Assurez-vous que les select ne soient pas trop serrés */
.presse .form-select-sm {
    padding-left: 0.5rem; /* Ajuster au besoin */
    padding-right: 0.5rem;
}





/* --- REDUCTION DE LA TAILLE DE POLICE POUR LES BOUTONS MOBILES (my-button-light) --- */

@media (max-width: 767.98px) { /* Cible les écrans jusqu'à 767px (la limite typique du mobile) */
    
    /* Bouton Light */
    .my-button-light {
        font-size: 0.75rem !important; /* Réduit la taille de la police, par exemple de 0.95rem à 0.85rem */
        padding: 8px 12px !important; /* Optionnel : réduire un peu le padding pour un bouton plus compact */
		border: 0.9px solid;
    }
    
    /* Bouton Dark (si vous en avez besoin, sinon ignorez) */
    .my-button {
        font-size: 0.75rem !important; 
        padding: 8px 15px !important; 
		border: 0.9px solid ;
    }
}




/*------------------------------------------ COLLECTIONS PAGE ------------------------*/

/* 1. Conteneur principal */
.collections-container {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* 2. Contenu Fixe (Texte) */
.fixed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 56px;
    z-index: 5;
    pointer-events: none;
}

.fixed-content a,
.fixed-content .fixed-text-area {
    pointer-events: auto;
}

/* 3. Conteneur des Slides */
.collection-slides {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* 4. Chaque slide */
.collection-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease; /* fondu plus doux */
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-slide.active {
    opacity: 1;
    position: relative;
    animation: fadeIn 1.5s ease both;
}

/* 5. Image de montre */
.slide-watch-img {
    position: relative;
    z-index: 3;
    max-width: 500px;
    height: auto;
    margin-left: 20%;
    transition: transform 0.8s ease, opacity 1s ease;
    opacity: 0.95;
}

.slide-watch-img:hover {
    transform: scale(1.03); /* effet subtil au survol */
    opacity: 1;
}

/* 6. Blur derrière la montre */
.watch-blur {
    position: absolute;
    width: 30vw;
    height: 60%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30000px;
    z-index: 2;
    margin-left: 20%;
    box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.3);
    transition: opacity 1s ease;
}

/* 7. Points sous la montre */
.collection-dots {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* 8. Animation d’apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
    /* 1. Rétablir le flux normal pour les conteneurs principaux */
    .collections-container {
        position: relative;
        height: auto;
        min-height: 0;
        /* CLÉ : Inverser l'ordre des blocs enfants (slides et fixed-content) */
        display: flex; /* Active Flexbox */
        flex-direction: column-reverse; /* Place le fixed-content (texte) SOUS les collection-slides (images) */
    }

    /* 2. Réinitialiser la superposition des blocs enfants */
    .fixed-content,
    .collection-slides {
        position: relative; /* Les blocs s'empilent naturellement */
        width: 100%;
        height: auto; /* La hauteur est déterminée par le contenu */
        padding-top: 0;
        z-index: 1; /* Retirer le z-index élevé */
    }

    /* 3. Assurer que chaque slide prend sa place dans le flux (important pour les images) */
    .collection-slides {
        /* Assure que le conteneur des slides prend de la hauteur pour afficher l'image active */
        height: 50vh !important; /* Exemple de hauteur pour mobile (ajuster si besoin) */
        min-height: 350px; /* Hauteur minimum */
    }
    
    .collection-slide {
        /* Seule la slide active doit être visible pour éviter le chevauchement */
        position: absolute; /* Garder absolute ici permet au carrousel de fonctionner normalement */
        height: 100%;
    }

    /* 4. Ajuster le positionnement de la montre et du blur pour le centrage mobile */
    .slide-watch-img,
    .watch-blur {
        margin-left: 0; /* Supprimer le décalage utilisé pour le desktop */
    }

    /* 5. Ajuster le padding/marge de la zone de texte */
    .fixed-content .container-fluid {
        flex-direction: column; /* Assurer que le contenu (texte) est en colonne */
        height: auto;
        padding-top: 0 !important;
        padding-bottom: 30px;
    }

    .fixed-text-area {
        padding-top: 1rem !important; /* Ajuster l'espace */
        padding-bottom: 0 !important;
        text-align: center !important; /* Centrer le texte en mobile */
    }
    
    .fixed-text-area h1, 
    .fixed-text-area p,
    .fixed-text-area a {
        text-align: center; /* Centrer les éléments de texte */
        margin-left: auto;
        margin-right: auto;
    }
    
    .less {
        padding-bottom: 2rem !important; /* Remettre un peu d'espace */
    }

    /* 6. Ajuster les points pour qu'ils restent bien centrés dans leur bloc */
    .collection-dots {
        position: absolute;
        bottom: 20px; /* Placer les points en bas des slides */
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        margin-bottom: 0;
    }
	
	.slide-watch-img {
        /* Utilisez une unité relative pour qu'elle s'adapte à la largeur de l'écran */
		max-width: 90vw;}
}



/* Empêche les slides inactives de bloquer le survol */
.collection-slide {
  pointer-events: none; /* Désactive les interactions */
}

.collection-slide.active {
  pointer-events: auto; /* Active les interactions uniquement sur la slide visible */
}






/* ---------------------------------------------------- Page Montre École ---------------------------------------- */





/* 1. Header de Collection (Base sur l'image fournie) */
.collection-header {
  /* Assurez-vous que l'image est bien dans votre dossier img (ex: fond-montre-ecole.jpg) */
  background: url("img/bg_header_mntrecle.jpg")no-repeat center top; 
  background-size: cover;
  min-height: 100vh; 
  /* Le padding-top doit être géré par l'espace sous la navbar fixed */
  padding-top: 100px !important; 
  position: relative;
  /* Utilise la couleur du corps du texte (white) */
  color: white; 
}

.collection-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Voile sombre léger pour lisibilité sur l'image très claire/détaillée */
  background-color: rgba(0, 0, 0, 0.4); 
}

.collection-header .header-content {
  z-index: 10;
  max-width: 1000px;
}

/* 2. Style des titres et hr dans le thème Dark */
/* Réutilisation des H1 et H2 définis dans votre CSS (Times New Roman Italic) */
.montre-snippet .h2-custom {
    /* Si H3 n'est pas stylé, on peut lui donner le style d'un H2 ou d'une H4 */
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem; /* Ajuster pour la taille des titres de montre */
    color: white;
}
.montre-snippet .h4-custom {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
}

/* Ligne de séparation blanche (pour remplacer la hr par défaut noire) */
.hr-white {
  background-color: rgba(255,255,255,0.2)!important; /* Gris très clair semi-transparent */
  height: 1px;
}

/* 3. Image de la montre */
.watch-image {
  max-width: 90%; 
  height: auto;
  /* Effet d'apparition au scroll (déjà géré par la classe .reveal sur .montre-snippet) */
}

/* 4. Galerie d'images (pour réintégrer la galerie dans l'accordéon) */
/* Les styles sont déjà dans votre CSS pour .gallery-grid, mais voici une petite adaptation si besoin */
@media (max-width: 992px) {
  /* On force le 2 colonnes sur mobile/tablette pour la galerie de détails */
  .gallery-grid .col-lg-2 {
    flex: 0 0 auto;
    width: 33.333333%; /* 3 colonnes sur 12 */
  }
}
@media (max-width: 576px) {
    .gallery-grid .col-lg-2 {
        width: 50%; /* 2 colonnes sur très petit écran */
    }
}

h4{
	font-family: 'Helvetica Neue';
	 font-weight: 100;
    font-style: normal;
	font-size: 2.5rem;
	
}



/* ----------------------------------------------------
   SECTION GALERIE - MONTRE ÉCOLE
---------------------------------------------------- */

.gallery-section {
background-color: rgba(60, 47, 35, 0.2);

  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.gallery-wrapper {
  width: 100vw; /* prend 90% de la largeur de l’écran */
  margin: 0 auto;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes desktop */
  gap: 2px; /* aucun espace */
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; /* carré parfait */
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
  padding: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Effet au survol */
.gallery-grid img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* 2 colonnes sur mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}




/* ---- Mini carousel dans la section specs ---- */
.carousel-spec {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.carousel-images {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-images img {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-images img.active {
  display: block;
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: white;
  transform: scale(1.2);
}

.grand{
	font-size: 1.8rem;
	font-weight: 200;
}

.grand2{
	font-size: 1.2rem;
}

.bg-darkk {
  background: linear-gradient(to bottom, #23180E 0%, #000000 100%) !important;
  color: white;
}


.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* deux colonnes */
  gap: 0.75rem 2rem; /* espace entre lignes et colonnes */
}

@media (max-width: 768px)

{ 
	
	
	.v2, .v3, .v1 {
	display: none!important;
	}
  .specs-list {
    grid-template-columns: 1fr; /* une seule colonne sur mobile */
  }
	.zentrum{ text-align: center}
}

	
}



.carousel-images img {
  display: none;
  width: 100%;
  transition: opacity 0.4s ease;
}

.carousel-images img.active {
  display: block;
  opacity: 1;
}



/* --- AMÉLIORATION ACCESSIBILITÉ MOBILE - POINTS CAROUSEL --- */

@media (max-width: 768px) {
    
    /* Augmenter l'espace entre les points pour éviter les clics accidentels */
    .carousel-dots {
		padding-top: 50px;
        gap: 25px; /* Augmentation de l'espace (était 8px) */
    }

    /* Augmenter la taille du point lui-même */
    .carousel-dots .dot {
        width: 15px; /* Augmenter le diamètre (était 10px) */
        height: 15px; /* Augmenter le diamètre */
    }
    
    /* Le point actif devient légèrement plus grand que les autres */
    .carousel-dots .dot.active {
        transform: scale(1.3); /* Légère augmentation pour rester visible */
    }
}



/* --- NOUVEAU STYLE POUR LA SECTION INSTAGRAM MULTI-VIDÉOS --- */

/* Le wrapper de chaque vidéo */
.insta-video-wrapper {
    /* Style pour ressembler à une vignette Instagram */
    width: 100%;
    /* Utilisation de padding-top pour garantir un ratio carré (100% de la largeur) */
    padding-top: 150%; 
    position: relative;
    overflow: hidden; 

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.insta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recadre et couvre l'intégralité du carré */
    display: block;
}

/* L'ancien .video-container n'est plus utilisé et doit être retiré/mis à jour */
/* Si vous l'avez encore, assurez-vous de le retirer ou de le commenter. */
/*
.video-container {
    max-width: 400px; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
}
*/

 	
.video-container {
    max-width: 400px; /* Limite la largeur de la vidéo à une taille de "post" */

    overflow: hidden; /* Assure que la vidéo respecte les coins arrondis */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Petite ombre pour la mettre en valeur */
}

.insta-video2 {
    width: 100%;
    height: auto;
    display: block;
}


/* Cache l'élément .v4 sur les écrans moyens (iPad, Desktop) et plus grands */
@media (min-width: 768px) { /* Écrans md, lg, xl, xxl et plus */
    .v4 {
        display: none !important;
    }
	

}


/* Style dans votre fichier style.css */

/* Cible les écrans jusqu'à 575.98px (Mobile) */
@media (max-width: 575.98px) {
    .vidz {
        display: none !important;
    }
}



.light{
    font-family: 'Helvetica Neue';

    font-weight: 300;
}



/* FORCE L'ALIGNEMENT ET LA LARGEUR DANS LA SECTION CONTACT */
.contact-section .col-lg-6 form .mb-3 {
    /* S'assurer que les conteneurs de champs s'alignent à gauche */
    text-align: left !important;
}

.contact-section form .form-label {
    /* S'assurer que les étiquettes s'alignent à gauche */
    width: 100%;
    text-align: left !important;
}

.contact-section form .form-control {
    /* S'assurer que les champs prennent 100% de la largeur */
    width: 100%;
}



.no-filter-img {
    filter: none !important; 
    opacity: 1 !important; 
}

/* NOUVELLE RÈGLE : Cible le conteneur du carrousel pour supprimer les overlays sur le parent */
#collectionCarousel .carousel-item::before, 
#collectionCarousel .carousel-item::after {
    content: none !important; /* Supprime les pseudo-éléments utilisés pour les overlays */
    background: none !important; /* Supprime le fond semi-transparent */
}




