* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

#main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
	
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ccc;
}

#logo img {
    height: 150px;
}

#login img {
    height: 120px;
}

header {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url("sunset.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

header #Titre {
    font-size: 47px;
    margin-top: 450px;
    white-space: pre;
    text-transform: uppercase;
}

header #Sous-Titre {
    font-size: 17px;
    margin-top: 0px;
    white-space: pre;
}

#gallery{
	background-color: white; 
	margin-top:75px;
}

#gallery h1 {
    grid-column: 1 / -1; 
    font-size: 46px; 
    color: #333; /* Couleur du texte */
    margin-bottom: 20px; /* Espacement entre le titre et les cartes */
	text-align:center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(8, auto); 
    gap: 20px; 
    padding: 20px;
    background-color: white; 
	margin-top: 80px;
}


.card {
    background-color: #eaeaea; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    text-align: center;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 150px; 
}

/* Images dans les cartes */
.card img {
    width: 250px;
    max-height: 100%;
    object-fit: cover;
}

.card:hover {
    background-color: #f7f0ee;
}



/* Bas de page */
footer {
    background-color: #111; /* Couleur de fond noir */
    color: #fff; /* Couleur de texte blanc */
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
    gap: 20px; /* Espacement entre les colonnes */
    max-width: 1200px;
    margin: 0 auto; /* Centrer le contenu */
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}
