/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/*COLORS ROOT*/
:root {
	--beige: #f7eada;
	--pink: #e66e7c;
	--green: #abd158;
	--blue: #3c5987;
	--dark: #0d0434;
}
.beige {
	background: var(--beige);
}
.pink {
	background: var(--pink);
}
.blue {
	background: var(--blue);
}
.dark {
	background: var(--dark);
}


/*Animation : Fade in*/
@-webkit-keyframes fadein {
    100% {
 opacity:1;
}
}
@keyframes fadein {
    100% {
 opacity:1;
}
}
/*Animation : Fade out*/
@-webkit-keyframes fadeout {
    100% {
 opacity:0;
}
}
@keyframes fadeout {
    100% {
 opacity:0;
}
}
/*Animation : Splash*/
@-webkit-keyframes splash {
    100% {
	opacity:1;
	-webkit-transform: translateY(200px);
	-moz-transform: translateY(200px);
	-ms-transform: translateY(200px);
	-o-transform: translateY(200px);
	transform: translateY(200px);
}
}
@keyframes splash {
    100% {
	opacity:1;
	-webkit-transform: translateY(200px);
	-moz-transform: translateY(200px);
	-ms-transform: translateY(200px);
	-o-transform: translateY(200px);
	transform: translateY(200px);
}
}


/*FONTS*/
html *, .mobmenu-content * {
	font-family:"bebas-neue-pro"!important;
}
h1, h2, h3, h4, h5, h6, body #mobmenuright li a, a.button, button, body .vc_tta-tab>a span {
	font-family: "Bebas Neue", sans-serif!important;
}
.fa-classic, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fal, .far, .fas, .fat {
    font-family: "Font Awesome 6 Pro"!important;
}
.fa-sharp {
    font-family: "Font Awesome 6 Sharp"!important;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands"!important;
}


/*LOADER/SPLASH/TIMEOUT*/
.splash.timeout {
    pointer-events: none;
	opacity: 0;
}
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    background: var(--beige);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    transform: scale(1);
    opacity: 1;
    pointer-events: initial;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden !important;
    padding: 0 3.5vw;
}
.splash-anim {
    opacity: 0;
    animation: splash .8s ease both;
    animation-delay: 0.1s;
	-webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
}
.splash-anim img.logo {
    width: 100vw;
}
body:not(.home) .splash-anim {
    display:none;
}


/*SCROLL TAG*/
.scroll {
    position: fixed;
    bottom: 8vh;
    width: 100%;
    z-index: 9;
    text-align: center;
    color: var(--beige);
	opacity: 1;
	transition: .5s;
}
.scroll-inner {
    margin-left:-13px;
}
.scroll i {
    font-weight: 300;
    background: var(--beige);
    color: var(--pink);
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0 5px;
    font-size: .85em;
}
.hero-header-on .scroll {
	opacity: 0;
}

/*GÉNÉRAL*/
html {
    -webkit-text-size-adjust: 100%!important; /* Prevent font scaling in landscape while allowing user zoom */
	overflow-x:hidden!important;
}
.center {
    text-align: center;
}
.full-height {
    min-height: 100svh;
}
.padding, .padding.vc_column_container {
    padding: 8vw 3.5vw;
}
.page-header, .sidebar .widget, .site-main>* {
    margin-bottom: 0;
}
body:not(.single-post) .featured-image {
    display: none !important;
}
body {
    background: var(--beige);
    color: var(--dark);
	overflow-x:hidden!important;
}
a, button, input {
    transition: .3s;
}
a {
    color: var(--dark);
    text-decoration: none;
}
a:hover, a:focus, a:active {
    color: var(--pink);
}
button, html input[type="button"], input[type="reset"], input[type="submit"], a.button, a.wp-block-button__link:not(.has-background) {
    color: var(--beige);
    background-color: var(--blue);
}
button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, a.button:hover, button:focus, html input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, a.button:focus, a.wp-block-button__link:not(.has-background):active, a.wp-block-button__link:not(.has-background):focus, a.wp-block-button__link:not(.has-background):hover {
    color: var(--beige);
    background-color: var(--blue);
}
body .vc_row {
    margin-left: 0;
    margin-right: 0;
}
body:not(.page-template-services-template):not(.blog):not(.single) .inside-article .entry-header {
    display: none;
}
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
    margin-top: 0;
}
.separate-containers .comments-area, .separate-containers .inside-article, .separate-containers .page-header, .separate-containers .paging-navigation {
    padding: 0;
    background-color: var(--beige);
}
.separate-containers .site-main {
    margin: 0;
}
body .grid-container {
    max-width: 100%;
}
body, p {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
}
a.button, button, body .mobmenu-content li .socials a.button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .gform_wrapper .gform_footer input.button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab>a span {
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 25px;
    background: var(--blue);
    color: var(--beige);
    border-radius: 50px;
    height: 45px;
    line-height: 48px;
    transition: .3s;
    display: inline-block;
}
a.button.pink {
    background: var(--pink);
}
a.button:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
    background: var(--dark);
    color: var(--beige);
}
body .carousel-posts .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
    border-color: var(--beige);
}
body .gform_wrapper .gform_footer input.button:hover {
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--dark);
}
h1, h2, h3, h4, h5, h6, .entry-title, .search h1 {
    font-size: 90px;
    margin-bottom: 0;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark);
}
h2 {
    font-size: 10vw;
    line-height: 0.9;
    padding-bottom: 1vw;
    position: relative;
    left: -0.35vw;
}
h3 {
    font-size: 60px;
    line-height: 1;
}
h1, h2, h3, h4, h5, h6, p {
    margin:0;
}
.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0!important;
}
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0!important;
}
body .vc_btn3-container {
    margin-bottom: 0;
}
body .grid, body .footer-widgets-container, .inside-site-info, body article:not(.post) .inside-article .entry-header {
	padding-left:3.5vw;
	padding-right:3.5vw;
}
body .vc_column_container>.vc_column-inner {
    padding-left: 0;
	padding-right: 0;
}


/*HEADER & FULLSCREEN MENU*/
body .mobmenu-content h3 {
    color: var(--beige);
    font-weight: 600;
    font-size: 3.7vw;
	transition:.3s;
}
body .mobmenu-content h3:hover {
    color: var(--pink);
}
.submenu * {
	display:inline-block;
}
.submenu {
	margin-bottom: 40px;
	text-align:left;
}
.submenu span {
    padding-left: 0.8vw;
    padding-right: 0.4vw;
}
body .inside-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0 3.5vw;
}
body.nav-float-right .header-widget {
    margin-left: 0;
    right: 75px;
    position: relative;
}
.cta {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
body .site-header, body .mobmenul-container, body .mobmenur-container, body .mob-menu-header-holder {
    height: 75px;
}
.rightmbottom .gtranslate_wrapper {
    justify-content: center;
    margin-bottom: 25px;
}
.rightmbottom .gtranslate_wrapper * {
	color: var(--dark);
	font-size: 13px;
	font-weight: 600;
	outline: none;
	min-height: 21px;
	display: flex;
	align-items: center;
}
.rightmbottom .gtranslate_wrapper a[data-gt-lang="fr"] {
    padding: 2px 8px 1px 11px;
}
.rightmbottom .gtranslate_wrapper a[data-gt-lang="en"] {
    padding: 2px 11px 1px 8px;
}
.menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.menu-contact i {
    color: var(--beige);
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 3px;
    display: block;
    padding-top: 15px;
}
.menu-contact i.fa-inbox {
    padding-bottom: 0px;
}
body .site-branding {
    display: block!important;
    padding-left: 36px;
}
.main-title a, .main-title a:hover, .logo-type {
    font-size: 40px;
}
body.mob-menu-overlay, body.mob-menu-slideout, body.mob-menu-slideout-over, body.mob-menu-slideout-top {
    padding-top: 0!important;
}
body .site-header {
    background: var(--beige);
    width: 100%;
    z-index: 999;
    mix-blend-mode: initial;
    position: fixed;
    transition: .35s;
    display: flex !important;
    left: 0;
}
body #mobmenuright li.menu-soumission a, body #mobmenuright li.menu-soumission a:hover {
    margin-left: 0;
    background: var(--beige)!important;
    color: var(--dark)!important;
    margin: 0 auto;
    box-shadow: 0 0 0 2px var(--beige);
}
body.scrolled.password-protected .site-header {
    background: transparent;
}
html.mob-menu-no-scroll {
    overflow: auto;
}
body .mobmenu-right-alignment {
    -webkit-transform: translateX(100vw);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
body .mobmenu-right-alignment.show-panel {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
body .mobmenu-content li a {
	display: inline-flex;
	letter-spacing: 0;
	padding: 0;
	text-decoration: none;
	font-size: 16px;
	color: var(--beige);
	padding: 0;
	text-align: center;
	font-weight: 300;
}
body .mobmenu-content li .socials, .socials {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}
body .mobmenu-content li .socials .icon, .socials .icon {
    background: var(--beige);
    border-radius: 50px;
    height: 45px;
    width: 45px;
    display: inline-flex;
    color: var(--blue);
    font-size: 30px;
    align-items: center;
    justify-content: center;
}
body .mobmenu-content li .socials a.button, .socials a.button {
    background: var(--beige);
    color: var(--blue);
    height: 45px;
    line-height: 48px;
}
body .mobmenu-content li .socials a:hover, .socials a:hover {
    background: var(--pink);
}
body .mob-menu-header-holder {
    top: 0;
    right: 0;
    display: block;
    z-index: 9999;
    position: fixed;
    right: 3.5vw;
    width: 55px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .mobmenul-container, body .mobmenur-container {
    position: relative;
    top: 0;
    margin: 0!important;
    right: auto;
    display: flex;
    align-items: center;
}
body.mob-menu-slideout-over .mobmenu-right-alignment {
    right: 0;
    height: 100%;
    background: var(--blue);
    width: 50vw;
	max-width: 50vw;
    min-width: 50vw;
    transition: .65s cubic-bezier(.76, 0, .24, 1);
}
.mobmenu-right-panel .mob-cancel-button {
    display: block !important;
}
body a:hover>.mob-icon-cancel-1:before {
    color: var(--pink);
}
body .mobmenur-container i {
    transition: .3s;
    background: transparent;
    padding: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
}
body.show-nav-right .mobmenu-overlay {
    background: transparent;
}
body .mob-icon-menu:before {
    font-weight: 100;
    font-family: "Font Awesome 6 Pro" !important;
    content: "\f0c9";
    content: "\f7a4";
    position: relative;
    font-size: 48px;
    color: var(--dark);
    width: auto;
    margin: 0;
    text-align: right;
    opacity: 1;
    transition: .3s;
    top: 5px;
    left: 0;
    line-height: 1;
    padding: 0;
    margin: 0;
}
body .mob-icon-menu:hover:before{
	color: var(--blue);
}
body .mob-icon-cancel-1:before {
    font-weight: 200;
    font-family: "Font Awesome 6 Pro" !important;
    content: "\f00d";
    position: relative;
    color: var(--beige);
    font-size: 50px;
    width: auto;
    margin: 0;
    text-align: right;
    opacity: 1;
    transition: .3s;
    background: transparent;
    border-radius: 50px;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
}
body .mobmenu-right-panel li, body .rightmbottom, body .rightmtop {
	padding-left: 0;
	padding-right: 0;
}
body .mobmenu-right-panel .mobmenu-right-bt, .mobmenu-right-panel .mobmenu-right-bt, .menu-panel__close {
    right: 50px;
    top: 28px;
}
body .mobmenu-content #mobmenuright > li > a:hover, body .mobmenu-content #mobmenuright li:hover, body .mobmenu-content #mobmenuright li:hover {
    background: transparent;
}
body #mobmenuright li.current-menu-item a:hover {
    padding-right: 0;
}
body .mobmenu-content>div {
    width:100%;
}
body .mob-expand-submenu {
    display: none;
}
body #mobmenuright li a {
    line-height: 1;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 7vw;
    color: var(--beige) !important;
    transition: .3s;
    text-align: left;
    margin: 0;
    max-width: fit-content;
    padding-left: 2vw;
    position: relative;
    z-index: 999;
    padding: 0;
}
body #mobmenuright li a:hover {
    color: var(--pink)!important;
}
body #mobmenuright li.sm a{
    font-size: 40px;
}
body #mobmenuright li.sm.btx a{
    margin-top: 35px;
}
body .mobmenu-content #mobmenuright .sub-menu {
    background-color: transparent;
    margin-top: 0;
    margin-bottom: 0;
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body #mobmenuright li i, body .show-nav-right .mob-expand-submenu i {
    color: var(--beige)!important;
    font-size: 20px;
}
body .mobmenu-content li > .sub-menu li {
    padding: 0;
}
body .mobmenu-content #mobmenuright .sub-menu a {
    color: var(--beige)!important;
    margin: 0;
    font-size: 23px;
    line-height: 1.45;
    padding: 0;
}
body #mobmenuright li.current-menu-item a {
	color: var(--green) !important;
}
body .rightmtop img {
    filter:invert(1);
}
.site-header .header-image, body .rightmtop img {
    width: 140px;
}
body .rightmtop {
	position: fixed;
	top: 36px;
	left: 50px;
	z-index: 999999;
}
body .mobmenu-content {
    margin-top: 0;
    z-index: 1;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    padding: 0 3.5vw 3.5vw;
    justify-content: flex-end;
    text-align: center;
    animation: fadeout 1s ease both;
    overflow: hidden;
}
body .mobmenu-content li.call {
    display:none;
}
body.show-nav-right .mobmenu-content {
	opacity:0;
	animation: fadein 1s ease both;
    animation-delay: 0.5s;
}
body .mobmenu-content .rightmtop, body .mobmenu-content .rightmtop li, body .mobmenu-content .rightmtop li a {
    padding: 0;
    margin: 0;
}
body .mobmenu-content .rightmtop li a img {
    position: absolute;
    left: 23px;
    top: 30px;
    width: 55px;
}
body .rightmbottom, .mobmenu-content .widget {
    margin: 0;
    width: 100%;
    padding: 20px 0 0;
}
.widget ul li {
    margin-bottom: 0;
}
body #custom_html-5, body .mobmenu-content li#text-2{
    width: 100%;
}
body .mobmenu-content p {
    margin: 0;
    padding-top: 30px;
    color: var(--beige);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
}
body .mobmenu-content .widget {
    padding-bottom: 0px;
    padding: 0;
}
.container.grid-container {
    padding-left: 0;
}
.nav-float-right #site-navigation {
    display: none;
}
.nav-align-center .main-nav>ul {
    width: 100px;
    margin-right: 60px;
}
.has-inline-mobile-toggle .mobile-menu-control-wrapper {
    display: none!important;
}


/*HERO*/
#hero>.wpb_column {
    padding-top: 75px;
	height: 100svh;
}
.hero-on .item-name, .hero-on #food:before, .hero-on #food:after, .hero-on .menu-hotspot, .hero-on .flickity-prev-next-button, .hero-on #food .item-slide:not(.is-selected) {
    opacity: 0!important;
	pointer-events: none;	
	transition: opacity .5s!important;
}
.item-name, #food:before,  #food:after,  .menu-hotspot, .flickity-prev-next-button,  #food .item-slide:not(.is-selected) {
    opacity: 1!important;
	pointer-events: initial;	
	transition: opacity .5s!important;
}
.menu-hotspot,  .flickity-prev-next-button,  #food .item-slide:not([data-index="0"]), .hero-on #food:before, .hero-on #food:after {	
	transition-delay: .25s!important;
}
.hero-on .menu-hotspot, .hero-on .flickity-prev-next-button, .hero-on #food .item-slide:not([data-index="0"]){	
	transition-delay: 0s!important;
}
.hero-on .flickity-enabled.is-draggable .flickity-viewport {
	pointer-events: none;
}
.hero-on .site-header {
	background: transparent;
	transition: .3s;
}
.hero-header-on .site-header {
	background: var(--beige)!important;
}
#hero h2 {
    line-height: 1;
}
#menu {
	background: var(--pink);
}
#menu>.wpb_column {
	height: 100svh;
    margin-top: -100svh;
}
#menu>.wpb_column {
    background: linear-gradient(0deg, var(--pink) 50%, transparent 50%);
    position: fixed;
}
.hero-off #menu>.wpb_column {
    position: relative;
}


/*MENU CAROUSEL*/
#menu {
    height: 100svh;
    padding: 0;
}
#food .item-slide .image { 
	position:relative;
    max-width: 80%;
    margin: 0 auto;
}
#food:before, #food:after {
    content: ' ';
    position: absolute;
    top: 10svh;
    right: 0;
    left: auto;
    width: 25vw;
    height: 80svh;
    z-index: 2;
    background: linear-gradient(to right, transparent 0%, var(--pink) 100%);
    pointer-events: none;
}
#food:after {
    left: 0;
	right: auto;
	background: linear-gradient(to left, transparent 0%, var(--pink) 100%);
}
#food .item-slide {
    height: 100svh;
    display: flex;
    align-items: center;
    margin: 0 5vw;
}
#food .item-name {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -38px;
}
#food .item-name * {
    color: var(--beige);
}
body .flickity-prev-next-button.previous {
    left: 27.5vw;
}
body .flickity-prev-next-button.next {
    right: 27.5vw;
}
body .flickity-prev-next-button {
    top: 50%;
    width: auto;
    height: auto;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 9;
    background: transparent;
    color: var(--beige);
    opacity: 1;
    padding: 0;
    font-size: 45px;
    font-weight: 300;
}
body .flickity-prev-next-button:hover {
    color: var(--dark);
}
body .flickity-prev-next-button.previous:before {
    content: "\f053";
    font-family: "Font Awesome 6 Pro" !important;
}
body .flickity-prev-next-button.next:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro" !important;
}
body .flickity-prev-next-button .flickity-button-icon {
    display:none;
}
body .flickity-button:hover {
    background: transparent;
}
#menu-autre .menu-hotspot {
    width: 49px;
    height: 49px;
    background: var(--beige);
    color: var(--dark);
	border:0;
}
#menu-autre .menu-hotspot:hover {
    background: var(--blue);
    color: var(--beige);
}
.menu-hotspot {
    position: absolute;
    top: 80px;
    right: 90px;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    border: 8px solid var(--pink);
    color: var(--pink);
    font-weight: 900;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: .3s;
    z-index: 5;
}
.menu-hotspot:hover {
    background: var(--dark);
    color: var(--pink);
}
.menu-hotspot i {
    transform: rotate(0deg);
	transition:.3s;
	position:relative;
	top:1px;
}
.menu-hotspot:hover i {
    transform: rotate(90deg);
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #0d043457;
	background:transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
    z-index: 9996;
}
#menu-portal { 
	position:relative; 
	z-index: 2147483647; 
}
.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;   /* fallback ancien */
    height: 100svh;  /* small vh (iOS 15+) */
    height: 100dvh;  /* dynamic vh (iOS 16+ / modernes) */
	width: 50vw;
    max-width: 50vw;
    min-width: 50vw;
    color: var(--beige);
    background: var(--blue);
    transform: translateX(100%);
    transition: transform .65s cubic-bezier(.76,0,.24,1);
    display: flex;
    flex-direction: column;
    z-index: 99999;
    justify-content: center;
}
.menu-panel h2, .menu-panel p {
	color: var(--beige);
}
.menu-panel {
	padding: 3.5vw;
}
.menu-ui--open .menu-overlay{
	opacity:1;
	pointer-events:auto;
}
/* droite (par défaut) */
.menu-panel--right { 
	right:0; 
	left:auto; 
	transform:translateX(100%); 
}
/* gauche */
.menu-panel--left { 
	left:0;  
	right:auto; 
	transform:translateX(-100%); 
}
/* état ouvert */
.menu-panel.is-open { 
	transform:translateX(0); 
}
body.menu-ui--lock { 
	overflow:hidden; 
}
.menu-panel__title {
    max-width: 95%;
}
.menu-panel__close {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 50px;
    position: absolute;
	width: 55px;
	height: 55px;
}
.menu-panel__close i {
    font-weight: 100;
}
.menu-panel__close:hover {
    color: var(--pink);
}


/*PHILOSOPHIE*/
#philosophie * {
    color: var(--beige);
    background: transparent;
    border: 0;
}
body .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab.vc_active>a span {
    background: var(--beige) !important;
    color: var(--blue) !important;
    display: inline-block;
    border-color: var(--beige) !important;
}
body .vc_tta.vc_general .vc_tta-tab>a span {
    border: 2px solid !important;
    line-height: 45px;
    margin-right: 15px;
}
body .vc_tta.vc_general .vc_tta-tab>a {
    padding: 0;
}
body .vc_tta.vc_general .vc_tta-panel-body {
    padding: 35px 0 0;
	max-width: 85%;
}
body .vc_tta.vc_general {
    margin-top: 30px;
}


/*RESTAURANTS*/
#restaurants .image .vc_column-inner {
    min-height: 100svh;
    background-size: cover;
    background-position: center;
}
.restaurant {
    margin-top: 30px;
}
.restaurant p {
	line-height:1.2;
}
.restaurant__name {
    border-bottom: 2px solid;
    padding-bottom: 8px;
}
.restaurant__data {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}
.restaurant__actions {
    text-align: right;
}
.restaurant a.button, .restaurant button {
    background: var(--dark);
    padding: 0;
    width: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
}
.restaurant a.button:hover, .restaurant button:hover {
    background: var(--blue);
}
.restaurant__button {
    margin-top:7px;
}
.restaurant .opening-content {
    font-size: 0.7em;
	line-height: 1.2;
    padding-left: 25px;
    padding-top: 4px;
}


/*APP POPUP*/
.app-promo {
    position: fixed;
    inset: auto 0 0 0;
    display: flex;
    gap: 15px;
    padding: 50px;
    padding-bottom: 0!important;
    background: var(--blue);
    color: var(--beige);
    transform: translateY(100%);
    transition: transform .4s ease;
    z-index: 9999;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    width: 420px;
    left: 3.5vw;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.app-promo.is-visible { 
	transform: translateY(0); 
}
.app-promo__close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 36px;
    height: 36px;
    color: var(--beige);
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
    background: transparent;
}
.app-promo__close i {
    font-weight: 300;
}
.app-promo__close:hover { 
	color: var(--pink);
}
.app-promo__media img { 
	width: 150px; 
	height: auto; 
	display:block; 
}
.app-promo__content h3 {
    color: var(--beige);
}
.app-promo__content p {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
}
.app-promo__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.app-promo__actions img {
    height: 42px;
    display: block;
}


/*FOOTER*/
body .site-footer .footer-widgets-container .inside-footer-widgets {
    margin-left: 0;
}
body .site-footer .footer-widgets-container .inner-padding {
    padding: 0;
}
.footer-widgets-container {
    padding: 5vw;
}
.site-info {
	display:none;
}
.footer-widgets {
    background-color: var(--dark);
}
.footer-widgets img {
    width: 200px;
}
body .footer-widgets .socials {
    justify-content: flex-end;
    margin-top: 0;
}
.footer-widgets .socials a.button, .footer-widgets .socials .icon {
    color: var(--dark);
}
.inside-footer-widgets {
    align-items: center;
}


/******************************/
/******************************/
/*RESPONSIVE*/
/******************************/
/******************************/


@media only screen and (min-width: 1025px) {
.hero-header-on .flickity-prev-next-button {
    opacity: 1!important;
	pointer-events: initial;	
	transition: opacity .5s!important;
}
}


/*2200px*/
@media only screen and (min-width: 2200px) {
body, p {
    font-size: 38px;
}
.scroll {
    bottom: 10vh;
}
h2 {
    font-size: 9vw;
}
#hero>.wpb_column {
    padding-top: 150px;
}
#hero h2 {
    line-height: 1.05;
    font-size: 11vw;
}
#food .item-slide .image {
    max-width: 100%;
}
#hero>.wpb_column {
    height: 100svh;
}
body .flickity-prev-next-button.next {
    right: 32vw;
}
body .flickity-prev-next-button.previous {
    left: 32vw;
}
.menu-hotspot {
    top: 100px;
    right: 120px;
}
#food:before, #food:after {
    width: 35vw;
}
.footer-widgets img {
    width: 250px;
}
.menu-panel__title {
    max-width: 85%;
}
.menu-panel, body.mob-menu-slideout-over .mobmenu-right-alignment {
    width: 40vw;
    max-width: 40vw;
    min-width: 40vw;
}
body #mobmenuright li a {
    font-size: 5.5vw;
}
}

/*1440px*/
@media only screen and (max-width: 1440px) {
#hero>.wpb_column {
    padding-top: 110px;
}
#food .item-slide .image {
    max-width: 60%;
}
#food .item-slide {
    margin: 0;
}
.menu-hotspot {
    top: 60px;
    right: 60px;
}
.scroll {
    bottom: 10vh;
}
}


/*1024px*/
@media only screen and (max-width: 1024px) {
body, p {
    font-size: 35px;
}
body .mobmenu-content h3 {
    font-size: 5.25vw;
}
.scroll {
    bottom: 13vh;
}
.padding, .padding.vc_column_container {
    padding: 100px 7vw;
}
body .inside-header, body .grid, body .footer-widgets-container, .inside-site-info, body article:not(.post) .inside-article .entry-header {
    padding-left: 7vw;
    padding-right: 7vw;
}
body .mob-menu-header-holder {
    right: 7vw;
}
.full-height {
    min-height: auto;
}
h2 {
    font-size: 17vw;
}
#hero > .wpb_column {
	padding-top: 150px;
}
#food .item-slide .image {
	max-width: 85%;
}
body .flickity-prev-next-button.next {
    right: 12%;
}
body .flickity-prev-next-button.previous {
    left: 12%;
}
#food:before, #food:after {
    display:none;
}
.menu-hotspot,  .flickity-prev-next-button,  #food .item-slide:not([data-index="0"]), .hero-on #food:before, .hero-on #food:after {	
	transition-delay: 0s!important;
}
.menu-hotspot {
	top: 90px;
	right: 90px;
}
.menu-autre {
	grid-template-columns: 1fr !important;
	grid-template-rows: auto auto;
	min-height: 120svh !important;
}
#restaurants .vc_col-sm-6 {
	width: 100%;
}
#restaurants .image .vc_column-inner {
    min-height: 60svh;
    height: auto !important;
}
.menu-panel, body.mob-menu-slideout-over .mobmenu-right-alignment, .mobmenu-right-alignment {
    width: 75vw;
    max-width: 75vw;
    min-width: 75vw;
}
body #mobmenuright li a {
    font-size: 10vw;
}
body .mobmenu-content, .menu-panel {
    padding: 7vw;
}
.menu-autre__col--dumplings button {
    right: auto;
    left: 90px;
}
.inside-footer-widgets>div {
    flex: auto;
}
}


/*768px*/
@media only screen and (max-width: 768px) {
body .mobmenu-content h3 {
    font-size: 7vw;
}
.scroll {
    bottom: 12vh;
}
.menu-panel, body.mob-menu-slideout-over .mobmenu-right-alignment, .mobmenu-right-alignment {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
}
.has-inline-mobile-toggle .header-widget, .has-inline-mobile-toggle #site-navigation {
	flex-basis: unset;
}
.has-inline-mobile-toggle .header-widget, .has-inline-mobile-toggle #site-navigation {
	flex-basis: unset;
	margin: 0;
}
#food .item-slide .image {
	max-width: 70%;
}
body .inside-footer-widgets>div:not(:last-child) {
	margin-bottom: 15px;
}
.footer-widgets-container {
    padding: 75px;
}
/* Forcer vc_tta à rester en mode tabs même sur mobile */
body .vc_tta.vc_tta-accordion .vc_tta-tabs-container, body .vc_tta.vc_tta-tabs .vc_tta-tabs-container {
    display: block;
}
body .vc_tta.vc_tta-tabs .vc_tta-panel-heading {
    display: none;
}
body .vc_tta.vc_general .vc_tta-panel-body {
    max-width: 100%;
}
body #mobmenuright li a {
	font-size: 13vw;
}
}


/*641px*/
@media only screen and (max-width: 641px) {
.site-header {
    background: var(--beige)!important;
}
body .inside-header, body .grid, body .footer-widgets-container, .inside-site-info, body article:not(.post) .inside-article .entry-header {
	padding-left: 4vw;
	padding-right: 4vw;
}
body .mob-menu-header-holder {
	right: 4vw;
}
.padding, .padding.vc_column_container {
	padding: 100px 5vw;
}
body .mobmenu-content, .menu-panel {
	padding: 10vw 5vw;
}
.site-header .header-image, body .rightmtop img {
    width: 100px;
}
.cta {
    gap: 1.5vw;
}
body.nav-float-right .header-widget {
    right: 60px;
}
.cta a.button {
	font-size: 5vw;
	letter-spacing: 0.15vw;
	padding: 0 4vw;
	height: 9vw;
	line-height: 1;
	max-height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top:0.5vw;
}
body #mobmenuright li a {
	font-size: 15vw;
}
h2 {
	font-size: 20vw;
}
.menu-hotspot {
    top: 80px;
    right: 90px;
    width: 50px;
    height: 50px;
    border: 5px solid var(--pink);
	padding:0;
    font-size: 28px;
}
#menu-autre .menu-hotspot {
    width: 40px;
    height: 40px;
}
.menu-autre__col--dumplings button {
	left: 30px;
}
.menu-hotspot {
	top: 30px;
	right: 30px;
}
body .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list {
    display: flex;
    flex-direction: column;
}
body, p {
	font-size: 24px;
}
a.button, button, body .mobmenu-content li .socials a.button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern, body .gform_wrapper .gform_footer input.button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus, body .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab>a span {
    font-size: 25px;
    height: 40px;
    line-height: 42px;
	padding: 0 20px;
}
body .mobmenu-content li .socials .icon, .socials .icon {
    height: 40px;
    width: 40px;
    font-size: 25px;
}
body .mobmenu-content li .socials a.button, .socials a.button {
    height: 40px;
    line-height: 44px;
}
.restaurant a.button, .restaurant button {
    width: 40px;
}
body .vc_tta.vc_general .vc_tta-panel-body {
    padding: 20px 0 0;
}
body .mobmenu-content li .socials, .socials {
	gap: 12px;
}
body .footer-widgets .socials, body .mobmenu-content li .socials, .socials {
	justify-content: center;
	margin-top: 0;
	flex-wrap: wrap;
	display: flex;
}
body .mobmenu-content li .socials, .socials {
	justify-content: flex-start;
}
body .footer-widgets .socials > *:last-child, body .mobmenu-content li .socials > *:last-child, .socials > *:last-child{
	flex: 0 0 100%;
	display: inline-flex;
	justify-content: center;
	max-width: fit-content;
	margin: 0 auto;
}
.menu-panel__close, body .mobmenu-right-panel .mobmenu-right-bt, .mobmenu-right-panel .mobmenu-right-bt {
    right: 5vw;
    top: 5vw;
}
body .flickity-prev-next-button {
    font-size: 35px;
}
body .flickity-prev-next-button.previous {
	left: 5vw;
}
body .flickity-prev-next-button.next {
	right: 5vw;
}
body .vc_tta.vc_general .vc_tta-tab>a span {
    line-height: 40px;
    margin-right: 0;
    margin-bottom: 8px;
}
.footer-widgets img {
    width: 150px;
    margin-top: -20px;
}
.restaurant a.button, .restaurant button {
    font-size: 0.85em;
}
.restaurant__data {
    margin-top: 10px;
}
.restaurant__button {
    margin-top: 5px;
}
.restaurant__button i {
    position:relative;
	left:1px;
}
.restaurant__data {
    flex-direction: column;
}
.restaurant__actions {
    text-align: left;
    display: flex;
    gap: 8px;
    margin-top: 5px;
}
.restaurant .opening-content {
    font-size: 0.65em;
    line-height: 1.2;
    padding-left: 0;
    padding-top: 7px;
    margin-left: -48px;
}
.scroll i {
    height: 30px;
	width: 30px;
}
.scroll-inner {
    margin-left:-10px;
}
.menu-autre {
	grid-template-columns: 1fr !important;
	grid-template-rows: auto auto;
	min-height: 200svh !important;
}
#menu-autre .menu-autre__col--dumplings .menu-hotspot {
    top: 44vh;
    left: 33vw;
}
#menu-autre .menu-autre__col--biscuits .menu-hotspot {
    top: 38vh;
    right: 20vw;
}
#restaurants .image .vc_column-inner {
	min-height: 100svh;
}
body .flickity-prev-next-button:hover {
    color: var(--beige);
}
}


/*480px*/
@media only screen and (max-width: 480px) {
.app-promo {
    display: flex;
    gap: 15px;
    padding: 15vw 10vw;
    width: 90vw;
    left: 5vw;
}
.app-promo__actions img {
    height: 10vw;
}
.app-promo h3 {
    font-size: 14vw;
}
h3 {
    font-size: 40px;
}
#food .item-name {
    bottom: -30px;
}
body .mobmenu-content h3 {
    font-size: 8vw;
}
.submenu span {
    padding-left: 1.3vw;
    padding-right: 0.5vw;
}
.submenu {
    margin-bottom: 28px;
}
}


/*Landscape view Tablet*/
@media screen and (orientation: landscape) and (max-width: 1024px) {
body, p {
	font-size: 30px;
}
h2 {
	font-size: 11vw;
}
#food .item-slide .image {
	max-width: 55%;
}
.menu-hotspot {
	top: 50px;
	right: 50px;
}
}


/*Landscape view mobile*/
@media screen and (orientation: landscape) and (max-width: 900px) {
body #mobmenuright li a {
	font-size: 7vw;
}
body .mobmenu-content h3 {
	font-size: 4vw;
}
body .mobmenu-content, .menu-panel {
	padding: 3.5vw 5vw;
}
.submenu {
    margin-bottom: 20px;
}
body .rightmbottom, .mobmenu-content .widget {
    padding: 10px 0 0;
}
h3 {
	font-size: 40px;
}
body .flickity-prev-next-button.next {
	right: 25%;
}
body .flickity-prev-next-button.previous {
	left: 25%;
}
#hero {
	min-height: 120svh;
}
#hero > .wpb_column {
	padding-top: 100px;
}
#food .item-slide .image {
	max-width: 30%;
}
#menu>.wpb_column {
    margin-top: -120svh;
}
.menu-hotspot {
	top: 20px;
	right: 20px;
}
.scroll {
	bottom: 25px;
}
body, p {
	font-size: 25px;
}
#restaurants .image .vc_column-inner {
	min-height: 100svh;
}
.menu-autre {
	grid-template-columns: 1fr !important;
	grid-template-rows: auto auto;
	min-height: 200svh !important;
}
.site-content {
    margin-top: -75px;
}
body .site-header {
    position: relative;
}
body .mobmenur-container i {
    background: var(--beige);
    border-radius: 50px;
}
body .mob-icon-menu:before {
    font-size: 40px;
}
}