@font-face {
  font-family: "BBB-Herthey-Futural";
  src: url("BBB-Herthey-Futural-40.woff") format("woff");
}

/* Frame générale */
.frame {
  background-color: #ffff;
  border: 1px solid #ffff;
  width: 100%;
  min-width: 1276px;
  min-height: 2051px;
  position: relative;
  padding: 30px 20px;
  box-sizing: border-box;
}

.nav-item a {
  text-decoration: none;
  color: inherit;
}

/* Header Work / About aligné à droite */
.frame .header {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  font-family: "BBB-Herthey-Futural", Helvetica;
  font-weight: 400;
  font-size: 20px;
  color: #a1b7ff;
  margin-right: 20px;
}

.frame .header .about {
  color: #a1b7ff;
}

/* Monogramme cliquable */
.monogramme-container {
  position: absolute;
  top: 20px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.monogramme {
  width: 70px;
  height: auto;
  display: block;
  cursor: pointer;
}

.monogramme img {
  width: 100%;
  height: auto;
  display: block;
}

/* Layout contenu */
.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 80px;
  padding: 0 10px;
}

/* Image slideshow container */
.image-container {
  position: relative;
  cursor: none;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Infos */
.info {
  border-left: 1px solid #a1b7ff;
  padding-left: 20px;
  font-family: "BBB-Herthey-Futural", Helvetica;
  font-size: 14px;
  color: #a1b7ff;
}

.block {
  border-bottom: 1px solid #a1b7ff;
  padding: 15px 0;
}

/* Curseur personnalisé */
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 90px;
  height: 90px;
  background-image: url('flèche.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(var(--direction, 1));
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.custom-cursor.active {
  opacity: 1;
}

.projets-lien {
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.projets-lien-titre {
  font-family: "BBB-Herthey-Futural", Helvetica;
  font-size: 20px;
  text-decoration: underline;
  color: #a1b7ff;
  margin-bottom: 20px;
}

.projets-lien-grid {
  display: flex;
  gap: 20px;
}

.projet-lien-item {
  display: block;
  width: 50%;
}

.projet-lien-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.projet-lien-item img:hover {
  opacity: 0.7;
}

/* ── MOBILE (max 768px) ── */
@media screen and (max-width: 768px) {
  .frame {
    min-width: unset;
    width: 100%;
    min-height: 100vh;
    padding: 20px 14px;
    box-sizing: border-box;
  }

  .frame .header {
    font-size: 14px;
    gap: 20px;
    margin-right: 10px;
    margin-top: 14px;
  }

  .monogramme {
    width: 40px;
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    padding: 0;
    width: 100%;
  }

  .image-container {
    width: 100%;
    cursor: auto;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .info {
    width: 100%;
    border-left: none;
    border-top: 1px solid #a1b7ff;
    padding-left: 0;
    padding-top: 16px;
    font-size: 13px;
  }

  .block {
    padding: 12px 0;
  }

  .custom-cursor {
    display: none;
  }

  .projets-lien-grid {
    flex-direction: column;
  }

  .projet-lien-item {
    width: 100%;
  }
}