/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    color: black;
    font-family: 'Lato', sans-serif;
}

/* Centrage du contenu */
.center {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #efd2a6;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    color: black;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 15px;
}

.menu li {
    position: relative;
}

.menu a {
    padding: 10px 15px;
    color: black;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}

.menu a:hover {
    background-color: #d4b48f;
    border-radius: 5px;
    color: white;
}

/* Sous-menus */
.submenu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    border-radius: 5px;
    min-width: 180px;
    z-index: 1000;
}

.submenu li a {
    padding: 10px 15px;
    color: black;
    display: block;
    transition: background 0.3s;
}

.submenu li a:hover {
    background-color: #f4d7b7;
}

/* Affichage du sous-menu lors du clic */
.submenu.active {
    display: block;
}

/* Image de fond avec texte centré */
.image-container {
    position: relative;
    text-align: center;
    color: white;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    background: rgba(107, 105, 105, 0.6);
    padding: 15px 30px;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #ff9900;
}

.footer i {
    font-size: 22px;
}

.footer .email i {
    color: #ffcc00; /* Jaune pour Email */
}

.footer .whatsapp i {
    color: #25D366; /* Vert pour WhatsApp */
}

.footer .tiktok i {
    color: #ff0050; /* Rouge pour TikTok */
}

.copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}
