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



body {
    display: flex;
    flex-direction: column; /* Stack items vertically */
	font-family: Futura;
	margin: 0; /* Remove default margin */

}





/* EXPO QUI ARRIVE !!*/
/* From Uiverse.io by dylanharriscameron */ 
.expo .text-expo {
	z-index: 1112!important;
	color: grey;
	margin-bottom: 0px;
	margin-top: 0px;
}


.expo .card {
  position: relative; /* Use relative to position the `.bg` and `.blob` inside */
  margin: 100px auto 10px; /* Add margin to push it below the navbar */
  padding: 10px; /* Space inside the card for text */
  width: fit-content; /* Adjust width to content */
  height: auto; /* Adjust height to content */
  border-radius: 14px;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: rgba(0, 0, 0, 0.1); /* Light gray for visibility */
  overflow: hidden; /* Clip overflowing content */
}

.expo .blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #66A2D9;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
  transform: translate(-50%, -50%); /* Center the blob */
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

/**/

.nav-left .card {
  position: relative;
  padding: 12px;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0; /* Light background to make the text more visible */
  width: auto; /* Let it size itself based on the content */
  height: auto; /* Let it adjust height based on the content */
  margin: 0 auto; /* Center the card horizontally */
}

.nav-left .bg {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: px solid white;
  transition: all 0.3s ease-in-out;

}

.nav-left .card:hover .bg {
  opacity: 0;
}


.nav-left .blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #66A2D9;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}




.main-content {
    flex: 1; /* Take up available space */
}


a {
	text-decoration: none; /* Remove underline */

}
.navbar a {
    color: darkgrey; /* Change the color to black or any other color */
}

.navbar {
    display: flex; /* Utilisation de Flexbox pour le menu entier */
    justify-content: center; /* Centre le menu horizontalement */
    align-items: center; /* Centrer verticalement */
    padding: 20px; /* Espacement autour du menu */
    position: relative; /* Pour le positionnement de l'élément enfant */
	margin-top: 5%;
	font-family: Futura;
	font-size: 28px;
		
}

.nav-left, .nav-right {
    display: flex; /* Utilisation de Flexbox pour aligner les éléments sur une même ligne */
	
    position: absolute; /* Pour positionner les liens correctement */
	
}

.home-link {
	z-index: 1112;
	margin-bottom: 0px;
	margin-top: 0px;
}

.nav-left {
    left: 2%; /* Positionnement à gauche */
	
}

.title {
	position: absolute;
	left:18%
}

.nav-right {
    right: 8%; /* Positionnement à droite */
}


.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin:45px auto;
    max-width: 1200px;
	font-size: 130%;
}

.about-photo {
    flex: 1;
    margin-right: 20px;
}

.about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-description {
    flex: 2;
    margin-right: 20px;
    text-align: justify;
}
.about-contact a {
	color: slategray;
}

.about-contact {
    flex: 1;
	margin-left: 40px;
	align-self: flex-start; /* Align the contact section to the top */
    margin-top: 0; /* Adjust this value if you need more precise control */

}

.about-contact {
    flex: 1;
	
}

.about-contact ul {
    list-style-type: none;
    padding: 0;
}

.about-contact ul li {
    margin-bottom: 10px;
	color: darkgray
}

.mail-logo, .insta-logo {
    width: 45px;
    height: 45px;
    margin-left: 10px; /* Espacement entre les icônes */
}

/* Optionnel : pour le mail-logo en cas de besoin d'une icône mail distincte */
.mail-logo {
    margin-left: 0; /* Pour ne pas avoir d'espacement à gauche du premier logo */
}

.copyright {
    margin: 20px auto 150px; /* Center with auto margins */
    width: 40%; /* Adjust width as necessary */
    text-align: justify; /* Center text inside the element */
    color: darkgrey;
}

.bottom-right-image {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px; /* Adjust the spacing above the footer */
    max-width: 150px; /* Adjust the size if needed */
}

footer {
    font-family: Futura;
    text-align: center;
}



@media (max-width : 630px ){
	.title {
		position: relative;
		left: 35%;
	}
	
	p.home-link {
		font-size: clamp(20px, 6.2vw, 35px);
	}
	
	.navbar {
		margin-bottom:0px;
		flex-wrap: nowrap; /* Empêche l'empilement */
		justify-content: space-between; /* Espace entre les éléments */

	}
	
	
    .nav-left, .title {
        display: flex;
        font-family: Futura;
        font-size: clamp(13px, 5vw, 24px);
        position: absolute;
		
    }

    .contact-link, .about-link {
        margin-right: 10px; /* Reduce spacing between links */
    }

    .nav-left {
        left: 0px;
		padding-right: 15px;
    }

    .nav-right {
        right: 1%;
    }

    .mail-logo, .insta-logo {
        width: 30px;
        height: auto;
        margin-left: 15px;
    }

    .logo {
        width: 50%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
	
	.parent .about-container {
		align-items: center;
    	margin:45px auto;
	}
	.about-photo {
		flex: 1;
	}
	
	.about-contact {
		display: none;
	}
	
	.about-photo {
        display: none; /* Hide the original about-photo container on phones */
    }
	
	.about-container {
		margin-top: 0px;
	}
	
    .about-description {
        position: relative;
		font-size: 14px;
		margin-right: 0px!important;
		padding:1px;
    }
	

    .about-description p:nth-of-type(1)::after {
        content: ''; /* Insert image after the first paragraph */
        display: block;
        width: 100%;
		border-radius: 8px;

        height: 270px; /* Adjust the height as needed */
        background-image: url('../photos/about/me_phone.jpg'); /* The image URL */
        background-size: cover;
        background-position: center 61%;
		margin-top: 30px;
		margin-bottom: 30px;

    }
	
	.copyright {
        width: 80%; /* Increase width for better readability on phones */
        margin: 20px auto; /* Center the text */
        font-size: 14px; /* Adjust font size if needed */
		margin-bottom: 100px;
    }
	
	.card {
		margin-left: 20px!important ;
		margin-right: 20px!important;
		padding: 20px;
		position: relative;
	}
	
	p.text-expo{
		font-size: clamp(11px, 5vw, 14px);
		text-align: justify;;
	}
	
	.bottom-right-image {
		width:30%;
		margin-top: 15%;
	}
	
	.nav-right {
		top:0px;
        right: 20px;
		flex-direction: column; /* Empile les éléments verticalement */
        align-items: center;
    }

    .mail-logo, .insta-logo {
        width: 34px;
        height: auto;
        margin-left: 0px;
		margin: 0px 0;
    }
	
	.expo .card {
		margin-top:60px;
	}
	

}
