/* =====================================================
   Hotel Booking Plugin — Theme Variables

   Ce fichier contient toutes les variables CSS Custom Properties
   du plugin. Pour adapter le plugin à un autre hôtel, il suffit
   de surcharger ces variables dans le thème enfant WordPress :

   body {
     --hbooking-color-primary:       #YOUR_COLOR;
     --hbooking-color-primary-hover: #YOUR_HOVER_COLOR;
     --hbooking-color-dark:          #YOUR_DARK_COLOR;
     --hbooking-font-family:         'YourFont', sans-serif;
     --hbooking-border-radius:       4px;
   }

   ===================================================== */

:root {
  /* Couleur principale — or Antares (boutons, titres mois, prix officiel BRW, loading) */
  --hbooking-color-primary:       #D5AC5F;

  /* Couleur principale au survol (hover des boutons) */
  --hbooking-color-primary-hover: #bd954c;

  /* Couleur sombre — navy Antares (textes forts, fond booking bar) */
  --hbooking-color-dark:          #1D2A4B;

  /* Typographie */
  --hbooking-font-family:         'MigrenaGrotesque', sans-serif;

  /* Border-radius des boutons et cartes */
  --hbooking-border-radius:       4px;
}
