/* Importation de la police Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif; 
    background-color: white;
}

h1 {
    color: whitesmoke;
    font-weight: bolder;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}


p {
    color: whitesmoke;
}

section {
    width: 100%;
    height: 1000px; 
    background-size: cover; 
    background-position: center;
    padding-top: 100px; 
    background-attachment: fixed;
}

#z1 {
    background: url('../img/img1.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}

#z2 {
    background: url('../img/img2.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}

#z3 {
    background: url('../img/img3.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}

#z4 {
    background: url('../img/img4.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}

.basket {
	background: url(/img/basket.png) 50% 0 no-repeat fixed;
	height: 1000px;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 1000px;
	z-index: 200;
}


#sc1, #sc4 {
    float: right; 
    background-color: rgba(0, 0, 0, 0.9); 
    box-shadow: 20%;
    width: 30%;
    padding: 20px; 
    max-width: 600px; 
    height: auto; 
    max-height: 80vh; 
    box-sizing: border-box; 
    margin-right: 20px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: justify;
}


#sc3 {
    float: left; 
    background-color: rgba(0, 0, 0, 0.9); 
    box-shadow: 20%;
    width: 30%;
    padding: 20px; 
    max-width: 600px; 
    height: auto; 
    max-height: 80vh; 
    box-sizing: border-box; 
    margin-left: 20px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: justify;
}

#sc2 {
    background-color: rgba(0, 0, 0, 0.9);
    width: 80%; /* Largeur à 80% de la largeur de la page */
    padding: 20px;
    height: auto;
    max-height: 80vh;
    box-sizing: border-box;
    margin: 0 auto; /* Centrer horizontalement */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: justify;
}



nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
    font-family: 'Montserrat', serif; 
    font-weight: 700; 
}

ul {
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    margin: 0 10px;
}

.nav-droite a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-droite a:hover {
    color:red;
    transition: 0.6s;
}

.nav-gauche a {
    font-size: 40px; 
    font-weight: bold;
    pointer-events: none; 
    color: white;
}

