@font-face {
  font-family: 'Continental-Regular';
  src: url('../assets/fonts/TWK-Continental-Regular.woff2') format('woff2');
  /* src: url("/System/Library/Fonts/Supplemental/Academy Engraved LET Fonts.ttf"); */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ambre';
  src: url('../assets/fonts/ContinentalAmbre-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;        /* même couleur que le texte */
  text-decoration: none; /* enlève le soulignement */
}

a:hover {
  text-decoration: underline; /* ou effet subtil */
}
 

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Continental-Regular';
  /* font-family: Cochin, sans-serif; */
  background: rgba(255, 255, 255);
  color: #111;
  font-size : 17px;
}

/* HEADER */

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  letter-spacing: 0.05em;
}

/* MAIN */

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* .visual {
  max-height: 70vh; 
  width: auto;
  height: auto;
  filter: blur(0.7em);
} */

.visual-container {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-height: 70vh;
  width: auto;
  /* visibility: hidden; */

  opacity: 0;
  transition: opacity 5s ease-in-out;
  filter: blur(0.75em);
}

/* image visible */
.visual.active {
  opacity: 1;
  /* 
  visibility: visible; */
}

/* CROIX CENTRALE */

.cross {
  position: absolute;
  width: 80vh;
  height: 80vh;
  pointer-events: none;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255);
}

.cross::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cross::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* FOOTER */

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px;
}

.left, .right {
   font-size: 11px !important;
  }

.left {
  display: flex;
  gap: 0px;
  align-items: flex-end;
}

/* texte */
.left span {
  line-height: 1;
}

.copyright {
  font-size: 1.9em;
  display: inline-block;
  transform: translateY(0.41em);
  /* font-feature-settings: "sups" 0; */
}
/* logo */
.logo {
  height: 1em;           /* 👈 même hauteur que le texte */
  width: auto;
  display: inline-block;
  padding-bottom: 0.1em;
}

/* centre parfaitement centré */
.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  align-items: baseline;
}

.right {
  align-items: baseline;
}

.tag {
  font-family: "Ambre";
  font-feature-settings: "ss01" 1, "calt" 1;
}

@media (max-aspect-ratio: 1/1) {
  .left,
  .right {
    display: none;
  }
}

@media (max-aspect-ratio: 1/1) {
  .visual {
    max-width: 50vw; /* contrainte supplémentaire */
  }
}

@media (max-aspect-ratio: 1/1) {
  body {
    font-size: 12px;
  }
}