/*
Theme Name: Demo
Theme URI: 
Description: Thème enfant de starter_aeb pour démonstration
Author: Votre nom
Author URI: 
Template: starter_aeb
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: demo
*/

/* Masquer toutes les sections hero sauf la première dès le début */
section#hero:not(:first-of-type) {
    display: none;
}

/* Conteneur pour les sections avec switcher */
.section-container {
    position: relative;
}

/* Styles pour les sélecteurs de sections */
.section-switcher {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.switcher-toggle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.switcher-toggle:hover {
    transform: rotate(30deg);
}

.switcher-toggle svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.switcher-options {
    position: absolute;
    right: 0;
    top: 50px;
    width: 250px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 101;
}

.switcher-wrapper {
    display: flex;
    flex-direction: column;
}

.switcher-wrapper label {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}

.switcher-wrapper select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
}