/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* --- PERSONNALISATION AMRANE - SEMAINE 3 --- */

/* 1. Fixer l'en-tête (Sticky Header) */
#site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ajustement pour la barre d'administration WordPress */
.admin-bar #site-header {
    top: 32px;
}

/* 2. Couleur des liens (Vert Satiné) */
a {
    color: #287E5E !important;
    transition: all 0.3s ease;
}

a:hover {
    color: #00E676 !important; /* Passage au vert vif au survol */
    text-decoration: underline;
}

/* 3. Couleur de la description du site */
.site-description {
    color: #287E5E;
    font-weight: 500;
}

/* 4. Boutons personnalisés (Vert Émeraude Identité) */
button, .button, input[type="submit"] {
    background-color: #00E676 !important;
    border-radius: 5px;
}