/*
Theme Name: twentytwentyfive child
Theme URI: https://teoxaneproduction.com/
Description: Thème enfant du thème twentytwentyfive
Author: Ben C
Author URI: https://teoxaneproduction.com/
Template: twentytwentyfive
Version: 1.0
*/

/* Ici, tu peux ajouter tes styles personnalisés */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #252525;
    border-left: 1px solid #4c4d4c;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(13, 14, 13, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #252525;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #4c4d4c;
    background-color: rgba(13, 14, 13, 0.97);
    padding: 10px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bandeau {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}

.header-logo img {
    height: 36px;

}

.header-logo a:hover img {
    filter: brightness(0.3);
}

.header-content {
    align-items: center;
    max-width: calc(100% - 80px);
    margin: auto;
    margin-left: auto;
}

.header-menu {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 28px;
    margin-right: 10px;
}

.header-menu:hover {
    filter: brightness(0.3);
}

.menu-bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    justify-content: flex-end;
    width: 60%;
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px 5px;
}

.nav-menu a:hover {
    filter: brightness(0.3);
}

nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

nav a.active {
    border-top: 4px solid #fff;
    padding-top: 2px;
}

.nav-menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 1px;
    left: 0;
    width: 100px;
    background-color: rgba(13, 14, 13, 0.97);
}

.nav-menu.show a {
    display: block;
    padding: 14px 10px;
    text-align: left;
    color: #fff;
    text-decoration: none;
}

.nav-menu.show li {
    display: block;
    width: auto;
}

.nav-menu.show a.active {
    border-top: none;
}

.nav-menu.show a.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 7px;
    left: 10px;
    height: 3px;
    background-color: #fff;
    width: calc(88px - 20px);
}

@media (max-width: 750px) {
    .header-menu {
        display: flex;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-menu.show {
        display: flex;
        top: 60px;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
        margin-left: 5px;
    }
}

footer {
    position: relative;
    height: auto;
    background-color: #252525;
    color: #fff;
    width: 100%;
    padding: 5px;
    border-top: 1px solid #4c4d4c;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    color: #fff;
}


.footer-teoxane {
    margin: 0;
    padding: 0;
    align-items: flex-start;
}

.footer-teoxane p {
    margin-left: 1%;
    width: 100%;
    margin-top: 0;
}

.social-icons a svg {
    width: 25px;
    height: 25px;
    transition: background-color 0.3s;
}

.social-icons a:hover svg {
    filter: brightness(0.3);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.social-icons a {
    margin: 0 8px;
}

@media only screen and (max-width: 600px) {
    footer {
        position: fixed;
        bottom: 0px;
        width: 100%;
        margin-top: 20px;
        align-items: flex-start;
        padding: 5px 0;
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }

    .footer-teoxane {
        display: none;
    }
}