@charset "UTF-8";
/*
Theme Name: Anne Violaine
Version: 1.4
License: GNU General Public License v2 or later
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');

/*
@font-face {
    font-family: 'dosis-medium';
    src: url(./fonts/Dosis-Medium.ttf);
}

@font-face {
    font-family: 'dosis-light';
    src: url(./fonts/Dosis-Light.ttf);
}

@font-face {
    font-family: 'dosis-bold';
    src: url(./fonts/Dosis-Bold.ttf);
}

/* --- */
/*
@font-face {
    font-family: 'dosis-medium';
    src: url(./fonts/Dosis-Medium.ttf);
}

@font-face {
    font-family: 'dosis-light';
    src: url(./fonts/Dosis-Light.ttf);
}

@font-face {
    font-family: 'dosis-bold';
    src: url(./fonts/Dosis-Bold.ttf);
}
*/


body {
    /* font-family: 'dosis-medium'; */
    /* font-family: "Trebuchet MS", Tahoma, sans-serif; */
    font-family: "Noto Sans", sans-serif;
    background-color: #F0F0F0;
    color: #333;
}

.logo {
    margin-left: 10px;
}

.container {
    max-width: 980px;
}

.container_menu {
    background-color: #fff;
    padding: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.container_menu .titre {
    font-size: 28px;
    margin-bottom: 20px;
}

.container_menu li a {
    text-transform: uppercase;
}

html {
    background-color: white;
}

h1 {
    margin-bottom: 40px;
    font-size: 1.6rem;
    font-weight: 400;
    /*text-transform: uppercase;*/
}

h2 {
    font-weight: 400;
    font-size: 1.3rem;
}

h3 {
    font-weight: 400;
    font-size: 1.1rem;
}

ul {
    padding-left: 0;
}

.container_menu ul li,
.container_footer ul li {
    display: inline;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

.container_menu a,
.container_menu ul li a {
    color: #333;
    text-decoration: none;
}

.container_menu ul li a:hover {
    color: #5c1956;
}

.container_footer {
    background-color: #fff;
    text-align: center;
    margin-top: 40px;
}

.container_footer ul li {
    font-size: 16px;
}

.container_footer ul {
    margin-top: 40px;
    margin-bottom: 0;
}

.container_footer ul li a {
    color: #7C747C;
    text-decoration: none;
}

.container_footer ul li a:hover {
    color: #5c1956;
    text-decoration: underline;
}

/* Page accueil */
.page_accueil {
   /* background-image: url('https://www.ateliereclatdecouleurs.fr/wp-content/uploads/2022/12/20220915_141525-scaled.jpg');*/
	background-image: url('https://www.ateliereclatdecouleurs.fr/wp-content/uploads/2024/07/20240724_172824-scaled.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 50% 62%;
    min-height: 500px;
    width: 100%;
    margin-bottom: 26px;
}

.page-template-accueil>.container_menu {
    margin-bottom: 0;
}

.page-template-accueil>h2 {
    margin-bottom: 35px;
}

.page-template-creation h2 {
    text-align: center;
}

.menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.cta {
    padding: 5px 20px;
    background-color: #777;
    border: 1px #111 solid;
    color: white;
    display: inline-block;
}

.cta:hover {
    padding: 5px 20px;
    background-color: #444;
    border: 1px #111 solid;
    color: white;
    display: inline-block;
}

/* Style du menu pour les appareils mobiles */
@media screen and (max-width: 768px) {

    .menu-desktop {
        display: none;
    }
    .container_menu .titre {
        font-size: 1.5rem;
    }

    /* .page_accueil {
        background-size: 100% auto;
        background-position: 50% 62%;
        min-height: 300px;
        width: 100%;
        margin-bottom: 26px;
      } */

    .page_accueil {
        background-size: auto 100%;
        background-position: 50% 62%;
        min-height: 200px;
        width: 100%;
        margin-bottom: 26px;
        background-size: cover;
    }

    .mobile-menu-toggle {
        display: block ruby;
        text-align: right;
        cursor: pointer;
        position: relative;
    }
    
    .container_menu ul li, .container_footer ul li {
        display: block;
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
        text-align: right;
      }

    .hamburger-icon {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        margin-top: 2px;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #333;
        border-radius: 3px;
        transition: background-color 0.3s ease;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0;
    }

    .hamburger-icon span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-icon span:nth-child(3) {
        bottom: 0;
    }

    .mobile-menu-toggle.active .hamburger-icon span {
        background-color: #fff; /* Changement de couleur au clic */
    }

    .menu-container.menu-visible {
        display: block;
        z-index: 100;
    }

    .menu-list li {
        text-align: center;
    }

    button, input, optgroup, select, textarea {
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        width: 100%;
        max-width: 100%;
    }
}