@font-face {
  font-family: 'MyriadProSemiboldCondensed';
  src: url('../webfonts/Myriad Pro Semibold Condensed.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'MyriadProSemiboldCondensed', sans-serif;
  background-image: url('../images/bg_comp.jpg');
  background-size: cover;
  background-position: center;
  color: #f9fafa;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.bottom-section {
  position: absolute;
  bottom: 1vw;
  left: 1vw;
  right: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* important : aligne tout en bas sauf si modifié */
  color: #f9fafa;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-left: 11vw; 
}

.left-col a {
  color: #f9fafa;
  text-decoration: none;
  font-weight: 600;
  font-size: 2.2rem;
  text-transform: uppercase;
}

.right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 27vw;
  height: 100%; /* pour permettre le placement interne */
  justify-content: flex-end;
}

.top-right {
  margin-bottom: 20vh; /* ← c’est ça qui le fait monter */
}

.name {
  font-weight: 700;
  font-size: 3.8rem;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 3.8rem;
  margin-top: -1vh;
}

.below-links {
  display: flex;
  flex-direction: row; /* ← met les liens en ligne */
  gap: 20px;           /* ← espace entre les deux */
  text-transform: uppercase;
  margin-bottom: 8vh; /* ← ajuste cette valeur selon ce que tu veux */
}

.below-links a {
  color: #f9fafa;
  text-decoration: none;
  font-weight: 600;
  font-size: 2.2rem;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* surbrillance légère */
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.top-nav a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
}

.top-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

@media (max-width: 1250px) { ... }