:root {
    --primary: rgb(238, 135, 145);
}

.text-primary {
    color: var(--primary);
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.font-primary {
    font-family: 'Montserrat', sans-serif;
}

.font-secondary {
    font-family: 'Playfair Display', serif;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    
}

.parallax1::before {
    content: "";
    /* Nécessaire pour créer un pseudo-élément */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    /* Superposition sombre pour réduire la luminosité */
    z-index: 1;
    /* Place le calque sombre au-dessus de l'image de fond */
    pointer-events: none;
    /* Permet aux clics de passer à travers ce calque */
  }
  
  .parallax1 {
    position: relative;
    /* Nécessaire pour positionner l'élément pseudo */
    background-image: url('./img/studee.3f058cfd.jpg');
    /* Votre image de fond */
    height: 80vh;
    /* Hauteur de la section avec l'effet parallax */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
  
  }

  #home {
    scroll-margin-top: 80px; /* ou la hauteur de ton navbar fixe */
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

  
  .title-font {
    font-family: 'Playfair Display', serif;
}

.rose-pale {
    background-color: #FFF0F3;
}

.rose-moyen {
    background-color: #FFD6E0;
}

.rose-fonce {
    background-color: #FF9BB3;
}

.rose-sombre {
    background-color: #D46A7E;
}

.text-rose {
    color: #D46A7E;
}

.border-rose {
    border-color: #FF9BB3;
}

.carousel {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.carousel-item {
    scroll-snap-align: start;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay {
    transition: opacity 0.3s ease;
}

/* Animation pour le bouton */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse:hover {
    animation: pulse 1.5s infinite;
}