html {
    --font-celtic: 'Celtic', Arial, sans-serif;
    --font-arial: 'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    color: var(--dark-primary);
    border-radius: 8px;
}

h1 {
    font-family: var(--font-celtic);
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin: 25px 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--bg-color-brown);
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight {
    background-color: #f3e8d8;
    padding: 15px;
    border-left: 4px solid var(--bg-color-brown);
    margin-bottom: 20px;
}

ul,
ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.quote {
    font-style: italic;
    color: var(--dark-primary);
}

.etape {
    background-color: #f9f5f0;
    border: 1px solid #e0d5c5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.etape_img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.etape_img_ville {
    width: 30%;
    display: flex;
    justify-content: center;
}

.etape_img_marche img {
    width: 60%;
    padding: 0.5rem;
    border-radius: 10%;
}

.etape_img_marche {
    width: 55%;
    display: flex;
    justify-content: center;
}

.etape_img_ville img {
    width: 60%;
    padding: 0.5rem;
    border-radius: 10%;
}

.etape_img img {
    width: 60%;
    padding: 0.5rem;
    border-radius: 10%;
}

.etape-title {
    font-weight: bold;
    color: var(--dark-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.link {
    color: var(--dark-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--dark-primary);
}

.link:hover {
    color: var(--bg-color-brown);
}

.biosension-bienfait {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.biosension-bienfait-img {
    border-radius: 10px;
}

.biosension-bienfait img {
    width: 50%;
    padding: 1rem;
}


.autres {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    background-color: var(--bg-color-brown);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1rem;
}

.btn-container_autres {
    display: flex;
    margin-top: 2rem;
}

.btn-container_autres .btn {
    margin-right: 2rem;
    background-color: var(--white);
    color: var(--dark-primary);
}

.btn-container_autres .btn:hover {
    background-color: var(--dark-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Media Query pour Grand Écran (optionnel) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }

    .etape_img img,
    .etape_img_ville img,
    .etape_img_marche img {
        width: 50%;
        transition: transform 0.3s ease;
    }

    .etape_img img:hover,
    .etape_img_ville img:hover,
    .etape_img_marche img:hover {
        transform: scale(1.05);
    }
}

/* Media Query pour Tablette */
@media screen and (max-width: 768px) {
    header {
        padding: 15px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        margin: 20px 0 10px 0;
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

    .etape {
        flex-direction: column;
        padding: 12px;
    }

    .etape_img img,
    .etape_img_ville img,
    .etape_img_marche img {
        width: 80%;
    }

    .etape_img_ville {
        width: 50%;
        margin: 0 auto;
    }

    .etape_img_marche {
        width: 70%;
        margin: 0 auto;
    }

    .biosension-bienfait {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .biosension-bienfait img {
        width: 70%;
    }

    .btn-container_autres {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-container_autres .btn {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 80%;
        text-align: center;
    }

    .highlight {
        padding: 12px;
    }

    .autres {
        padding: 1.5rem;
    }
}

/* Media Query pour Mobile */
@media screen and (max-width: 480px) {
    header {
        padding: 10px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
        margin: 15px 0 8px 0;
    }

    p {
        margin-bottom: 15px;
        font-size: 14px;
        text-align: left;
    }

    .highlight {
        padding: 10px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    ul,
    ol {
        margin-bottom: 15px;
        padding-left: 15px;
    }

    li {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .etape {
        padding: 10px;
        margin-bottom: 15px;
        flex-direction: column;
    }

    .etape_img,
    .etape_img_ville,
    .etape_img_marche {
        width: 100%;
        margin-bottom: 10px;
    }

    .etape_img img,
    .etape_img_ville img,
    .etape_img_marche img {
        width: 100%;
        padding: 0.3rem;
    }

    .etape-title {
        font-size: 16px;
        text-align: center;
    }

    .biosension-bienfait {
        flex-direction: column-reverse;
    }

    .biosension-bienfait img {
        width: 90%;
        padding: 0.5rem;
    }

    .autres {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .btn-container_autres {
        margin-top: 1.5rem;
        width: 100%;
    }

    .btn-container_autres .btn {
        width: 100%;
        padding: 8px 15px;
        margin-bottom: 0.8rem;
        font-size: 14px;
    }

    .quote {
        font-size: 14px;
    }

    .link {
        border-bottom: none;
        text-decoration: underline;
    }
}

/* Media Query pour petit Mobile */
@media screen and (max-width: 320px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    .etape {
        padding: 8px;
    }

    .autres {
        padding: 1rem;
    }

    .btn-container_autres .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}