/**
***************************************************************
* AUTHOR : CKav
* PROJECT : Covy - Modern HTML Template
* Purchase : https://themeforest.net/user/c-kav 
*
* Copyright 2019-2020 CKav
* NOTE : This file licensed to CKav - https://themeforest.net/user/c-kav and it is strictly prohibited to copy or reuse it.
***************************************************************
*/
/**
*****************************************************************
* This file is licensed to CKav
* It's not allowed to copy or reuse it Copyright CKav 2019-2020
* CKavArt : http://ckavart.com/
*****************************************************************
*/
/**
*****************************************************************
INDEX
*****************************************************************
- VARIABLES
- COLOR VARIABLES
- MIXINS 
- THEME MIXINS

- GLOBAL
- TYPOGRAPHY
- LAYOUT
- HEADER
- CONTENT
- SIDEBAR
- FOOTER
*****************************************************************
*/
/*=============================================
= COMMON USE AND RESET
=============================================*/
/*----------  RESET DEFAULT CSS  ----------*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

/*----------  COMMON CSS  ----------*/
html {
    font-size: 14px;
}

img {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

a,
button,
.more-link,
.more-link *,
.hover-box * {
    transition: all 0.3s ease-out;
}

body {
    -webkit-font-smoothing: antialiased;
}

.container {
    position: relative;
}

/*=============================================
= FONT ALLOCATION 
=============================================*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.heading .heading-section,
.heading-content,
.heading-page {
    font-family: 'Baloo', sans-serif;
}

body,
p,
span,
.button,
.navigation-a {
    font-family: 'Montserrat', sans-serif;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier > {
    font-family: 'Baloo', sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

/*=============================================
= LAYOUT HELPER 
=============================================*/
.full-wh {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
}

/*=============================================
= BACKGROUND
=============================================*/
.bg-holder {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 0;
}

[data-bgholder="background-image"] {
    background-repeat: no-repeat;
    background-size: cover;
}

body .vegas-container {
    position: absolute;
}

/*=============================================
= YOUTUBE BACKGROUND
=============================================*/
.loaded .ytplayer-container {
    display: block;
}

.loaded .placeholder-image {
    opacity: 0;
}

.ytplayer-container {
    bottom: 0;
    height: 100%;
    left: 0;
    min-width: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.placeholder-image {
    height: 100%;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
}

.ytplayer-shield {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.ytplayer-player {
    position: absolute;
    transform: translateY(-50%);
    top: 50% !important;
}

/*=============================================
= BASE LAYOUT
=============================================*/
.container {
    max-width: 1100px;
}

.container-large {
    max-width: 1200px;
}

/*----------  HEADER AREA - COMMON  ----------*/
.ckav-header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-top: 30px;
    transition: all 0.4s ease-out;
}

.ckav-header-area .inner-wrapper {
    width: 1200px;
    margin: auto;
}

.ckav-header-area.navbar-fixed {
    padding: 0;
    transition: all 0.4s ease-out;
}

/*----------  HEADER AREA - LOGO  ----------*/
.logo-wrapper {
    display: inline-block;
}

/*----------  HEADER AREA - NAVIGATION  ----------*/
.navigation-ul {
    display: inline-block;
    font-size: 1.2rem;
}

.navigation-ul .navigation-li {
    display: inline-block;
}

.navigation-ul .navigation-a {
    display: flex;
}

/*----------  HOME AREA  ----------*/
.ckav-home-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
}

.ckav-home-area .container {
    opacity: 1;
    transition: all 0.4s ease-out;
}

.active-inner-page .ckav-home-area .container {
    opacity: 0;
    transition: all 0.4s ease-out;
}

/*----------  PAGE AREA  ----------*/
.ckav-page-area {
    position: relative;
    overflow-y: auto;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    min-height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-out;
}

.ckav-page-area .page-wrapper {
    padding-top: 140px;
    padding-bottom: 100px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    height: 100vh;
    overflow: hidden;
    width: 1200px;
    transition: all 0.4s ease-out;
}

.ckav-page-area .page-wrapper .inner-wrapper {
    background-color: #fff;
    transform: translateY(100px);
    transition: all 0.4s ease-out;
}

.ckav-page-area .prev-page {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
}

.ckav-page-area .prev-page .inner-wrapper {
    transform: scale(100px);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.active-inner-page .ckav-page-area {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s ease-out;
}

.active-inner-page .ckav-page-area .current-page.page-wrapper {
    position: relative;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transition: all 0.6s ease-out;
    transition-delay: 0.2s;
}

.active-inner-page .ckav-page-area .current-page.page-wrapper .inner-wrapper {
    background-color: #fff;
    transform: translateY(0);
    transition: all 0.6s ease-out;
    transition-delay: 0.2s;
}

.page-header-area {
    position: relative;
}

/*----------  FOOTER AREA  ----------*/
.ckav-footer-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.ckav-footer-area .inner-wrapper {
    width: 1200px;
    margin: auto;
}

.active-inner-page .ckav-footer-area {
    display: block;
    opacity: 1;
    visibility: visible;
}

/*=============================================
= TYPOGRAPHY
=============================================*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.14;
}

.font-01,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.heading .heading-section,
.heading-content,
.heading-page {
    font-family: 'Baloo', sans-serif;
}

.font-02,
body,
.heading-sub,
.heading-section-sub,
.heading-content-sub,
.heading-page-sub,
p,
.heading-pre {
    font-family: 'Montserrat', sans-serif;
}

/*----------  HEADING WEIGHT  ----------*/
.heading {
    font-weight: 700;
}

.heading-content {
    font-weight: 500;
}

.heading-section {
    font-weight: 600;
}

.heading-page {
    font-weight: 700;
}

/*----------  HEADING SIZE  ----------*/
.heading,
.heading-content,
.heading-section,
.heading-page {
    font-size: 2.57142857rem;
    margin-bottom: 1.07142857rem;
}

.heading.xxxlarge,
.heading-content.xxxlarge,
.heading-section.xxxlarge,
.heading-page.xxxlarge {
    font-size: 7.14285714rem;
}

.heading.xxlarge,
.heading-content.xxlarge,
.heading-section.xxlarge,
.heading-page.xxlarge {
    font-size: 5.71428571rem;
}

.heading.xlarge,
.heading-content.xlarge,
.heading-section.xlarge,
.heading-page.xlarge {
    font-size: 5rem;
}

.heading.large,
.heading-content.large,
.heading-section.large,
.heading-page.large {
    font-size: 3.57142857rem;
}

.heading.normal,
.heading-content.normal,
.heading-section.normal,
.heading-page.normal {
    font-size: 2.85714286rem;
}

.heading.medium,
.heading-content.medium,
.heading-section.medium,
.heading-page.medium {
    font-size: 2.28571429rem;
}

.heading.small,
.heading-content.small,
.heading-section.small,
.heading-page.small {
    font-size: 1.71428571rem;
}

.heading.mini,
.heading-content.mini,
.heading-section.mini,
.heading-page.mini {
    font-size: 1.28571429rem;
}

.heading.tiny,
.heading-content.tiny,
.heading-section.tiny,
.heading-page.tiny {
    font-size: 1.14285714rem;
}

/*----------  SUB HEADING  ----------*/
.heading-sub,
.heading-section-sub,
.heading-content-sub,
.heading-page-sub {
    font-size: 1.57142857rem;
    margin-bottom: 2.85714286rem;
    font-weight: 400;
}

.heading-sub.xlarge,
.heading-section-sub.xlarge,
.heading-content-sub.xlarge,
.heading-page-sub.xlarge {
    font-size: 2.28571429rem;
}

.heading-sub.large,
.heading-section-sub.large,
.heading-content-sub.large,
.heading-page-sub.large {
    font-size: 1.85714286rem;
}

.heading-sub.small,
.heading-section-sub.small,
.heading-content-sub.small,
.heading-page-sub.small {
    font-size: 1.42857143rem;
}

.heading-sub.mini,
.heading-section-sub.mini,
.heading-content-sub.mini,
.heading-page-sub.mini {
    font-size: 1.28571429rem;
}

.heading-sub.tiny,
.heading-section-sub.tiny,
.heading-content-sub.tiny,
.heading-page-sub.tiny {
    font-size: 1.14285714rem;
}

/*----------  PRE HEADING  ----------*/
.heading-pre {
    font-size: 1.57142857rem;
    margin-bottom: 1.42857143rem;
    font-weight: 400;
}

.heading-pre.xlarge {
    font-size: 2.28571429rem;
}

.heading-pre.large {
    font-size: 1.85714286rem;
}

.heading-pre.small {
    font-size: 1.42857143rem;
}

.heading-pre.mini {
    font-size: 1.28571429rem;
}

.heading-pre.tiny {
    font-size: 1.14285714rem;
}

/*----------  GLOBAL TYPO COLOR  ----------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.heading,
.heading-content,
.heading-section,
.heading-page {
    color: #1F2229;
}

/*----------  LIGHT TITLE  ----------*/
.typo-light h1,
.typo-light h2,
.typo-light h3,
.typo-light h4,
.typo-light h5,
.typo-light h6,
.typo-light .h1,
.typo-light .h2,
.typo-light .h3,
.typo-light .h4,
.typo-light .h5,
.typo-light .h6,
.typo-light .heading,
.typo-light .heading,
.typo-light .heading-content,
.typo-light .heading-section,
.typo-light .heading-page,
.typo-light .heading-sub,
.typo-light .heading-pre,
.typo-light p {
    color: #fff;
}

/*----------  SUB-TITLE  ----------*/
.heading-sub,
.heading-section-sub,
.heading-content-sub,
.heading-page-sub {
    color: #6f6f6f;
}

/*----------  LIGHT SUB-TITLE  ----------*/
.typo-light .heading-sub,
.typo-light .heading-section-sub,
.typo-light .heading-content-sub,
.typo-light .heading-page-sub {
    color: #e1e1e1;
}

/*----------  P TAG TEXT  ----------*/
p,
body {
    color: #6f6f6f;
}

/*----------  LIGHT P TAG TEXT  ----------*/
.typo-light p {
    color: #e1e1e1;
}

/*=============================================
= PAGE LOADER
=============================================*/
#loader {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #1F2229;
}

#loader .load-three-bounce {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 80px;
    margin-left: -40px;
    margin-top: -10px;
}

#loader .load-three-bounce .load-child {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    animation: load-three-bounce 1.4s ease-in-out 0s infinite both;
}

#loader .load-three-bounce .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

#loader .load-three-bounce .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes load-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: sacle(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes load-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: sacle(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes load-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: sacle(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes load-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: sacle(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*=============================================
= MENU ICON
=============================================*/
.menu-icon-wrp .menu-icon {
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.menu-icon-wrp .menu-icon .bar {
    position: absolute;
    top: 50%;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    transition: 0.3s;
}

.menu-icon-wrp .menu-icon .bar:before,
.menu-icon-wrp .menu-icon .bar:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 100%;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: 0.3s;
}

.menu-icon-wrp .menu-icon .bar:before {
    top: -8px;
}

.menu-icon-wrp .menu-icon .bar:after {
    top: 8px;
}

.menu-icon-wrp .menu-icon.active .bar {
    background: transparent;
}

.menu-icon-wrp .menu-icon.active .bar:after,
.menu-icon-wrp .menu-icon.active .bar:before {
    top: 0;
}

.menu-icon-wrp .menu-icon.active .bar:after {
    transform: rotate(45deg);
}

.menu-icon-wrp .menu-icon.active .bar:before {
    transform: rotate(-45deg);
}

.dark.menu-icon-wrp .menu-icon .bar {
    background-color: #1F2229;
}

.dark.menu-icon-wrp .menu-icon .bar:before,
.dark.menu-icon-wrp .menu-icon .bar:after {
    background-color: #1F2229;
}

.dark.menu-icon-wrp .menu-icon.active .bar {
    background: transparent;
}

.menu-icon-wrp.style-1 .menu-icon {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.menu-icon-wrp.style-1 .menu-icon .bar {
    position: absolute;
    top: 50%;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    transition: 0.3s;
}

.menu-icon-wrp.style-1 .menu-icon .bar:before,
.menu-icon-wrp.style-1 .menu-icon .bar:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 100%;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: 0.3s;
}

.menu-icon-wrp.style-1 .menu-icon .bar:before {
    top: -6px;
}

.menu-icon-wrp.style-1 .menu-icon .bar:after {
    top: 6px;
}

.menu-icon-wrp.style-1 .menu-icon.active .bar {
    background: transparent;
}

.menu-icon-wrp.style-1 .menu-icon.active .bar:after,
.menu-icon-wrp.style-1 .menu-icon.active .bar:before {
    top: 0;
}

.menu-icon-wrp.style-1 .menu-icon.active .bar:after {
    transform: rotate(45deg);
}

.menu-icon-wrp.style-1 .menu-icon.active .bar:before {
    transform: rotate(-45deg);
}

.dark.menu-icon-wrp.style-1 .menu-icon .bar {
    background-color: #1F2229;
}

.dark.menu-icon-wrp.style-1 .menu-icon .bar:before,
.dark.menu-icon-wrp.style-1 .menu-icon .bar:after {
    background-color: #1F2229;
}

.dark.menu-icon-wrp.style-1 .menu-icon.active .bar {
    background: transparent;
}

/*=============================================
= POPUP
=============================================*/
.popup-content {
    max-width: 600px;
    min-width: 300px;
    position: relative;
    margin: auto;
    text-align: center;
    background-color: #ffffff;
}

.popup-content .pop-body,
.popup-content .pop-header {
    padding: 60px;
}

.popup-content .mfp-close {
    color: #ffffff;
    width: 40px;
    height: 40px;
    top: -40px;
    right: -9px;
    font-size: 30px;
}

.popup-content.reset {
    max-width: none;
    min-width: none;
    background-color: transparent;
    text-align: left;
}

.popup-content.container {
    padding: 0px;
}

.popup-content._1 .mfp-close {
    color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    font-size: 30px;
    top: 0;
    right: 0;
}

/*=============================================
= TOOTTIP
=============================================*/
.tooltip-light .tooltip .tooltip-inner {
    background-color: #fff;
    color: #1F2229;
    font-weight: bold;
}

.tooltip-light .tooltip .arrow {
    color: #fff;
}

/*=============================================
= BG ANIMATION
=============================================*/
@keyframes scroll {
    from {
        left: 0px;
    }

    50% {
        left: -1000px;
    }

    to {
        left: -1920px;
    }
}

@-webkit-keyframes scroll {
    from {
        left: 0px;
    }

    50% {
        left: -1000px;
    }

    to {
        left: -1920px;
    }
}

.bg-anim {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat-x;
}

.bg-anim {
    -webkit-animation: scroll 60s infinite linear;
    animation: scroll 60s infinite linear;
}

/*=============================================
= SHAP
=============================================*/
.ckav-shap {
    width: 100%;
    position: absolute;
    bottom: -1px;
}

/*=============================================
= HEADER
=============================================*/
.ckav-header-area.navbar-fixed {
    background-color: transparent;
}

.ckav-header-area.navbar-fixed .logo-wrapper {
    padding: 0px;
    transition: all 0.4s ease-out;
}

.ckav-header-area.navbar-fixed {
    background-color: #1F2229;
}

.ckav-header-area.navbar-fixed .logo-wrapper {
    padding: 10px;
    transition: all 0.4s ease-out;
}

/*=============================================
= NAVIGATION
=============================================*/
.navigation-a {
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    font-family: 'Baloo', sans-serif;
}

.navigation-a:hover,
.navigation-a.active-navigation {
    background-color: #ffce02;
    color: #1F2229;
}

/*=============================================
= PAGE AREA
=============================================*/
.ckav-page-area .page-wrapper,
.ckav-page-area .page-wrapper .inner-wrapper {
    border-radius: 30px;
}

.ckav-page-area .page-header-area {
    border-radius: 30px;
}

/*=============================================
= TESTIMONIALS
=============================================*/
.testimonials-section .zoom-carousel .owl-stage-outer {
    padding-bottom: 30px;
}

.owl-carousel .owl-item.center .testimonial-box {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

/*=============================================
= TESTIMONIALS
=============================================*/

/* Style pour l'onglet Franchise */
.franchise-tab {
    margin-left: auto;
    /* Aligner tout à droite */
}

.franchise-tab .navigation-a {
    background-color: #ffce02;
    /* Couleur de fond */
    padding: 10px 20px;
    /* Espacement interne */
    border-radius: 30px;
    /* Coins arrondis */
    text-transform: uppercase;
    /* Texte en majuscules */
    font-weight: bold;
    /* Texte en gras */
    color: #fff;
    /* Couleur du texte */
    transition: background-color 0.3s ease;
}

.franchise-tab .navigation-a:hover {
    background-color: #000;
    /* Couleur au survol */
}



/* Style global des boutons */
.btn-delivery {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Baloo', sans-serif;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Couleurs spécifiques à chaque plateforme */
.btn-delivery.ubereats {
    background-color: #05a357;
    /* Vert UberEats */
}

.btn-delivery.justeat {
    background-color: #fca311;
    /* Rouge JustEat */
}

.btn-delivery.smood {
    background-color: #e1007e;
    /* Bleu Smood */
}

/* Hover effect pour tous les boutons */
.btn-delivery:hover {
    transform: translateY(-3px);
    background-color: #333;
    /* Sombre par défaut */
}

.btn-delivery.franchise {
    background-color: #ffce02;
    /* Couleur de fond initiale */
    color: #000;
    /* Couleur du texte initiale */
    text-decoration: none;
    /* Supprime le soulignement */
    padding: 10px 15px;
    /* Ajoute du padding */
    border-radius: 5px;
    /* Coins arrondis */
    font-weight: bold;
    /* Texte en gras */
    display: inline-block;
    /* Pour un affichage correct */
    transition: color 0.3s, background-color 0.3s;
    /* Animation pour le survol */
}

.btn-delivery.franchise:hover {
    background-color: #ffce02;
    /* Conserve la même couleur de fond */
    color: #fff;
    /* Change le texte en blanc */
    text-decoration: none;
    /* Assure que le lien reste sans soulignement */
}


/* Alignement des boutons */
.delivery-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Ajout des boutons Food Hero et Velogourmet */
.btn-delivery.foodhero {
    background-color: #6c0072;
    /* Couleur Food Hero */
    color: #fff;
    /* Texte Food Hero en violet */
}

.btn-delivery.velogourmet {
    background-color: #3e1422;
    /* Couleur Velogourmet */
}

/* Hover effect pour tous les boutons */
.btn-delivery:hover {
    transform: translateY(-3px);
    background-color: #333;
    /* Sombre par défaut */
}

}

/* Images des villes */
.city-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px !important;
    /* Forcer le border-radius */
    margin: 15px 0;
    object-fit: cover;
    /* S'assurer que l'image garde ses proportions */
    overflow: hidden;
    /* Cacher tout débordement d'image */
    display: block;
    /* Pour éviter les marges automatiques des images */
}

/* Alignement des villes */
.city {
    margin-bottom: 40px;
    text-align: center;
}



.language-selector {
    position: relative;
    display: inline-block;
    font-family: 'Baloo', sans-serif;
}

.select-box {
    padding: 10px;
    color: white;
    cursor: pointer;
    background: none;
    font-family: 'Baloo', sans-serif;
    transition: color 0.3s ease;
}

.language-selector:hover .select-box {
    color: #ffce02;
}

.select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    min-width: 150px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style-type: none;
    border-radius: 5px;
    z-index: 10;
}

.select-dropdown li {
    padding: 8px 10px;
    color: white;
    background-color: black;
    /* Fond noir par défaut */
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 12px;
}

.select-dropdown li:hover {
    background-color: #ffce02;
    /* Fond orange au survol */
    color: #000;
    /* Texte noir au survol */
}

.language-selector.open .select-dropdown {
    display: block;
}




.full-width-image {
    margin-top: 40px;
    /* Ajoute de l'espace au-dessus */
    margin-bottom: 40px;
    /* Ajoute de l'espace en dessous */
    text-align: center;
    /* Centre l'image dans son conteneur */
}

.full-width-image img {
    width: 100%;
    /* L'image prend toute la largeur disponible */
    height: auto;
    /* Conserve les proportions */
    display: block;
    /* Supprime les espaces blancs sous l'image */
    border-radius: 15px;
    /* Ajoute des bords arrondis */
    overflow: hidden;
    /* Assure que les coins restent arrondis */
}

.faq-section {
    margin-bottom: 40px;
    /* Ajoute de l'espace entre chaque section */
    padding-bottom: 20px;
    /* Optionnel : espace interne */
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.accordion-title h6 {
    font-size: 16px;
    margin-bottom: 5px;
}

.accordion-content {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}



/* Style par défaut pour les liens */
.address-link {
    color: #ffce02;
    text-decoration: none;
}

.email-link,
.phone-link {
    color: #000000;
    text-decoration: none;
}

/* Style au survol */
.address-link:hover {
    color: #d3d3d3;
    /* Gris clair */
}

.email-link:hover,
.phone-link:hover {
    color: #ffce02;
    /* Gris */
}

.col-md-6 .footer-link {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.col-md-6 .footer-link:hover {
    color: #000 !important;
}

.btn-delivery.franchise {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffce02;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-delivery.franchise:hover {
    background-color: #ffce02;
    color: white;
}

/* Garde les styles de navigation-a existants */
.navigation-a {
    /* Styles existants */
}

/* Styles spécifiques aux liens de franchise */
.franchise-link {
    color: #000;
    background-color: #ffce02;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    font-family: 'Baloo', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.franchise-link:hover,
.franchise-link.active-navigation {
    background-color: #ffce02;
    color: #fff;
}

/* Ajout de la couleur de fond spécifique pour la franchise */
.franchise-tab .franchise-link {
    background-color: #ffce02;
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.franchise-tab .franchise-link:hover {
    background-color: #000;
    color: white;
}




.start-steps-container {
    max-width: 800px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.step-item {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    font-size: 1em;
    color: #555;
}



/* Overlay pour assombrir la page */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 999;
}

/* Contenu du pop-up */
.delivery-links-popup {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 1000;
    padding: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: popIn 0.4s forwards;
    /* Animation d'entrée */
}

/* Animation pour le pop-up */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Style des boutons de livraison */
.city .city-image-link {
    display: block;
    margin-bottom: 15px;
}


.city .delivery-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    white-space: nowrap;
    overflow-x: auto;
}

.city .delivery-links a:hover {
    background-color: #ffce02;
    color: #000;
    opacity: 1;
}

.foodhero {
    background-color: #6c0072;
}

.justeat {
    background-color: #ff8000;
}

.ubereats {
    background-color: #06c167;
}

.smood {
    background-color: #da3766;
}

.velogourmet {
    background-color: #3e1422;
}

/* Centering the Accordion Container */
.accordion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Accordion Styles */
.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.accordion li {
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-title {
    cursor: pointer;
    padding: 15px;
    background: #ffce02;
    color: #fff;
    font-size: 16px;
    text-align: left;
    width: 100%;
    border: none;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.accordion-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffce02, #ffd84d);
}

.accordion-content {
    padding: 0 15px;
    background-color: #f9f9f9;
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    border-radius: 12px;
}

.accordion li.active .accordion-content {
    display: block;
    max-height: 500px;
    padding: 15px;
}

.accordion .font-weight-medium {
    font-weight: 500;
}
