/* Importation de la police */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f3f3;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    color: #B60B11;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #B60B11;
}

@media (max-width: 768px) {
    header {
        background-color: #FFFFFF;
    }
}

/* LOGO */
.logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
}

/* MENU PRINCIPAL */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    text-decoration: none;
    color: #B60B11;
    font-weight: 400;
}

.menu li a:hover {
    color: #FFA100;
}

/* MENU BURGER POUR MOBILE */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* SECTION À PROPOS */
#a-propos {
    padding: 80px 10%;
    background: #FFFFFF;
    color: #000000;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-image {
    width: 40%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-text {
    width: 55%;
    text-align: left;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #FFA100;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #ffffff;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1000;
    }
}

@media (min-width: 769px) {
    .logo img {
        max-width: 180px;
    }
}
