/*
Theme Name: Carrosserie Lévis Child
Theme URI: https://carrosserielevis.com
Template: hello-elementor
Author: Octantis Team
Author URI: https://octantis.ca
Version: 3.4.9.2.6.76.123.8.1783706055
Updated: 2026-07-10 13:54:15

*/

::selection {
  background: #d6d6d6;
  color: #333;
}

::-moz-selection {
  background: #d6d6d6;
  color: #333;
}



/*Logo shrink*/
/* 1. Taille par défaut pour tous les navigateurs */
.menu-logo img {
  width: 200px;
  height: auto;
  transition: width 0.2s ease;
}

/* 2. Rétrécissement direct au scroll (uniquement si scroll-driven animations est supporté) */
@supports (animation-timeline: scroll()) {
  @keyframes shrink-logo {
    from {
      width: 300px;
    }
    to {
      width: 170px;
    }
  }

  .menu-logo img {
    animation: shrink-logo linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 150px;
    animation-duration: 1ms; /* Correctif de compatibilité */
  }
}

/* 3. Repli classique via la classe JS pour Safari */
@supports not (animation-timeline: scroll()) {
  body.page-scrolled .menu-logo img {
    width: 170px;
  }
}