
@font-face {
    font-family: 'abc-diatype-regular';
    src: url('abc-diatype-regular.otf') format('opentype');
}
@font-face {
    font-family: 'abc-diatype-italic';
    src: url('abc-diatype-italic.otf') format('opentype');
}
@font-face {
    font-family: 'abc-diatype-bold';
    src: url('abc-diatype-bold.otf') format('opentype');
}

@font-face {
    font-family: 'abc-diatype-light';
    src: url('abc-diatype-light.otf') format('opentype');
}


/* Exemple italique remplacé */
.overlay-text {
  font-family: 'abc-diatype-regular', serif;
  font-size: 30px;
  font-weight: bold;
  color: white;
}

/* Overlay sur image (blanc, même taille qu’avant, juste police changée) */
.overlay-text {
  font-family: 'abc-diatype-bold', sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: white;
}


img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.caption-hover {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 9px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.item:hover .caption-hover.active {
  opacity: 1;
}


body {

 margin: 0;
  font-family: 'abc-diatype-light', serif;
  font-size: 11px;
  font-weight: 400;
  background-color: #000;
  color: #000;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32"><text x="0" y="20" font-size="20">+</text></svg>') 16 16, auto;
}

.zone-left {
  left: 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E\
<text x='4' y='44' font-size='24' font-weight='bold' fill='black'%3Eprev%3C/text%3E%3C/svg%3E") 16 16, auto;
}

.zone-right {
  right: 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E\
<text x='4' y='44' font-size='24' font-weight='bold' fill='black'%3Enext%3C/text%3E%3C/svg%3E") 16 16, auto;
}


* {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E\
<text x='8' y='48' font-size='48' font-weight='bold' fill='black'%3E+%3C/text%3E%3C/svg%3E") 16 16, auto !important;
}

header {
  background-color: #09101a
  color: #000
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1em;
}

.title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.title-block h1 {
  font-size: 11px;
  margin: 0;
}

.title-block p {
  font-size: 11px;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
 align-items: center;
  max-width: 100%;
  padding: 0 20px;
}

nav li {
  margin: 0; font-size: 11px; color: #000
}

nav a {
  color: #000
  text-decoration: none;
  font-size: 11px;
}

nav a:hover {
  text-decoration: underline;
}


.main-nav .nav-links li {
  margin: 0 10px;

}
/* Grouper tous les liens sauf contact à gauche */
.main-nav .nav-links li.contact-link {
  margin-left: auto;
}


@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    padding: 10px;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
  }

  .accueil-message {
    font-size: 13px;
    top: 100px;
    left: 5vw;
    width: 90%;
    text-align: left;
  }


img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}




  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
}



.accueil-message {
  position: absolute;
  top: 100px;
  left: 20%;
  transform: translateX(-50%);
  font-family: 'Söhne Fett', sans-serif;
  font-size: 14px;
  color: white;
  z-index: 1000;
  pointer-events: none;

  width: 100%;
}



main {
  padding: 1em;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0.2em;
}


section {
  margin-bottom: 0.5em;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #09101a
  color: #000
}



@media (max-width: 600px) {
  body {
    font-size: 14px;
    padding: 10px;
  }
}


/* Titres en gras */
h1, h2, h3, h4, h5, h6, nav a {
     font-family: 'abc-diatype-light';
  font-size: 11px;
  font-weight: 300;
}

/* Texte normal par défaut */
body, p, li, span, div {
    font-weight: normal;
}

/* Fond blanc cassé */
body {
    background-color: #fcfcfc;
}


.background-logo img {
  display: block;
  margin: 20px auto 0 auto;
  max-width: 60%;
}

.main-nav {
  text-align: center;
  margin-top: 20px;
}

.main-nav .nav-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.main-nav .nav-links li {
  display: inline-block;
  margin: 0 4px;
}

.main-nav .nav-links.contact {
  display: block;
  margin-top: 10px;
}

.main-nav .nav-links.contact li {
  display: block;
  margin: 0 auto;
}

nav a, .main-nav .nav-links a {
  color: #f8f8f0;
  text-decoration: none;
  font-size: 1.1em;
}

.background-logo {
  
  z-index: 30;
}



.logo-centered {
    display: block;
    margin: 30px auto;
    max-width: 200px;
    height: auto;
z-index: 30;
  position: relative;
  pointer-events: none;
}


body.homepage {
    margin: 0;
    padding: 0;
    background: url('IMG_9339.jpg') no-repeat center 70% fixed;
    background-size: cover;
}

p {
  margin-bottom: 0.8em 
}


#clickZone2 {
  position: absolute;
  top: 10px; /* un peu au-dessus de la 1ère zone */
  left: 320px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
#videoModal2 {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0; top: 0;
  width: 200%; height: 200%;
  background-color: rgba(0,0,0,0.8);
}
#videoModalContent2 {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200%;
}
#videoModal2 video {
  width: 200%;
  height: auto;
}
#closeModal2 {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}



