/* ── Polices ── */
@font-face {
  font-family: "Symphony Pro";
  src: url("typo/symphony-pro-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #9db9c3;
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  color: #301c0d;
}

.description a {
  color: #301c0d;
  text-decoration: underline;
}

/* ── Variables grille ── */
:root {
  --marge: 50px;
  --gutter: 20px;
  --col: calc((100vw - var(--marge) * 2 - var(--gutter) * 11) / 12);
}

/* ── Page Container ── */
.page {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ── Icône maison ── */
.home-link {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 10;
  transition: opacity 0.3s ease;
  text-decoration: none;
  opacity: 0.8;
}

.home-link:hover {
  opacity: 0.5;
}

.home-icon {
  height: 25px;
  display: block;
}

/* ── Grande photo gauche (col 1 à 5, pleine hauteur) ── */
.photo-gauche {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--marge) + var(--col) * 5 + var(--gutter) * 4);
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* ── Colonne droite : photo + texte alignés en haut ── */
.colonne-droite {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(var(--marge) + var(--col) * 4 + var(--gutter) * 3);
  right: var(--marge);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--gutter);
  z-index: 2;
}

/* ── Petite photo centre chevauchante (col 4 à 8) ── */
.photo-centre {
  width: calc(var(--col) * 4 + var(--gutter) * 3);
  height: auto;
  flex-shrink: 0;
}

/* ── Texte droite (col 9 à 12) ── */
.description {
  width: calc(var(--col) * 4 + var(--gutter) * 2);
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  font-size: 17px;
  line-height: 1.15;
  color: #301c0d;
  text-align: left;
  font-weight: normal;
  font-style: normal;
}
