/*
Theme Name:   Why Not BBQ Theme
Description:  Thème personnalisé pour François Gagnon
Author:       Daniel Vaillancourt
Template:     hello-elementor
Version:      1.0.0
*/

.custom-logo-link img {
  width: 20%;      /* Le logo prendra toujours 20% de la largeur du site */
  min-width: 100px; /* Mais il ne descendra jamais en dessous de 100px (pour rester lisible) */
  max-width: 250px; /* Et il ne dépassera jamais 250px (pour ne pas être énorme sur une TV) */
  height: auto;
}

h1, h2 {
    font-family: 'Rye', cursive !important;
}

h3 {
  font-size: 1.5rem!important;
  font-weight: 200 !important;
}

.site-header .site-navigation .menu li {
    font-size: 16px!important;
}

/* Transformation du menu "Demander une soumission" en bouton */
.wnb-cta a {
    background-color: #FFC107 !important; /* Votre Jaune/Orange */
    color: #000000 !important; /* Texte Noir */
    padding: 12px !important; /* Espace autour du texte */
    border-radius: 5px; /* Coins légèrement arrondis */
    font-weight: 700 !important; /* Texte en gras */
    text-transform: uppercase; /* Tout en majuscule */
    margin-top: -5px; /* Petit ajustement pour l'aligner avec les autres */
    transition: all 0.3s ease; /* Animation fluide */
}

/* Effet au survol de la souris */
.wnb-cta a:hover {
    background-color: #e0a800 !important; /* Jaune un peu plus foncé */
    transform: scale(1.05); /* Léger effet de zoom */
    color: #000000 !important;
}