/*
	Theme Name: Wasabi
	Theme URI: https://www.wasabimilano.it
	Description: Base
	Version: 1.0
	Author: Filippo Montanari
	Author URI: https://www.linkedin.com/in/filippomontanari/
	Text Domain: wa
	Domain Path: /languages
*/
:root {
    --blue: #2D626E;
    --black: #000;
    --green: #9FC560;
    --brown: #5F3E0C;
    --font-primary: "warbler-deck", sans-serif;
    --font-secondary: "warbler-deck", sans-serif;
    --fw-light: 300;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-black: 900;
}
:focus {
    outline: none;
}
html, body {
    /*fix nav sticky non si incolla*/
    /*height: 100%;*/
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font: 1.8rem var(--font-primary);
	color: #000;
    background: #fff url("images/bg.jpg") center top;
}
a {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color: var(--green);
    text-decoration: none;
}
a:hover {
	color: var(--black);
    text-decoration: underline;
}
.bg-w a {
    color: var(--green);
}
.bg-w a:hover {
    color: var(--black);
}
h1, .h1 {
	font-size: 3.3rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}
h2, .h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
h3, .h3 {
	font-size: 2rem;
	font-weight: 700;
}
h4, .h4 {
	font-size: 1.8rem;
	font-weight: 700;
}
p {
	margin-bottom: 1.5rem;
}
iframe, embed, object, video {
	max-width: 100%;
}
section {
	position: relative;
}
/* FOOTER */
footer {
	background: #5F3E0C;
    color: #fff;
    font-size: 1.6rem;
    border-top: 1px solid #fff;
}
footer a, footer a:hover {
	color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: var(--green);
}
footer .social {
    font-size: 3rem;
    margin-bottom: 0;
}
footer .social .fa-facebook-f {
    font-size: 2.7rem;
}
.footer-menu {
    border-top: 1px solid #fff;
    margin-top: 2rem;
    padding-top: 2rem;
}
.footer-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.footer-menu ul li {
    padding: 0;
}
.footer-menu ul li a {
    padding: .5rem 1rem;
    display: inline-block;
}
/*footer .casa-noscia {
    margin-top: 3.8rem;
}*/

.booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-weight: bold;
    background: #fff;
}
.booking .container {
    margin-top: -2.5rem;
}
.booking .d-flex {
    column-gap: 1.5rem;
}
.booking .btn {
    border: 1px solid #fff;
    min-width: 40vw;
    font-weight: bold;
}
.booking a svg {
    color: var(--green);
    -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.booking a:hover svg {
    color: #000;
}
.vr {
    opacity: 1;
}
header {
    background: #fff;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid #000;
}
header ul.menu {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
header ul.menu li a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
header ul.menu li a:hover, header ul.menu li.current-menu-item a, header ul.menu li.current-page-ancestor a {
    color: var(--green);
}

.language-switcher-container {
    margin: 0 1rem 0 1rem;
}
.language-switcher img {
    filter: invert(42%) sepia(9%) saturate(17%) hue-rotate(359deg) brightness(99%) contrast(82%);
    display: block;
}
.language-switcher:hover img {
    filter: invert(50%) sepia(71%) saturate(499%) hue-rotate(1deg) brightness(93%) contrast(90%);
}
#lang_sel_list {
    position: absolute;
    left: 51%;
    display: none;
    transform: translate(-50%, 0);
    border:0;
    z-index: 9999;
    background: #e4e4e4;
    margin-top: 10px;
}
#lang_sel_list::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -2px;
    left: 45%;
    background: #e4e4e4;
    transform: rotate(45deg) translate(-50%, 0%);
}
#lang_sel_list ul {
    padding: .5rem 1rem;
    margin: 0;
    list-style-type: none;
}
.icon-open::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(images/icons/menu-open.svg) no-repeat center center / contain;
    display: block;
    margin: 0 10px;
}
.icon-close::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(images/icons/menu-close.svg) no-repeat center center / contain;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu-mobile-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    display: none;
}
.menu-mobile-container.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.menu-mobile-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.menu-mobile-container ul li a {
    color: #fff;
    display: inline-block;
    padding: 1rem;
}
.menu-mobile-container .social {
    border-top: 1px solid #fff;
    width: 90%;
    margin: 2.5rem auto;
    padding: 3rem;
}

.visual {
    min-height: 85vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    overflow: hidden;
    margin-top: 8rem;
}
.visual-sm {
    min-height: 45vh;
}
.visual-small {
    min-height: 0;
}
.visual-content {
    width: 90%;
    max-width: 1200px;
    color: #fff;
    text-align: center;
    display: block;    
    text-shadow: 0 0 .4rem #000;
}
.visual-content :last-child {
    margin: 0;
}
.visual-content-title h1 {
    font-size: 2.9rem;
}
.visual-content .dynalight {
    font-size: 3rem;
}

.admin-bar header.fixed-top {
    top: 3.2rem;
}
.visual-home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0;
    height: 50vh;
    text-align: right;
    margin-top: 9rem;
}
.visual-home video {
    background: #000;
    object-fit: cover;
    width: 100vw;
    height: 100%;
}
.visual-home .visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: right;
}
.visual-home h1 {
    font-size: 4rem;
    text-align: left;
    display: inline-block;
    -webkit-animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
	        animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}
.visual-home h1 span.r2 {
    display: inline-block;
    padding-left: 8rem;
}
.visual-home h1 span.r3 {
    display: inline-block;
    padding-left: 3rem;
}
@-webkit-keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

.text {
    padding: 0 2rem;
}
.evento {
    background: var(--extradarkbeije);
    color: #fff;
}
.evento h1, .evento h2, .evento h3 {
    margin: 0;
}
.home .modula-gallery {
    margin-top: 6rem;
}

.bg-image {
    height: 73vh;
    position: relative;
    z-index: -1;
}
.chiedi-info {
    margin-bottom: -5rem;
}
.fw-medium {
    font-weight: var(--fw-medium);
}
.ristorante .dynalight {
    font-size: 3.3rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.bg-star-container {
    position: relative;
    text-align: center;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    padding: 2rem;
    margin: auto;
    max-width: 30rem;
}
.bg-star {
    margin-bottom: 2rem;
}
.bg-star-label {
    background: var(--green);
    padding-bottom: .5rem;
    
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.bg-star-label:hover {
    background: var(--black);
}
.bg-star-label a {
    text-decoration: none;
    color: #fff;
}
.page-template-template-menu-home .bg-star-container, .image_with_side_text .bg-star-container {
    max-width: 37rem;
}
.leaflet-popup-content {
    font-size: 1.6rem !important;
}


.social a {
    text-decoration: none;
}
#delivery .modal-header {
    border: 0;
}
#delivery button.btn-close {
    position: absolute;
    right: 1rem;
    z-index: 10;
}
#delivery .modal-dialog {
    max-width: 800px;
    text-align: center;
}
#delivery .delivery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 18rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#delivery .delivery-item:hover {
    transform: translateY(-3px);
}
#delivery h2 {
    padding: 2rem 0;
}

.menu-intro {
    max-width: 65rem;
    margin: auto;
    padding: 0 2rem 3rem;
}
.menu-intro h2 {
    font-size: 2.7rem;
    font-family: var(--font-secondary);
    font-weight: normal;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1px solid #fff;
    padding: 4rem 0;
}
.menu-intro h2:last-child {
    margin: 0;
}
.menu-content {
    letter-spacing: 0.03rem;
}
.menu-content span.beije {
    white-space: nowrap;
}
.menu-content ul {
    list-style-type: none;
    padding-left: 0;
}
.menu-content ul li:not(:last-child)::after {
    content: '•';
    display: block;
    color: var(--green);
    font-weight: 900;
}
/*.menu-content ul li:not(:last-child) {
    padding-bottom: .6rem;
}*/
.menu-content h3 {
    font-size: 2.2rem;
    font-family: var(--font-secondary);
    font-weight: normal;
    color: var(--green);
    margin-top: 4rem;
}
.menu-content a.btn {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.menu-note {
    font-size: 1.4rem;
    line-height: normal;
}


.grecaptcha-badge {
    display: none !important;
}


.btn, .page-id-397 input[type=submit], .page-id-424 input[type=submit] {
    padding: 5px 20px 10px;
    vertical-align: middle;
    line-height: normal;
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    border: 0;
    min-width: 15vw;
}
.btn.btn-primary, .page-id-397 input[type=submit], .page-id-424 input[type=submit] {
	background: var(--green);
    color: #fff;
}
:hover.btn.btn-primary, .page-id-397 input[type=submit]:hover, .page-id-424 input[type=submit]:hover {
	background: #000;
	color: #fff;
	text-decoration: none;
}
.btn.btn-secondary {
	background: #fff;
    color: #707070;
}
:hover.btn.btn-secondary {
	background: var(--black);
	color: #fff;
	text-decoration: none;
}
.bg-black :hover.btn.btn-secondary {
	background: var(--green);
	color: #fff;
}

.bg-brown {
    background: var(--brown);
    color: #fff;
}
.bg-beije { background-color: var(--green); }
.w { color: #fff; }
.beije { color: var(--green); }
.dynalight { font-family: var(--font-secondary); font-weight: normal; line-height: 100%; }
.fw-light { font-weight: var(--fw-light); }

@media (min-width: 576px) {
	
} /* end min-width: 576px */

@media (min-width: 768px) {
	.footer-menu ul {
        display: flex;
        justify-content: center;
    }
    .footer-menu ul li:not(:last-child) a {
        border-right: 1px solid #fff;
    }
    .footer-menu ul li a {
        padding: 0 1rem;
        line-height: 1.3rem;
    }
    .text {
        padding: 0;
    }
    #delivery .delivery-item {
        aspect-ratio: 1 / 1;
    }
    .visual-home {
        aspect-ratio: 16 / 9;
        height: auto;
        margin-top: 0;
    }
} /* end min-width: 768px */

@media (min-width: 992px) {
    .visual {
        
    }
    header ul.menu {
        list-style-type: none;
        display: flex;
        flex-direction: row;
        column-gap: 2.5rem;
    }
    header ul.menu li a {
        color: #000;
    }
    .visual-content .dynalight {
        font-size: 3.7rem;
    }
    .language-switcher-container {
        margin: 0 0 0 2.5rem;
    }
    .menu-intro h2 {
        font-size: 3.3rem;
    }
} /* end min-width: 992px */

@media (min-width: 1200px) {
    header ul.menu {
        column-gap: 3.5rem;
    }
    .language-switcher-container {
        margin: 0 0 0 3.5rem;
    }
} /* end min-width: 1200px */

@media (min-width: 1400px) {
	
} /* end min-width: 1200px */

/* WP STANDARD */
.aligncenter,
div.aligncenter {
    display: block;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.alignright {
		float:right;
	}
	.alignleft {
		float: left;
	}

	a img.alignright {
		float: right;
	}

	a img.alignleft {
		float: left;
	}
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

blockquote:not(.tiktok-embed) {
	position: relative;
    background: #fff;
    border-left: 2px solid #e41d24;
    padding: 2rem 1rem 2rem 3rem;
    margin: 0 0 2rem 1rem;
}
blockquote:not(.instagram-media):not(.twitter-tweet):not(.tiktok-embed):after {
    font: 900 2.3rem/4rem 'Font Awesome 5 Free';
	content: "\f10e";
    background-color: #fff;
    opacity: 1;
    z-index: 0;
    position: absolute;
    top: calc(50% - 20px);
    left: -20px;
    width: 40px;
    height: 40px;
	text-align: center;
	transform: scaleX(-1);
	color: #e41d24;
}
blockquote p:last-child {
    margin: 0;
}
/* embed center alignment */
.twitter-tweet { margin:auto !important; display: block; }
.iframe-container { text-align: center; }
.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.embed-responsive-16by9 {
	padding-bottom: 56.25%;
}
