
:root {
    --1: 0,0,0; /* Couleur principale */
    --2: #b4b4b4; /* Variante claire */
    --3: #474747;  /* Variante foncée */
}





/* CONTACT */


/* Centrer le contenu */
.contact-container {
    max-width: 600px;
    background-color: rgba(var(--1), 0.025);
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    font-family: helvetica;
    height: 65dvh;
    text-decoration: none;
}

.contact-container h2{
  font-size: 21px;
  color: var(--1);
  position: relative;
}

/* Styliser les titres */
.contact-container h1 {
    margin-bottom: 5px;
    align-self: center;
}

/* Styliser les paragraphes */

.contact-container p:nth-of-type(1) {
  margin-top: 0dvh;
}

.contact-container p {
  position: relative;
    font-size: 18px;
    line-height: 1;
    color: var(--2);
}

/* Styliser la liste */
.contact-container ul {
    list-style: none;
    padding: 0;
}

.contact-container li {
    font-size: 28px;
    color: var(--1);
    margin: 10px 0;
}

/* Styliser les liens */
.contact-container a {
    color: var(--1);
    text-decoration: none;
}

h1{
    color: rgb(0, 0, 0);
    font-family: helvetica;
}

/* Pour tous les liens (y compris les visités) */
a {
    text-decoration: none; /* Enlève le soulignement */
}

/* Optionnellement, tu peux aussi définir des couleurs personnalisées */
a:visited {
    color: inherit; /* Cela garde la même couleur que les liens non visités */
}

/* Si tu veux conserver un soulignement sur les liens non visités, tu peux faire : */
a:hover {
    text-decoration: underline; /* Souligner au survol */
}


.contact-container {
  background-color: rgba(var(--1), 0.025);
  border-radius: 10px;
  display: flex;
  height: 50vh;
  align-items: center;
  justify-content: center;
  font-family: Helvetica;
  flex-wrap: wrap;
  text-align: center;
}

.contact-image {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-button {
  width: 100%;
  margin-top: 20px;
  align-self: center;
  display: inline-block;
  padding: 10px 25px;
  background-color: white;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-button:hover {
  background-color: white;
  transform: translateY(-2px);
  text-decoration: none;
}







.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 250, 250, 0.85); /* blanc semi-transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* pour Safari */
    padding: 16px;
    transition: background-color 0.3s, backdrop-filter 0.3s;
    font-family: Helvetica;
    z-index: 100;
  }
  
  /* container dans le header */
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95dvw;
    margin: 0;
    width: 100%;
  }
  
  .site-title {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .site-title a {
    text-decoration: none;
    color: inherit;
    font-size: 24px;
  }
  
  .site-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
  }

  /* SUPPRESSION HOME */
  .site-nav ul li:first-child a {
    display: none;
  }
    /* SUPPRESSION HOME */
  
  .site-nav li {
    margin: 0;
  }
  
  .site-nav a {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
  }

  .site-nav a:hover {
    text-decoration: none;
    color: var(--2);
    font-weight: 500;
  }

  .categorie{
    font-family: helvetica;
  }

  .sculpture{
    font-family: helvetica;
  }

  .peinture{
    font-family: helvetica;
  }


  /* Ajoute un espace en haut du contenu pour ne pas qu'il soit caché sous le header fixe */
  body {
    padding-top: 60px; /* Ajuste cette valeur en fonction de la hauteur de ton header */
  }
  
  .oeuvre {
    font-family: helvetica;
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 20px;
    box-sizing: border-box;
}
.oeuvre-image{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 82.5dvh;
  background-color: white;
  overflow: hidden;
}

.oeuvre img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.oeuvre h2 {
  text-align: center;
    margin-top: 10px;
    font-size: 14px;
    width: 70dvw;
    left: 50%;
    transform: translate(-50%);
    position: relative;
}

.oeuvre p {
  text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: var(--2);
    width: 70dvw;
    left: 50%;
    transform: translate(-50%);
    position: relative;
}


.oeuvre-video iframe {
  width: 100%;
  height: 75dvh;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 2rem auto;
}


    /* FOOTERS */




     /* HOME */
    .home-page {
      font-family: Helvetica;
      padding: 60px 20px 10px; /* pour header et footer */
      height: 90dvh;
    }
    
    .home-oeuvre {
      margin-top: 20px;
      text-align: center;
      position: relative;
    }
    
    .home-oeuvre img {
      max-height: 50vh;
      max-width: 60vw;
      object-fit: contain;
    }
    
    .oeuvre-text {
      margin-top: 10px;
    width: 70dvw;
    position: relative;
    align-items: center;
    left: 50%;
    transform: translate(-50%);
    }
    
    .oeuvre-text h2 {
      font-size: 14px;
      line-height: 1;
      color: var(--1);
      position: relative;
    }

.oeuvre-text p{
     margin-top: 0px;
      font-size: 14px;
      color: var(--2);
}

.home-page{
  height: 88dvh;
  padding: 10px;
}

.home-expo{
  margin-top: 60px;
  width: 50dvw;
  position: relative;
  align-items: center;
  align-content: center;
  text-align: center;
  left: 50%;
  font-size: 14px;
  transform: translate(-50%);
  background-color: rgba(var(--1), 0.025);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 60px;
}

.texte-intermediaire{
  max-width: 70dvw;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-size: 20px;
  text-align: center;
  margin-top: 80px;
}
.home-expo h3{
color: var(--1);
}
.home-expo p{
  color: var(--2);
  }


/* PRESSE */

.presse article{
  margin-bottom: 25px;
}

  .presse {
    font-family: Helvetica;
    padding: 60px 20px;
    max-width: 100dvw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    font-size: 20px;
    line-height: 1.25;
    text-decoration: none;
    }
  
  .presse h2{
    max-width: 60dvw;
    font-size: 20px;
    padding-bottom: 0px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
  }

  .presse h3{
    max-width: 45dvw;
    font-size: 14px;
    color: var(--2);
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .presse p{
    max-width: 45dvw;
  padding-bottom: 2px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  }

  .presse article p:nth-of-type(odd) {
    margin-left: 2em; /* ou margin-left: 20px; */
  }

  .presse-image{
    max-width: 25dvw;
    align-items: center;
    align-content: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }


  .presse-image img {
    max-width: 50%;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .presse .barre{
    margin-top: 20px;
    width: 95dvw;
    height: .5px;
    background-color: var(--2);
    position: relative;
    left: 50%;
    transform: translate(-50%);

    display: block;
  }

  /* PRESSE */


    /* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Espace entre flèches et image */
}
    
    .carousel-images {
      position: relative;
      width: 100%;
      height: auto;
    }
    
    .carousel-images img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.2s ease;
      object-fit: cover;
    }
    
    .carousel-images img.active {
      opacity: 1;
      position: relative;
      z-index: 0;
    }
    
    .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 1;
    }
    
    .carousel-track-container {
      overflow: hidden;
      width: 100%;
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.4s ease;
      width: 100%;
    }

    .carousel-track.blur {
      filter: blur(8px);
    }
    
    .carousel-track img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
    }
    
    .carousel-track img {
      min-width: 100%;
      object-fit: cover;
      display: block;
    }

    .carousel-prev,
    .carousel-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, .25); /* blanc semi-transparent */
      backdrop-filter: blur(10px);
      border-radius: 50%;
      width: 17.5px;
      height: 17.5px;
      border: none;
      cursor: pointer;
      z-index: 2;
      padding: 0;
      border: solid black 0px;
    }
    
    .carousel-prev {
      left: 10px;
    }
    
    .carousel-next {
      right: 10px;
    }

    .oeuvre-item{
      margin-bottom: 50px;
    }


    /* CAROUSEL */



/* ------------- Overlay menu ------------- */
.overlay-menu {
  position: fixed;
  top: 50px; /* ton header fait ~60px de haut */
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;

  /* même rendu que ton header */
  background-color: rgba(250, 250, 250, 0.85); 
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  z-index: 900; /* un peu moins que ton header (1000), comme ça le header reste au-dessus */
}

/* contenu blanc centré sous le header */
.overlay-content {
  margin-top: 20px;
  width: 100%;
  max-width: 420px;
  background: transparent; /* pas besoin de box blanc, on garde l’effet du backdrop */
  padding: 20px;
  position: relative;
}

/* bouton fermer */
.overlay-close {
  position: absolute;
  top: -40px; /* bouton dans le coin, juste sous le header */
  right: 10px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgb(var(--1));
}

/* nav verticale */
.overlay-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

/* style des liens dans l'overlay */
.overlay-nav a {
  text-decoration: none;
  font-size: 18px;
  padding: 6px 4px;
  display: block;
  color: rgb(var(--1));
  font-family: helvetica;
}

.overlay-nav a:hover,
.overlay-nav a:focus {
  color: var(--2);
  outline: none;
}

/* bouton burger visible uniquement en mobile */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* mobile rules */
@media (max-width: 1040px) {
  .burger {
    display: block;
  }

  /* hide horizontal nav on mobile to avoid visual duplication */
  .site-nav { display: none; }
}



.burger {
  color: black;          /* couleur du texte/icône */
  text-decoration: none; /* enlever l’effet "lien" */
  -webkit-tap-highlight-color: transparent; /* enlever le highlight bleu au tap */
  cursor: pointer;       /* pour bien montrer que c’est cliquable */
}






html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 30px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* la page prend au moins toute la hauteur */
}

main {
  flex: 1; /* le contenu prend tout l’espace restant */
}

footer {
  background-color: rgba(250, 250, 250, 0.85); 
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  text-align: center;
  font-size: 12px;
  font-family: helvetica;
  color: #000;
}


    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */    /* MOBILE */



    @media (max-width: 1000px) {

    .contact-container {
      width: 90vw;
      background-color: rgba(var(--1), 0.025);
      margin: 100px auto;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      font-family: Helvetica, Arial, sans-serif;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;
    }
    
    .contact-container img {
      width: 100%; /* force l’image à s’adapter au conteneur */
      height: auto;
      display: block;
      object-fit: cover; /* garde le ratio sans déformation */
      margin-bottom: 30px;
    }
   

.contact-container {
  background-color: rgba(var(--1), 0.025);
  border-radius: 10px;
  display: flex;
  height: 50vh;
  align-items: center;
  justify-content: center;
  font-family: Helvetica;
  flex-wrap: wrap;
  text-align: center;
}

.contact-image {
  width: 95%;
  height: auto;
  object-fit: cover;
}
}




  @media (max-width: 768px) {

   

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-button {
  width: 100%;
  margin-top: 20px;
  align-self: center;
  display: inline-block;
  padding: 10px 25px;
  background-color: white;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.1s ease;
}



    .home-expo{
      margin-top: 60px;
      width: 90dvw;
      position: relative;
      align-items: center;
      align-content: center;
      text-align: center;
      left: 50%;
      font-size: 14px;
      transform: translate(-50%);
      background-color: rgba(var(--1), 0.025);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 60px;
    }
    
    .texte-intermediaire{
      max-width: 90dvw;
      position: relative;
      left: 50%;
      transform: translate(-50%);
      font-size: 20px;
      text-align: center;
      margin-top: 80px;
    }
    .home-expo h3{
    color: var(--1);
    }
    .home-expo p{
      color: var(--2);
      }


      .space{
        height: 1px;
        width: 100%;
      }


/* PRESSE */

.presse {
  font-family: Helvetica;
 
  padding: 60px 20px;
  max-width: 100dvw;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-size: 18px;
  line-height: 1.15;
}

.presse h2{
  max-width: 90dvw;
  font-size: 24px;
  padding-bottom: 0px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  text-align: left;
}

.presse h3{
  max-width: 90dvw;
  font-size: 14px;
  color: var(--2);
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.presse p{
  max-width: 90dvw;
padding-bottom: 20px;
position: relative;
left: 50%;
transform: translate(-50%);

}
.presse-image{
  max-width: 55dvw;
  align-items: center;
  align-content: center;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}


.presse-image img {
  max-width: 55dvw;
  height: auto;
  display: block;
  margin-top: 20px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.presse .barre{
  width: 90dvw;
  height: .5px;
  background-color: var(--2);
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
}

/* HEADER */  /* HEADER */  /* HEADER */  /* HEADER */  /* HEADER */

 

.site-title a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
}

.site-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

