@import url("/css/franchises/shared.css");

/* Optional font-family imports from centrally managed resources on Sirv */

@import url('https://bluesky.sirv.com/Global/Assets/Fonts/Dacia/2025/Block/dacia.css');

.dacia {

    /* Optionally set franchise font-family to match that in Sirv @font-face rules  */
    /* Styles in shared.css will fallback to --bs-body-font-family by default */
    --franchise-font-family: 'DaciaBlock';

    /* Set franchise-specifc button colours */
    --franchise-primary: #646b52;
    --franchise-secondary: #787b80;
    --franchise-primary-button-text: #fff;
    --franchise-hover-bg:  #000;
    --franchise-hover-text: #fff;

    #main-navigation .nav-link:hover, #main-navigation .dropdown-item:hover, .nav-content .dropdown-item:active, .nav-content .dropdown-item:focus{
        background-color: var(--franchise-primary);
    }

    #main-navigation .nav-link:hover, #main-navigation .dropdown-item:hover, .nav-content .dropdown-item:hover {
        background: var(--franchise-primary) !important;
        color: var(--franchise-primary-button-text) !important;
    }
    .bg-gradient-vertical {background: linear-gradient(90deg, var(--franchise-hover-text) 0%, var(--franchise-primary) 70%) !important;}
}

