/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1761600988
Updated: 2025-10-27 21:36:28

*/

/* Menu de navigation stylisé */
.custom-navigation {
    width: 40%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Bouton hamburger - caché par défaut */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

.menu-toggle i {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.menu-toggle .menu-icon-close {
    display: none;
}

.menu-toggle.active .menu-icon-open {
    display: none;
}

.menu-toggle.active .menu-icon-close {
    display: block;
}

.custom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 999px;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.custom-menu li {
    margin: 0;
    padding: 0;
}

.custom-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-menu li a:hover,
.custom-menu li.current-menu-item a,
.custom-menu li.current_page_item a {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Sous-menus */
.custom-menu li {
    position: relative;
}

.custom-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 10px;
    margin-top: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.custom-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.custom-menu .sub-menu li {
    display: block;
    width: 100%;
}

.custom-menu .sub-menu li a {
    padding: 10px 20px;
    display: block;
    width: 100%;
}

/* Indicateur de sous-menu sur mobile */
.submenu-indicator {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.custom-menu li.focus .submenu-indicator {
    transform: rotate(180deg);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .custom-navigation {
        width: 60%;
    }
    
    .custom-menu {
        padding: 10px 18px;
        gap: 5px;
    }
    
    .custom-menu li a {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Cacher le menu par défaut */
    .custom-navigation {
        width: 90%;
        position: fixed;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    /* Afficher le menu quand actif */
    .custom-navigation.menu-open {
        opacity: 1;
        visibility: visible;
    }
    
    .custom-menu {
        flex-direction: column;
        padding: 20px;
        border-radius: 30px;
        gap: 8px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .custom-menu li {
        width: 100%;
    }
    
    .custom-menu li a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Sous-menus mobiles améliorés */
    .custom-menu .sub-menu {
        position: static;
        transform: none;
        margin-top: 8px;
        margin-left: 15px;
        opacity: 0;
        visibility: hidden;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .custom-menu li.focus > .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px;
    }
    
    .custom-menu .sub-menu li a {
        padding: 10px 20px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
        border-radius: 15px;
    }
    
    .custom-menu .sub-menu li:last-child a {
        margin-bottom: 0;
    }
    
    .custom-menu .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media screen and (max-width: 480px) {
    .custom-navigation {
        width: 95%;
    }
    
    .custom-menu {
        padding: 15px;
    }
}

/* FORMINATOR */
/* ==========================================
   STYLE CSS POUR FORMINATOR
   À ajouter dans style.css
   ========================================== */

/* Inputs et textarea */
.forminator-input,
.forminator-textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.forminator-textarea {
    border-radius: 25px;
    min-height: 150px;
    padding-top: 20px;
}

.forminator-input:focus,
.forminator-textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Bouton de soumission */
.forminator-button-submit {
    padding: 16px 40px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.forminator-button-submit:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
