* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #faf8f5;
    min-height: 100vh;
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.hero {
    padding: 6rem 5rem 4rem;
    text-align: left;
    background: #fff9f0;
    border-left: 8px solid #e67e22;
    position: relative;
}

.hero::after {
    content: '🥣';
    position: absolute;
    top: 3rem;
    right: 5rem;
    font-size: 5rem;
    opacity: 0.15;
}

h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 300;
}

.content {
    padding: 4rem 5rem;
    background-color: #fff;
}

h2 {
    font-size: 2rem;
    color: #e67e22;
    margin-top: 4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #ffecd1;
    padding-bottom: 0.8rem;
}

h2:first-of-type {
    margin-top: 2rem;
}

p {
    margin-bottom: 1.8rem;
    text-align: left;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.9;
}

/* Images */
.main-image,
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 3.5rem 0;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.content-image {
    max-width: 750px;
    margin: 3.5rem auto;
}

/* Liens */
.content a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(to right, #ffecd1, #ffecd1) no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.3s ease;
    padding: 2px 4px;
}

.content a:hover {
    background-size: 100% 100%;
    color: #c0571a;
}

/* Page Qui sommes-nous */
.about-page {
    padding: 6rem 5rem;
    background: #fff9f0;
}

.about-content {
    margin-top: 3.5rem;
    background: #fff;
    padding: 3rem;
    border-left: 8px solid #e67e22;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-page h1 {
    text-align: left;
    padding-bottom: 0;
    border-bottom: 3px solid #e67e22;
    padding-bottom: 1rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2.5rem;
    margin-top: 0;
    border-top: 5px solid #e67e22;
}

footer nav {
    margin-bottom: 1.5rem;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

footer nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #e67e22;
}

footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero,
    .content,
    .about-page {
        padding: 3rem 2rem;
    }

    .hero::after {
        font-size: 3rem;
        right: 2rem;
    }

    main {
        margin: 1.5rem 1rem;
    }

    p {
        font-size: 1rem;
    }

    .intro {
        font-size: 1.05rem;
    }

    footer nav ul {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    footer {
        padding: 2rem 1rem;
    }

    .about-content {
        padding: 2rem;
    }
}