@charset "UTF-8";
/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
	  background-color: #000!important;
	color: black!important;
  
  height: 100%;
  font-family: 'neuehaasgrotesktextregular', sans-serif;
  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: 'neuehaasgrotesktextregular', 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: 300px!important;
	  max-width: 400px;
	 
  }
}


/* ------------------- 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: 50%;
}



/* ------------------- 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-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-size: 3rem; }
  .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: 'neue_haas_grotesk_display25Th';
  src: url('fonts/neuehaasgrotesklight-webfont.woff2') format('woff2'),
        url('fonts/neuehaasgrotesklight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'neuehaasgrotesktextmedium';
  src: url('fonts/neuehaasgrotesktext_medium-webfont.woff2') format('woff2'),
        url('fonts/neuehaasgrotesktext_medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'neuehaasgrotesktextregular';
  src: url('fonts/neuehaasgrotesktext_regular-webfont.woff2') format('woff2'),
        url('fonts/neuehaasgrotesktext_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'neuehaasgrotesktextbold';
  src: url('fonts/neuehaasgrotesktext_bold-webfont.woff2') format('woff2'),
        url('fonts/neuehaasgrotesktext_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* 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: 'neuehaasgrotesktextregular', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0.5px 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: 'neuehaasgrotesktextregular', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0.5px 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: 'Times New Roman Italic', 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: 250px;
  height: auto;
  opacity: 0.9;
}

.footer-title {
    font-family: 'neuehaasgrotesktextregular';
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  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: 'arial', 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 {
	  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  -------- */





.sectioncontact {
  background-color: #0a0a0a;
  min-height: 100vh;
  padding-top: 150px; /* espace sous la nav */
}

.sectioncontact input::placeholder,
.sectioncontact textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sectioncontact .form-control {
  border-radius: 0;
  border-width: 1px;
  padding: 0.8rem;
}

.sectioncontact .form-control:focus {
  border-color: #fff;
  box-shadow: none;
}
/* --- 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 button.my-button-light {
    display: block;
    margin: 0 auto;
  }

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



/* --- HEADER CONTACT --- */
.contact-header {
  background-image: url('img/HAZEMANN&MONNIN_watches_19.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40vh; /* ajuste la hauteur selon ton visuel */
  color: white;
  position: relative;
}

/* 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.4), rgba(0, 0, 0, 0.8));
  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);
  gap: 1rem;
}

.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: 'suisse_intlbold', 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: 'suisse_intlbold', serif;
}

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

.section-left {
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: 'joyride', 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);
}

/* --- 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-family: 'joyride', serif;
  font-style: italic;
  font-size: 4rem;
  display: inline;
  margin-right: 0.3em;
}

.liste-equipe p {
  display: inline;
  font-family: 'suisse_intlbold', serif;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  opacity: 0.8;
  margin-right: 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;
  }
}

