@import url("header.css");
@import url("footer.css");

html {
    height: 100%;
}

@media screen and (max-width: 768px) {
    html {
        min-height: 100%;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    height: 100%;
}

.container {
    max-width: 80%;
    margin: auto;
}

/* Styles pour la page À propos */
.about-page {
    height: 80%;
    background-color: #f7f7f7;
}

.about-page div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.about-image {
    width: 20%;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-us-content {
    width: 75%;
    text-align: left;
}

.about-us-content h1 {
    font-size: 36px;
    margin-bottom: auto;
}

.about-us-content p {
    font-size: 18px;
    line-height: 1.6;
}


/* Responsive À propos */

@media screen and (max-width: 900px) {
    .about-page {
        background-image: url('../img/interieur_camion_vertical.jpg');
        background-size: cover;
        background-position: center;
    }

    .about-page div.container {
        gap: 20px;
    }

    .about-image {
        display: none;
    }

    .about-us-content {
        width: 100%;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.233);
        text-shadow: none;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        margin: 16px 0;
    }

    .about-us-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-us-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-us-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }
}
