/* Styles Généraux */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #F5F5DC;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
}

.container {
    max-width: 1200px;
}

/* Entête */
.header {
    background: linear-gradient(to bottom, #E8E4D9, #D1C9B5);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 200px;
}

nav a {
    color: #8B5A2B;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover, .lang-switch:hover {
    color: #D4AF37;
}

.lang-switch.active {
    color: #D4AF37;
}

/* Section Héroïque */
.hero {
    background: linear-gradient(to bottom, #D1C9B5, #8B5A2B);
    padding: 100px 0;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
}

.btn-gold {
    background-color: #D4AF37;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: #8B5A2B;
}

/* Section À Propos */
.about {
    padding: 50px 0;
    background: #fff;
}

.about img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Section Projets */
.projects {
    padding: 50px 0;
    background: #F5F5DC;
}

.carousel-item img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid #D4AF37; /* Contraste pour les images */
}

/* Section Contact */
.contact {
    padding: 50px 0;
    background: #fff;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

/* Pied de Page */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
}