/* Style général de la page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    /* Supprimer les bordures par défaut */
}

html,
body {
    margin: 0;
    padding-top: 50px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/*---------------------- Style de la navbar---------------------------- */


.scroll-margin {

    scroll-margin-top: 90px
}

.navbar-nav .nav-link {
     font-size: 1.1rem;
    font-weight: 600 ;
    color: #000000 !important;}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
    transition: background-color 0.3s;
}

/*-------------------Intro------------------------------------------*/

.hero-section {
    background: url('../images/pb1.jpg') center / cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.pizza-colors {
    background-color: rgba(0, 0, 0, 0.8);
   
    border-radius: 0.5rem;
    padding: 2rem;
    color: #fff;
    opacity: 1;
}


.btn-pizza {
    background-color:#B22222;
    border: none;
}

.btn-pizza:hover {
    background-color: #008C45;
}

.btn-lg:hover {
    background-color:#9b2121!important;
}


/* Création d'un calque zoomant sur le background */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-attachment: fixed;
    background-size: 110%;
    z-index: 0;
    transform: scale(1.3);
    animation: bgZoom 15s ease-out forwards;
}

/* Animation zoom fluide */
@keyframes bgZoom {
    to {
        transform: scale(1);
    }
}

/*------------------------------------------*/


/*---------------About-----------------------------------*/
#about p {

    font-family: "Indie Flower", cursive;
    text-transform: uppercase;
    letter-spacing: 3px;

}

/*--------------Avis------------------------------------*/
.temoin p {

    font-family: 'Nunito', sans-serif;

    letter-spacing: 1px;

}




