/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/
#contact-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

#contact-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: #333;
    transition: width 0.3s ease;
}

#contact-title:hover::after {
    width: 100%;
} 
/*
#contact-title {
    font-family: 'Helvetica', sans-serif;
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

#contact-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: width 0.4s ease;
}

#contact-title:hover::after {
    width: 100%;
} 
*/

/* Styles pour fixer l'en-tête */
.ast-primary-header {
    position: fixed; /* Garde l'en-tête en haut de la page lors du défilement */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Assure que l'en-tête soit au-dessus des autres éléments */
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    background-color: #fff; /* Couleur de fond de l'en-tête */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ajout d'un espace en haut pour éviter que le contenu soit masqué par l'en-tête */
body {
    padding-top: 70px; /* Ajuste la valeur selon la hauteur de ton en-tête */
}

/* Styles pour les sous-menus sur ordinateur */
.ast-builder-menu .sub-menu {
    display: none; /* Cache par défaut les sous-menus */
}

/* Affiche le menu déroulant lorsque le menu principal est actif */
.ast-builder-menu .menu-item:hover > .sub-menu,
.ast-builder-menu .menu-item:focus-within > .sub-menu {
    display: block; /* Affiche le sous-menu au survol ou au focus */
}

@media (max-width: 768px) { /* Pour les écrans de 768px ou moins */
    .menu-toggle {
        cursor: pointer; /* Change le curseur pour indiquer que c'est cliquable */
        /* background-color: #0073aa; /* Couleur de fond */
        color: white; /* Couleur du texte */
        border: 2px solid #005177; /* Ajout d'une bordure */
        padding: 10px 15px; /* Espacement interne */
        border-radius: 5px; /* Coins arrondis */
        transition: background-color 0.3s ease; /* Transition douce */
    }

    .menu-toggle:hover {
        background-color: #005177; /* Couleur au survol */
    }
}






