/* Variables & Reset */
:root {
    --primary-color: #038b9a;
    /* Bleu canard/pétrole du logo approx */
    --secondary-color: #f7f3e8;
    /* Beige "coquille d'oeuf" / papier */
    --accent-color: #8a9a5b;
    /* Vert sauge "Bio" */
    --text-color: #333333;
    --white: #ffffff;
    --font-heading: 'Amatic SC', cursive;
    --font-body: 'Lato', sans-serif;
    --spacing: 1.5rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Utilities */
.section-padding {
    padding: 3rem 1.5rem;
}

.bg-paper {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

.big-cta {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 50px;
    width: auto;
}

#mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s;
}

#main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#main-nav.active {
    transform: translateY(0);
}

#main-nav ul {
    list-style: none;
}

#main-nav li {
    margin: 1rem 0;
    text-align: center;
}

#main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Hero */
#hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: var(--secondary-color);
}

.hero-banner {
    display: none;
    /* Hidden in hero, used in philosophy */
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Sections */
#philosophie {
    background-image: url('bannière.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#philosophie .container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#philosophie h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.adn-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.adn-item,
.catering-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.catering-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.price-list .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 1rem;
}

.adn-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chef-img {
    border-radius: 50%;
    width: 200px;
    /* Increased size slightly */
    height: 200px;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer & Contact */
.social-links {
    margin: 2rem 0;
}

.social-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    #main-nav {
        position: static;
        transform: none;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    #main-nav ul {
        display: flex;
        gap: 2rem;
    }

    #mobile-menu-btn {
        display: none;
    }

    .adn-grid,
    .catering-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card {
        margin: 0;
        flex: 1;
        max-width: 500px;
    }

    #menu .container {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #menu h2,
    #menu>.container>p {
        width: 100%;
        text-align: center;
    }

    .pricing-cards-wrapper {
        display: flex;
        gap: 2rem;
        justify-content: center;
        width: 100%;
    }

    .adn-item.highlight-item {
        border-bottom: 4px solid var(--accent-color);
    }

    /* Reviews */
    .reviews-grid {
        display: grid;
        gap: 2rem;
        margin-top: 2rem;
    }

    .review-card {
        background: var(--secondary-color);
        padding: 2rem;
        border-radius: 15px;
        text-align: left;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .review-card .stars {
        color: #f1c40f;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .review-card p {
        font-style: italic;
        margin-bottom: 1.5rem;
    }

    .review-card cite {
        font-weight: 700;
        color: var(--primary-color);
        display: block;
        font-family: var(--font-heading);
        font-size: 1.2rem;
    }

    /* Responsive adjust for 5 items in ADN or 3 in Reviews */
    @media (min-width: 768px) {
        .adn-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .reviews-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }