/* ********** ONGLETS MARQUE / VISITE / ACTUS / CONTACT ********** */
/* ***** Qui sommes nous ***** */
.image-fond {
    overflow: hidden;
    width: 100%;
    height: fit-content;
    background-image: url('../visuels/img/qui-sommes-nous.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.histoire {
    max-width: 70%;
    width: 900px;
    margin: 50px 50px 50px 80px;
    padding: 30px;
    min-height: 300px;
    background-color: white;
    border: 1px solid #ffd20c;
    box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.4);
    text-align: justify;
    opacity: 0.97;
}

.histoire p {
    color: #333;
    font-weight: 300;
}

/* ***** Boutiques ***** */
.image-fond h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cadre {
    margin: 50px auto;
    width: 80%;
    border: 1px solid #ffd20c;
    box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.6);
    background-color: white;
    height: fit-content;
    padding: 25px;
    opacity: 0.98;
}

.cadre .plan {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.cadre .shops {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin: 20px auto;
    flex-wrap: wrap;
}

.cadre .shops .boutique {
    border: 1px solid #333;
    height: fit-content;
    width: 25%;
    min-width: 300px;
    margin: 10px;
    background-color: rgb(240, 240, 240);
    padding: 15px;
}


/* ***** Événements ***** */
.cadre .trait {
    width: 60%;
    height: 1px;
    background-color: #333;
    margin: 40px auto;
}

.cadre iframe {
    display: block;
    margin: 20px auto;
    width: 95%;
    max-width: 720px;
    height: 420px;
}

.cadre p {
    text-align: justify;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.cadre h3 {
    text-align: center;
}

/* ***** Presse ***** */
.cadre .liste {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
}

.cadre .liste .item {
    border: 1px solid #333;
    box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.2);
    height: 520px;
    width: 320px;
    padding: 10px;
    margin: 20px;
    box-sizing: border-box;
    background-color: rgb(245, 245, 245);
    opacity: 0.9;
    color: #333;
}

.cadre .liste .item:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.4s ease-in-out;
}

.cadre .liste .item .photo_item {
    width: 300px;
    height: 240px;
    overflow: hidden;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.cadre .liste .item .photo_item img {
    height: 100%;
}

.cadre a {
    text-decoration: none;
}

.cadre .italique {
    font-style: italic;
}

.cadre .plus {
    position: relative;
    top: 10px;
}

/* ***** Actus ***** */
.lire {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #333;
    color: white;
    background-color: #333;
    padding: 5px 3px;
    font-size: 1.2em;
    font-weight: 300;
    text-transform: uppercase;
    transition-property: background-color, color, box-shadow;
    transition-duration: 0.8s;
    margin: 20px auto;
    top: 10px;
}

.lire:hover {
    background-color: #ffd20c;
    color: #333;
    box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.2);
}

/* ********** FORMULAIRES *********** */
.formulaire input[type=text], 
.formulaire input[type=tel], 
.formulaire input[type=email], 
.formulaire input[type=file],
.formulaire input[type=password], 
select, 
textarea {
    display: block;
    width: 80%;
    padding: 12px;
    border: 1px solid #333;
    box-sizing: border-box;
    margin: 6px auto 16px auto; 
    resize: vertical;
}

.formulaire input[type=date], 
.formulaire input[type=time] {
    display: inline-block;
    width: 300px;
    padding: 12px;
    border: 1px solid #333;
    box-sizing: border-box;
    margin: 6px 20px 16px 20px; 
} 

.formulaire input[type=file] {
    cursor: pointer;
}

.formulaire input[type=submit] {
    background-color:  #333;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    display: block;
    margin: 20px auto;
    text-transform: uppercase;
}


.formulaire input[type=submit]:hover {
    background-color: #ffd20c;
    color: #333;
    border: 1px solid #333;
}

.formulaire label {
    font-weight: 300;
    font-size: 1.2em;
}


/* ********** RESPONSIVE ********** */
/* ***** Blocs sur image-fond ***** */
@media screen and (max-width: 580px) {
    .histoire, .cadre {
        margin: 20px auto;
        padding: 20px 5px;
        min-width: 90%;
    }
}