.body {
    margin: 0;
    padding: 0;
}

.post, .page {
    margin: 0;
}

.site-info {
    color: #7B7B7B;
    text-align: center;
}

.main-navigation {
    width: auto;
}

.main-navigation li {
    padding-left: 3rem;
    padding-right: 3rem;
}

a,
a:visited {
    color: white;
    text-decoration: none;
}

a:hover{
    color: white;
}

.entry-title {
    font-size: 50px;
}

.filter {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.main-navigation a {
    transition: font-size 0.3s ease-in-out;
}

.main-navigation a:hover {
    font-size: 1.1em; 
    opacity: 0.6;
}

/* ------------------------------------------ Display none */

/* .entry-title {
    display: none;
} */

.site-description {
    display: none;
}

.comment-form-comment {
    display: none;
}

.logged-in-as {
    display: none;
}

.comment-respond {
    display: none;
}

.entry-footer {
    display: none;
}

.entry-meta {
    display: none;
}

.wpa-test-msg {
    display: none;
}

/* .nojq {
    display: none;
} */

/* ------------------------------------------ img */

.wp-post-image {
    width: 100%;
    margin: 0 auto;
}

.entry-content img {
   width: 100%;
   height: auto;
}

.img-width img {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.post-thumbnail img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* ------------------------------------------ article - grid */

.post-grid {
    display: flex;
    flex-wrap: wrap;
}

.post-grid article {
    width: 50%;
    position: relative;
    text-align: center;
}

/* ------------------------------------------ header */

.site-header {
    z-index: 99;
    position: fixed;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0rem 3rem 0rem 3rem;
    width: 100%;
    transition: 0.5s;
    color: white;
}

.scrolled .site-header {
    padding: 0rem 1.5rem 0rem 1.5rem;
    background: transparent;
    color: #000000;
}

.scrolled .site-header a {
    color: #000000;
}

.site-title a {
    font-size: 17px;
}

/* ------------------------------------------ footer */

.site-footer {
    bottom: 0;
    width: 100%;
    padding: 0.7rem;
    position: fixed;
}

.site-footer p {
    color: rgb(20, 20, 20);
    font-size: 10px;
}

/* ------------------------------------------ contact */

.page-id-13 .site-header {
    background: transparent;
}

.page-id-13 .site-header a {
    color: #202020;
}

.page-id-13 {
    color: #202020;
}

.info-contact {
    margin: 0 auto;
    width: 700px;
    padding-top: 100px;
}

.title-contact {
    margin: 0 auto;
    width: 700px;
}

.page-id-13 .entry-content {
    padding-top: 300px;
}

.page-id-13 .entry-title {
    display: none;
}

.page-id-13 a {
    transition: font-size 0.3s ease-in-out;
}

.page-id-13 a:hover {
    font-size: 1.1em; 
    opacity: 0.6;
}

/* ------------------------------------------ h2 main page */

.main-post-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* ------------------------------------------ texte - name-section */

.name-section {
    color: #202020;
    width: 700px;
    margin: 0 auto;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.description {
    color: #404040;
    width: 600px;
    margin: 0 auto;
    text-align: left;
}

.entry-content a {
    color: #000000;
}

/* ------------------------------------------ A propos */

.text-about {
    color: #202020;
    margin: 0 auto;
    width: 800px;
    margin-top: 7rem;
    margin-bottom: 3rem;
}

.entry-content .about-title {
    color: #202020;
    margin: 0 auto;
    width: 800px;
    padding-top: 17rem;
}

.page-id-11 .site-header {
    background: transparent;
}

.page-id-11 .site-header a {
    color: #202020;
}

.page-id-11 .entry-title {
    display: none;
}

/* ------------------------------------------ effet survol */

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    opacity: 0.7;
    transition: opacity 0.5s ease; 
}

.image-container:hover img {
    transform: scale(1.1); 
}

.image-container:hover .overlay {
    opacity: 0;
}

/* ------------------------------------------ info article */

.single-banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.single-banner .post-thumbnail {
    min-height: 50vh;
    overflow: hidden;
}

.single-banner header {
    position: absolute;
    top: 20%;
    left: 3%;
    width: 100%;
    color: white;
}

.entry-header h1 {
    font-size: 55px;
}

.single-banner .header-extrait {
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 100%;
    color: white;
}

.header-extrait p {
    width: 500px;
    font-size: 16px;
}

/* ------------------------------------------ Responsive menu */

button.menu-toggle {
    width: 50px;
    height: 50px;
    background: url(images/menu-ouvert.svg) no-repeat center center transparent;
    background-size: contain;
    text-indent: -999999px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    border-bottom: 0px solid;
    z-index: 1000;
    border: 0px;
}

button.menu-toggle:hover {
    background-color: transparent;
}

.toggled #primary-menu {
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    z-index: 500;
}

.toggled button.menu-toggle {
    background-image: url(images/menu-fermer.svg);
}

.toggled #primary-menu li a {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.toggled #primary-menu a {
    color: #202020;
}

/* ------------------------------------------ Form */

/* input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: #202020;
    border: 0px;
    border-bottom: 1px solid #606060;
    border-radius: 0px;
    padding: 3px;
    background-color: transparent;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea {
    color: white;
    background-color: transparent;
    border-color: transparent;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 0px;
    border-bottom: 1px solid #606060;
    border-radius: 0px;
    color: #202020;
    background-color: transparent;
}

.wpcf7 textarea {
    width: 100%;
    height: 100px;
} */

/* ------------------------------------------ Media queries */

@media screen and (max-width: 992px) {
    .post-grid article {
        width: 100%;
    }

    .main-navigation li {
        margin-left: 10rem;
    }

    .info-contact {
        display: inline-block;
    }

    .name-section {
        width: 500px;
    }

    .header-extrait p {
        width: 350px;
        font-size: 15px;
    }

    .entry-header h1 {
        font-size: 30px;
    }

    .text-about {
        width: 350px;
        font-size: 15px;
    }

    .entry-content .about-title {
        width: 350px;
        padding-top: 12rem;
    }
}








