@charset "utf-8";
/* CSS Document */


        /* Import Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&display=swap');
		*{ margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat Alternates', sans-serif;
        }

		
/* Video d'acceuil Dream */

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 70%;
  max-height: 90vh;
   z-index: 1;
}

.background-video {
  width: 100%;
  height: auto;
  display: block;
   z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* même taille que .video-container */
  height: 100%;  /* même hauteur que .video-container */
  background-color: rgba(0, 0, 0, 0.7); /* optionnel, pour assombrir */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.video-container:hover .overlay {
  opacity: 1;
}

.overlay-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
   z-index: 1;
 
}

.piano {
    Flex: 1;
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.piano img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




 /* Navigation */
        .navbar {
			
			width: auto;
            max-width: 100%;
            display: block;
            white-space: nowrap;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000; /* **Au-dessus de la vidéo** */
		 }

       .navbar a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    font-size: 24px;
    background-color: none;
    text-shadow: 0 0 8px rgba(40, 185, 74, 1); /* Surbrillance verte */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Animation fluide */
}

/* Effet au survol */
.navbar a:hover {
    color: rgba(187, 244, 31, 1); /* Texte en jaune */
    text-shadow: 0 0 12px rgba(189, 255, 0, 0.8); /* Surbrillance jaune */
}





/* Titre */ 
        .hero h1 {
            font-size: 28px;
            margin-bottom: 10px;
			margin-top: 20px;
        }
/* soustitre */
        .hero p {
            font-size: 18px;
            color: #ddd; /* **Couleur légèrement plus claire pour contraster** */
			
        }

 		.fleches {
            padding: 10px 10px 10px;
            text-align: center;
            color: black; /* Texte blanc pour qu'il soit visible sur la vidéo */
            z-index: 1000; /* Au-dessus de la vidéo** */
            position: relative; /* Pour s'assurer qu'il reste visible */
			margin-top: -70px;
        }



        /* Portfolio Grid */
        .portfolio {
            display:grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
            padding: 0px;
            margin-top: -6px;
			float: right;
			background-color: white;
			
        }

        .portfolio img {
			display: flex; 
			float: right;
            width: 60%;
            height: auto;
            border-radius: 0px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			margin-right: 50px;
			 }

.portfolio a {
	 font-size: 17px;
color:#333;
  font-size: 20px;
	 margin-left:100px;
	text-decoration: none;  /* Pas de soulignement */
	text-shadow: 0 0 8px rgba(40, 185, 74, 1); /* Surbrillance verte */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Animation fluide */
}
	/* Gere le soulignement */ .portfolio a:hover {
    text-decoration: none;  /* Pas de soulignement */
     color: rgba(187, 244, 31, 1); /* Texte en jaune */
    text-shadow: 0 0 12px rgba(189, 255, 0, 0.8); /* Surbrillance jaune */
}



.portfolio p
{color:#333;
  font-size: 17px;
	 margin-left:100px;
	margin-right:1000px;
	text-decoration: none;  /* Pas de soulignement */
 text-align: justify;
  
}



        /* Footer */
        footer {
            padding: 20px;
            background-color:white;
            color: white;
            text-align: center;
            margin-top: 20px;
        }
