:root {
  --beige-clair: #f5f1e8;
  --texte: #111;
  --blanc: #ffffff;
}

/* Reset + base */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--blanc);
  overflow-x: hidden;
  overflow-y: hidden;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--beige-clair);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* On déplace les styles ici */
.corner-name,
.corner-menu {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--texte);
  opacity: 0.7;
  z-index: 1000;
}
.corner-menu {
  display: flex;
  gap: 3rem; /* Espace entre les mots (liens) */
}

.corner-menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--texte);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding-bottom: 3px;
  letter-spacing: 0.15em; /* Espace entre les lettres */
}

.corner-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--texte);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.corner-menu a:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.corner-menu a:hover::after {
  transform: scaleX(1);
}

h1 {
  font-size: 6rem; /* augmente si tu veux encore plus gros */
  font-weight: bold;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.description {
  position: absolute;
  font-family: 'Playfair Display', serif;
  top: 350px; /* ou ajuste selon besoin */
  left: 20vw; /* même alignement que la photo */
  max-width: 600px;
  color: var(--texte);
  font-size: 1.2rem;
  line-height: 1.6;
  z-index: 2;
  font-style: italic;
}


/* Section principale avec fond beige clair */
.hero {
  background-color: var(--beige-clair);
  height: 500px;
  position: relative;
}

/* Contenu texte au-dessus de l’ellipse */
.content {
  position: absolute;
  top: 100px; /* même que la photo */
  left: calc(20vw + 350px); /* 20vw + largeur + marge */
  z-index: 2;
  color: var(--texte);
  display: flex;
  align-items: center;
  height: 220px; /* même que la photo pour aligner verticalement */
}



/* Ellipse blanche qui déborde vers la gauche */
.ellipse {
  position: absolute;
  width: 200%;
  height: 875px;
  background-color: var(--blanc);
  border-radius: 50%;
  bottom: -450px;
  z-index: 1;
}

/* Photo ronde positionnée à gauche à 25% */
.photo-rond {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  left: 20vw;
  top: 100px;
  z-index: 2;
  border: 4px solid var(--blanc); /* optionnel pour contour blanc clean */
}


