body {
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #fef8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;                   /* commence fermé */
  background: #fef8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
}

.brand-header {
  opacity: 0;
  top:50px;
  font-size: 2.5rem;
}

.hero {
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  position: relative;
}
  
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 90;
  }

  .scroll-down {
    display: grid;
    place-items: center;
    margin-top: 10px; /* pour le placer au-dessus du buisson par ex. */
    color: #fff;       /* la couleur sera appliquée à stroke="currentColor" */
    cursor: pointer;
  }

  .bush-section {
    position: relative;
    background:#D5D95F;
    min-height: 20vh;
  }

  .bush-top { 
    height: 120px;
    background: #D5D95F;
    border-radius: 0 0 0 0;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    text-align: center;
  }

  /* le vrai bush-top déborde un peu dans le hero */
  .bush-section .bush-top {
    margin-top: -120px; /* ex : moitié de sa hauteur */
    z-index: 101;
  }

  .bush-content {
    padding: 20px 16px 120px;
  }

  #brand {
    font-size: 2.5rem;
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap;
    justify-content: center;
    z-index: 90;
    position: relative;
    color: #1b0b3b;
  }

  @media (max-width: 600px) {
    body {
      touch-action: manipulation;
    }
    #brand {
      flex-direction: column;
      line-height: 1.1;
    }
    
  }
    
  button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    background-color: #f9c5d1;
    z-index: 101;
    position: relative;
    touch-action: manipulation;
  }

  #bloom {
    all: unset;
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ff5e5e;
    color: #1b0b3b; /* violet très foncé */
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 0 hsl(260, 69%, 14%); /* ombre en bas bien visible */
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }

  .flower {
    position: absolute;
    width: 50px;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  #bloom:disabled,
  #bloom.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
  }

  #bloom:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #1b0b3b;
  }

  .about {
    position: relative;
    background-color: rgb(100, 64, 64);
    height: 30vh;
    padding: 72px 16px 120px;
    color: #fef8f0;
  }


  #visit {
    all: unset;
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #ff5e5e; /* violet foncé qui contraste bien avec le vert pomme */
    color: #fef8f0; /* texte clair */
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 6px 0 #0f061e; /* ombre foncée mais pas trop lourde */
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.3s ease;
    position: relative;
    z-index: 101;
  }

  #visit:hover {
    background-color: #2d165b; /* violet un peu plus clair au hover */
  }

  #visit:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #0f061e;
  }

  .project{
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .project .title{
    padding-right: 12px;
  }

  .pixel-btn {
    color: #fef8f0;
  }