/*
Theme Name: Teluro Child
Theme URI: https://gvamotos.com
Description: Thème enfant basé sur Teluro
Author: GVA-Dev
Template: teluro
Version: 1.0.0
*/


/* Positionnement du bouton dans le header */
.theme-toggle-btn {
    position: absolute;
    top: 20px;       /* ajuste si nécessaire */
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #f5f5f5; /* couleur par défaut sombre */
    z-index: 9999;
    transition: transform 0.2s ease, color 0.2s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.2);
    color: #facc15; /* jaune au hover */
}

/* --- Thèmes --- */
:root {
    --bg-light: #ffffff;
    --text-light: #111111;
    --bg-dark: #111111;
    --text-dark: #f5f5f5;
}

/* Bloc par bloc : exemple avec header, content, footer */
body.light-theme .header, 
body.light-theme .content .colibri-block.lightable, 
body.light-theme .footer {
    background-color: var(--bg-light);
    color: var(--text-light);
}

body.dark-theme .header, 
body.dark-theme .content .colibri-block.lightable, 
body.dark-theme .footer {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

/* Liens et boutons dans les blocs ciblés */
body.light-theme a, body.light-theme .colibri-block.lightable a {
    color: var(--text-light);
}
body.dark-theme a, body.dark-theme .colibri-block.lightable a {
    color: var(--text-dark);
}











/* Bouton WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  	opacity: 0.7;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
    color: #fff;
  	opacity: 1;
}
.fa-brands, .fab {
    font-weight: 500;
    font-size: 160%;
}
.whatsapp-float i {
    margin: 0;
}



#site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

#site-footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

#site-footer a:hover {
    color: #f39c12;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-links, .footer-social, .footer-copy {
    margin-bottom: 10px;
}

.footer-social i {
    font-size: 24px;
    margin: 0 10px;
}

.footer-social a {
    display: inline-block;
}

.contact-btn.form:hover {
  background: #005f8c;
}

