html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: url("images/fond.png") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
  }
  
  .page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
  }
  
  .bande {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 18vh; /* Réduit (avant : 25vh) */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }  
  
  .contenu {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .photo {
    width: 22vh;   /* Avant : 18vh */
    height: 22vh;
    margin-bottom: 1vh;  /* Plus serré */
    margin-top: -20vh;    /* Remontée de la photo */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 9%;
}
  
  .textes h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3vh;
    margin: 2vh 0;
    color: #000;
  }
  
  .textes p {
    font-family: 'Montserrat', sans-serif;
    max-width: 50vw; /* Réduit la largeur du bloc de texte */
    font-size: 1.8vh;
    color: #333;
    line-height: 1.6;
    padding: 0 2vw;
    margin-top: 1.5vh;
  }
  
  .nav-icons {
    margin-top: 5vh; /* Avant : 3vh */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
    border-radius: 30px;
  }
  
  .nav-icons ul {
    list-style: none;
    display: flex;
    gap: 2vw;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
  }
  
  .icon-item a {
    text-decoration: none;
    color: #5C4033;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .icon-item a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s, filter 0.3s;
  }
  
  .icon-item a span {
    margin-top: 5px;
    font-size: 12px;
  }
  
  .icon-item a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
  }
  
  .separator img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    pointer-events: none;
  }
  
  #typing::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 5px;
  }
  
  @keyframes blink {
    0%, 50% {
      opacity: 1;
    }
    51%, 100% {
      opacity: 0;
    }
  }
  