/* ===== Google Fonts ===== */

/* Pour le texte */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Titre principale */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pacifico&family=Salsa&display=swap');

/* ===== END Google Fonts ===== */

/* START header */

header{
    position: fixed;
    width:100%;
    top:0;
    z-index: 1;
}


/* END header */

/* START navbar */


nav ul li{
    padding:0.3rem;
    
}

/* END navbar */

/* START Section */

section {
    padding: 1rem;
    background-color: #f7ebd7;
    
}

section img{
    max-width: 100%;
}


.overlayed{
    min-height:100%;
    background-size: cover;
}

#about-me img{
    border-radius: 15px 50px 30px;
}

#testimonials{
    background-image: url("../resources/images/background/bebe-3.webp");
}

/* END Section */

/* START footer */

footer{
    background: linear-gradient( #f7ebd7, white 40%);
}

footer>div{
    margin:auto;
}

footer .zoom-in figure img:hover{
	transform: scale(1.3);
}

footer .grid-column-2 p{
    margin:auto;
    font-size: 1.1rem;
}

/* END footer */

h1 {
    font-family: "Pacifico", cursive;
    color: #489588;
    font-style: italic;
}

h2 {
    font-family:"Salsa", cursive;
    font-size: 1.7em;
    color: #72A29A;
    
}

p{
    font-family:"Nunito", sans-serif;
}

figure {
	margin: 0;
	padding: 0;
    z-index: 0;
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}

.zoom-in figure img {
	transform: scale(1);
	transition: .3s ease-in-out;
}
.zoom-in figure:hover img {
	transform: scale(1.03);
}

.btn{
    border-radius: 50px 50px 50px 50px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.btn:hover {
	transform: scale(1.1);
}