/* =========================================================
   RESET / BASE
   ========================================================= 

* {
    box-sizing: border-box;
}

html {
    background: #808000;
}

body {
    margin: 0;
    background: #808000;
    color: #5A3A22;
    font-family: "Palatino Linotype", Palatino, Georgia, serif;
    font-size: 16px;
}


/* =========================================================
   CONTENEUR PRINCIPAL
   ========================================================= 

.site-wrapper {
    width: 92%;
    max-width: 1250px;
    margin: 14px auto;
    background: #F5F5DC;
}


/* =========================================================
   BANNIÈRE
   ========================================================= 

.banniere {
    min-height: 205px;
    background: #C2B280;

    display: grid;
    grid-template-columns: 270px 1fr 150px;
    align-items: center;

    padding: 14px 18px;
    gap: 18px;
}


/* Photo 

.banniere-photo img {
    display: block;
    width: 270px;
    height: 180px;
    object-fit: cover;
}


/* Logo 

.banniere-logo {
    text-align: center;
}

.banniere-logo img {
    width: 300px;
    max-width: 100%;
    height: auto;
}


/* Labels 

.banniere-label {
    text-align: center;
}

.banniere-label img:first-child {
    display: block;
    width: 100px;
    margin: 0 auto 8px;
}

.banniere-label img:last-child {
    width: 80px;
}


/* =========================================================
   STRUCTURE : MENU + CONTENU
   ========================================================= 

.content-layout {
    display: grid;
    grid-template-columns: 205px 1fr;
}


/* =========================================================
   MENU DE NAVIGATION
   =========================================================

#navcontainer {
    background: #C2B280;
    padding: 20px 10px 25px;
}


/* Titre du menu 

.menu-titre {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;

    margin: 0 8px 12px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(90, 58, 34, 0.35);
}


/* Liste 

#navlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navlist li {
    margin: 0;
    padding: 0;
}


/* Liens 

#navlist li a {
    display: block;

    padding: 9px 10px;

    color: #5A3A22;
    text-decoration: none;

    transition: background 0.2s, color 0.2s;
}


/* Survol 

#navlist li a:hover {
    background: rgba(245, 245, 220, 0.45);
}


/* Page active 

#navlist li a#current {
    background: #5A3A22;
    color: #F5F5DC;
    font-weight: bold;

    border-left: 4px solid #808000;
}


/* Sections du menu 

#navlist .menu-section {
    margin: 14px 8px 2px;
    padding: 7px 0 6px;

    border-bottom: 1px solid rgba(90, 58, 34, 0.35);

    text-transform: uppercase;
    font-size: 0.88em;
    font-weight: bold;
}


/* Localisation 

.menu-localisation {
    margin: 28px 4px 0;
    padding: 14px 8px 0;

    border-top: 1px solid rgba(90, 58, 34, 0.35);

    text-align: center;
    font-size: 0.84em;
    line-height: 1.45;
}

.menu-localisation strong,
.menu-localisation span {
    display: block;
}

.menu-localisation strong {
    color: #808000;
}


/* =========================================================
   CONTENU DE LA PAGE
   ========================================================= 

#page {
    background: #F5F5DC;
    padding: 15px 30px 35px;

    min-width: 0;
}

.page-interieur {
    max-width: 1000px;
    margin: auto;
}


/* =========================================================
   TITRE DE PAGE
   ========================================================= 

.titre-page {
    min-height: 52px;

    border: 1px solid #C2B280;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 8px 15px;
}

.titre-page h1 {
    margin: 0;

    color: #808000;
    font-size: 1.55em;

    text-align: center;
}

.titre-page span {
    color: #5A3A22;
    font-size: 1.45em;
}


/* =========================================================
   SOUS-TITRE
   ========================================================= 

.sous-titre-page {
    margin-top: 9px;
    padding: 9px 14px;

    background: #808000;
    color: #F5F5DC;

    text-align: center;
    font-weight: bold;
}


/* =========================================================
   CONTENU TOURISME
   ========================================================= */

.tourisme-contenu {
    margin-top: 20px;
}


/* Titres des sections */

.tourism-section-title {
    margin: 25px 0 12px;
    padding: 10px 12px;

    border-top: 1px solid #C2B280;
    border-bottom: 1px solid #C2B280;

    text-align: center;

    color: #808000;
    font-size: 1.3em;
}


/* Listes */

.tourisme-contenu ul {
    margin: 0 0 18px;
    padding: 15px 25px 15px 42px;

    border: 1px solid #C2B280;

    background: rgba(194, 178, 128, 0.10);
}


/* Éléments de liste */

.tourisme-contenu li {
    margin-bottom: 10px;
    line-height: 1.55;
}

.tourisme-contenu li:last-child {
    margin-bottom: 0;
}


/* Liens */

.tourisme-contenu a {
    color: #808000;
    font-weight: bold;
}


/* Texte important */

.tourisme-contenu b,
.tourisme-contenu strong {
    color: #5A3A22;
}


/* Première liste */

.tourisme-contenu > ul {
    margin-top: 0;
}


/* =========================================================
   PIED DE PAGE
   ========================================================= 

.basPage {
    padding: 10px;

    background: #C2B280;

    text-align: center;
    font-size: 0.85em;
}

.basPage a {
    color: #5A3A22;
}


/* =========================================================
   RESPONSIVE : TABLETTES
   ========================================================= 

@media (max-width: 900px) {

    .banniere {
        grid-template-columns: 220px 1fr 110px;
    }

    .banniere-photo img {
        width: 220px;
        height: 155px;
    }

    .banniere-logo img {
        width: 250px;
    }
}


/* =========================================================
   RESPONSIVE : MOBILES
   =========================================================

@media (max-width: 760px) {

    .site-wrapper {
        width: 100%;
        margin: 0;
    }


    /* Bannière 

    .banniere {
        grid-template-columns: 1fr;
        justify-items: center;

        gap: 10px;
        padding: 14px;
    }

    .banniere-photo img {
        width: 250px;
        height: 160px;
    }

    .banniere-logo img {
        width: 270px;
    }

    .banniere-label {
        display: flex;
        gap: 12px;
        align-items: center;
    }


    /* Navigation

    .content-layout {
        display: block;
    }

    #navcontainer {
        padding: 10px 12px 15px;
    }

    #navlist {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #navlist .menu-section {
        grid-column: 1 / -1;
    }

    .menu-localisation {
        margin-top: 12px;
    }


    /* Contenu 

    #page {
        padding: 12px;
    }


    /* Tourisme */

    .tourisme-contenu ul {
        padding-left: 34px;
    }
}


/* =========================================================
   RESPONSIVE : PETITS MOBILES
   ========================================================= */

@media (max-width: 430px) {
/*
    #navlist {
        display: block;
    }

    .titre-page span {
        display: none;
    }

    .titre-page h1 {
        font-size: 1.3em;
    }
*/
    .tourisme-contenu ul {
        padding: 13px 18px 13px 32px;
    }
}