@charset "iso-8859-1";

@charset "iso-8859-1";

/*
Les fleurs qui sèchent bien
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 */

.liste-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 */

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

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


/* Introduction */

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

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

.liste-entete p {
    max-width: 720px;
    margin: 0 auto 14px;
    font-size: 19px;
    line-height: 1.65;
}


/* Liens vers les listes */

.liste-raccourcis {
    margin: 24px auto 8px;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
}

.liste-raccourcis a {
    display: inline-block;
    margin: 4px 10px;
    text-decoration: none;
}

.liste-raccourcis a:hover,
.liste-raccourcis a:focus {
    text-decoration: underline;
}

.liste-raccourcis span {
    color: #bc8a9c;
}


/* Séparateurs */

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


/* Sections des listes */

.liste-section {
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 20px;
}

.liste-section h2 {
    margin: 0 0 25px;
    color: #68723b;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
}


/* Grille des fleurs */

.fleurs-grille {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


/* Carte d'une fleur */

.fleur-carte {
    min-height: 105px;
    padding: 18px 20px;
    text-align: center;
    background: #fffaf8;
    border: 1px solid #d9abbc;
    border-radius: 9px;
    box-shadow: 0 2px 6px rgba(105, 44, 67, 0.08);
}

.fleur-carte h3 {
    margin: 0;
    color: #812d50;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
}

.nom-botanique {
    margin: 7px 0 0;
    color: #68723b;
    font-size: 16px;
    font-style: italic;
    line-height: 1.4;
}

.note-sechage {
    margin: 9px 0 0;
    color: #71364f;
    font-size: 15px;
    font-weight: bold;
}


/* Retour en haut */

.retour-haut {
    margin: 30px auto;
    text-align: center;
}

.retour-haut a {
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.retour-haut a:hover,
.retour-haut a:focus {
    text-decoration: underline;
}


/* Note finale */

.liste-note {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 24px 30px;
    text-align: center;
    background: #f9edef;
    border: 1px solid #d9abbc;
    border-radius: 9px;
}

.liste-note h2 {
    margin: 0 0 16px;
    color: #68723b;
    font-size: 24px;
    font-weight: normal;
}

.liste-note p {
    margin: 0 0 13px;
    font-size: 17px;
    line-height: 1.65;
}

.liste-note p:last-child {
    margin-bottom: 0;
}


/* Liens d'accueil simples */

.liens-accueil {
    display: block;
    width: 100%;
    margin: 27px auto 35px;
    text-align: center;
}

.liens-accueil a {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 11px auto;
    color: #8e3159;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.liens-accueil a:hover,
.liens-accueil a:focus {
    color: #b65f80;
    text-decoration: underline;
}


/* Compteur */

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


/* Écrans plus étroits */

@media (max-width: 760px) {

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

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

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

    .liste-raccourcis {
        font-size: 17px;
    }

    .liste-raccourcis span {
        display: none;
    }

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

    .fleurs-grille {
        grid-template-columns: 1fr;
    }

    .fleur-carte {
        min-height: auto;
    }

    .liste-note {
        padding: 22px 19px;
    }
}