/* Styles généraux */
body {
    font-family: Garamond;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: ghostwhite;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #222;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#hero {
    background-image: url('fondcentral.jpg');
    background-size:cover;
    background-position: top;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

#hero h2 {
	background-color:;
    font-size: 3rem;
    margin: 0;
}

.section-padding {
    padding: 60px 20px;
}

#about, #contact {
    text-align: center;
    background-color: white;
    margin: 0 auto;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

#gallery .gallery-item img {
    width: 100%;
    height: auto;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    text-decoration: none;
    color: #555;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
}

#expositions .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

#expositions .gallery-item img {
    width: 100%;
    height: auto;
}

