@charset "iso-8859-1";
 
@charset "iso-8859-1";

/*
Méthodes de séchage
Mon Coin de Jardin
*/


/* Réglages généraux */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #71364f;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f0c6ca;
    background-image: url("bgtuileceline/bglys.jpg");
}

a {
    color: #8e3159;
}

a:hover,
a:focus {
    color: #b65f80;
}


/* Publicité */

.publicite-haut {
    width: 728px;
    max-width: 100%;
    min-height: 90px;
    margin: 20px auto;
    text-align: center;
}


/* Conteneur principal */

.methodes-conteneur {
    width: 920px;
    max-width: calc(100% - 30px);
    margin: 0 auto 35px;
    padding: 10px 8px 38px;
    background: rgba(255, 250, 248, 0.95);
    border: 2px solid #a85b78;
    box-shadow: 0 4px 16px rgba(105, 44, 67, 0.18);
}


/* Bannière */

.methodes-banniere {
    margin: 0 auto 28px;
    text-align: center;
}

.methodes-banniere img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}


/* En-tête */

.methodes-entete {
    max-width: 780px;
    margin: 0 auto 25px;
    text-align: center;
}

.methodes-entete h1 {
    margin: 12px 0 15px;
    color: #812d50;
    font-size: 32px;
    font-weight: normal;
}

.methodes-entete p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 19px;
    line-height: 1.65;
}


/* Barres décoratives */

.separateur-feuilles {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
}


/* Navigation des méthodes */

.methodes-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 35px;
}

.methodes-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 12px 18px;
    color: #7d3351;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    background: #fff8f5;
    border: 1px solid #d3a0b3;
    border-radius: 9px;
    box-shadow: 0 2px 6px rgba(105, 44, 67, 0.10);
}

.methodes-navigation a:hover,
.methodes-navigation a:focus {
    color: #923b5e;
    text-decoration: underline;
    background: #f8e8ed;
}


/* Sections des méthodes */

.methode-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 26px 30px;
    font-size: 18px;
    line-height: 1.7;
    background: #fffaf8;
    border: 1px solid #d9abbc;
    border-radius: 10px;
}

.methode-section h2 {
    margin: 0 0 22px;
    color: #68723b;
    font-size: 27px;
    font-weight: normal;
    text-align: center;
}

.methode-section h3 {
    margin: 0 0 8px;
    color: #7e3653;
    font-size: 20px;
}

.methode-section p {
    margin: 0 0 17px;
}

.methode-section p:last-child {
    margin-bottom: 0;
}

.methode-section ul,
.methode-section ol {
    margin: 8px 0 18px;
    padding-left: 30px;
}

.methode-section li {
    margin-bottom: 8px;
}


/* Encadrés */

.conseil-important,
.idee-methode,
.recette-methode {
    margin: 24px 0;
    padding: 18px 22px;
    background: #f8edef;
    border-left: 5px solid #839153;
    border-radius: 6px;
}

.conseil-important h3,
.idee-methode h3,
.recette-methode h3 {
    color: #68723b;
}


/* Pommes séchées */

.pommes-sechees {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    padding: 22px;
    background: #f8edef;
    border: 1px solid #d9abbc;
    border-radius: 9px;
}

.pommes-sechees img {
    display: block;
    flex: 0 0 auto;
    width: 218px;
    max-width: 100%;
    height: auto;
    border: 2px solid #a85b78;
}

.pommes-sechees div {
    flex: 1;
}

.pommes-sechees h3 {
    color: #68723b;
}


/* Retour en haut */

.retour-haut {
    margin: 25px 0;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}


/* Navigation de la rubrique */

.navigation-rubrique {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    max-width: 780px;
    margin: 32px auto 20px;
}

.navigation-rubrique a {
    display: inline-block;
    padding: 11px 16px;
    color: #7e3351;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: #fff8f5;
    border: 1px solid #d4a1b4;
    border-radius: 7px;
}

.navigation-rubrique a:hover,
.navigation-rubrique a:focus {
    text-decoration: underline;
    background: #f8e8ed;
}


/* Compteur */

.compteur-visiteurs {
    min-height: 35px;
    margin: 25px 0 5px;
    text-align: center;
}


/* Écrans plus étroits */

@media (max-width: 760px) {

    .methodes-conteneur {
        max-width: calc(100% - 16px);
        padding: 8px 12px 30px;
    }

    .methodes-entete h1 {
        font-size: 27px;
    }

    .methodes-entete p {
        font-size: 17px;
    }

    .methodes-navigation {
        grid-template-columns: 1fr;
    }

    .methode-section {
        padding: 22px 18px;
        font-size: 17px;
    }

    .methode-section h2 {
        font-size: 24px;
    }

    .pommes-sechees {
        flex-direction: column;
        text-align: center;
    }
}

.retour-fleurs-sechees {
    display: block;
    width: 100%;
    margin: 30px auto 35px;
    text-align: center;
}

.retour-fleurs-sechees a {
    display: inline-block;
    color: #8e3159;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.retour-fleurs-sechees a:hover,
.retour-fleurs-sechees a:focus {
    color: #b65f80;
    text-decoration: underline;
}