/**
* template:  Blend&Buzz

TABLE OF CONTENTS

      + Global
	  + Header
	  + Header Content
	  + About Us
	  + Services
	  + Menu
	  + Banner
	  + Booking
	  + Testimonials
	  + Contacts

      
*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import 'scrollCue.css';

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
   --color-dark: #0D0D0F;
   --color-dark-gray: #1F1F24;
   --color-gold: #E6B450;
   --color-dark-gold: #B5835A;
   --color-white: #FFFFFF;
}

@-webkit-keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

 ::-moz-selection {
	background-color: var(--color-gold);
	color: var(--color-dark);
}

 ::selection {
	background-color: var(--color-gold);
	color: var(--color-dark);
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
	line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
    color: var(--color-white);
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 20px;
}

.align-center {
	text-align: center;
}

.btn {
	padding: 15px 30px;
	background-color: transparent;
	color: var(--color-gold);
	text-transform: uppercase;
    border-radius: 3px;
	border: 1px solid var(--color-gold);
}

.btn:hover {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.flex { 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
}

.suptitle {
	display: inline-block;
	color: var(--color-gold);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-gold);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.signature-content h3{
   font-family: 'Playfair Display', serif;
   font-size: 30px;
   font-style: italic;
   font-weight: 500;
   letter-spacing: 1px;
   color: #fff;
   
}
/* Sprachauswahl Anfang*/

.lang-desktop {
   display: flex;
   align-items: center;
   margin-left: 20px;
}

.lang-switcher {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 4px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.12);
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.18);
   box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.lang-switcher a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 42px;
   height: 34px;
   padding: 0 14px;
   border-radius: 999px;
   text-decoration: none;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 0.5px;
   color: #ffffff;
   transition: all 0.3s ease;
}

.lang-switcher a:hover {
   background: rgba(255, 255, 255, 0.14);
   transform: translateY(-1px);
}

.lang-switcher a.active {
   background: #ffffff;
   color: #111111;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-mobile {
   display: none;
}
	  
/* Sprachauswahl Ende*/


#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-gold);
}

#closemenu {
	float: right;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px;
	background-color: var(--color-gold);
	color: var(--color-white);
	font-size: 18px;
}

#scroll-top:hover {
	background-color: var(--color-dark-gold);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color:  rgba(255, 255, 255, 0.5);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-gold);
	font-size: 20px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark-gray);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	width: 44px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.res-booking {
	margin-top: 30px;
	margin-left: 10px;
	display: none;
	font-size: 16px;
	margin-top: 20px;
}

.res-booking .error {
	color: #ff0000;
}

.res-booking .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER   
*
***************************************/


.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

#logo {
   margin-right: 20px;
   outline: none;
   border: none;
}

#logo img {
   max-width: 100%;
    outline: none;
   border: none;
}

.wrapper-top-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 5px;
    color: var(--color-white);
}

.wrapper-top-header i {
    margin-right: 10px;
}

.wrapper-header {
	padding-top: 5px;
	padding-bottom: 15px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-menu {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.header-menu li {
   float: left;
   margin-left: 30px;
}

.header-menu>li a {
	color: var(--color-white);
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-menu>li a:hover {
	color: var(--color-gold);
}


/**************************************
*
*         HEADER CONTENT
*
***************************************/


.wrapper-header-content {
	min-height: 900px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
  background-attachment: fixed;
	background-size: cover;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


/**************************************
*
*        ABOUT US
*
***************************************/


.wrapper-aboutus {
     -webkit-box-align: center;
         -ms-flex-align: center;
             align-items: center;
}

.aboutus-img {
	width:calc(50% - 50px);
	margin: 25px;
	position:relative;
}

.experiense {
	 position: absolute;
	 bottom: -20px;
	 right: -20px;
	 background-color: var(--color-gold);
	 padding: 40px 30px;
	 color: var(--color-white);
	 -webkit-box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25);
	         box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25);
}

.experiense .counter {
	font-size: 50px;
	font-weight: 700;
} 

.aboutus-content {
	width: 50%;
	padding:50px;
	background-color: var(--color-dark-gray);
	-webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-signature {
	margin-top: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 50px;
}

.wrapper-signature img {
	max-width: 180px;
	margin-right: 10px;
}

.wrapper-signature h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.wrapper-signature p {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--color-gold);
}


/**************************************
*
*        SERVICES
*
***************************************/


.single-service {
	width: calc(25% - 20px);
	margin: 10px;
	padding: 40px 20px;
	background-color: var(--color-dark-gray);
}

.single-service h3 {
	margin-bottom: 10px;
}

.single-service img {
	max-width: 64px;
	height: auto;
	margin: 0 auto 30px auto;
}


/**************************************
*
*         MENU
*
***************************************/


.list-menu {
	width: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.list-menu li {
	margin:10px;
}

.list-menu li a {
	text-transform: uppercase;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 700;
}

.list-menu li a:hover {
	color: var(--color-gold);
}

.list-menu .active {
	color: var(--color-gold);
}

.wrapper-menu {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.menu-item .single-product  {
	width: calc(25% - 20px);
	margin: 10px;
	background-color: var(--color-dark-gray);
}

.wrapper-menu {
	margin-bottom: 30px;
}

.single-product-img {
	position: relative;
	display: block;
	border: none;
	outline: none;
}

.single-product-img:hover .overlay {
    opacity: 1;
}

.single-product-content {
	padding: 40px 10px;
}

.single-product-content h3 {
	color: var(--color-white);
	margin-bottom: 10px;
}

.single-product-content span {
	font-size: 20px;
	display: inline-block;
	margin-top: 20px;
	color: var(--color-gold);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color:  rgba(13, 13, 15, 0.4);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-gold);
	font-size: 20px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}


/**************************************
*
*        BANNER
*
***************************************/


#banner h2 {
	font-size: 60px;
}


/**************************************
*
*         BOOKING   
*
***************************************/


#booking {
	width: 100%;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.wrapper-booking {
	width: 50%;
	padding: 100px 50px;
	background-color: var(--color-dark-gray);
}

form {
	margin-top: 50px;
}

input, textarea {
	outline: none;
	border: none;
	padding: 15px;
	border: 1px solid var(--color-gold);
	color: var(--color-white);
    font-size: 16px;
	background-color: transparent;
	display: block;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	border-radius: 3px;
}

textarea {
    min-height: 150px;
	width: 100%;
	margin-bottom: 20px;
}

::-webkit-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-moz-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

:-ms-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-ms-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

input:focus, textarea:focus {
		border: 1px solid var(--color-dark-gold);
}

.wrapper-input {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-input input {
   width: calc(50% - 10px);
   margin-bottom: 20px;
}

#sendmessage {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials h2 {
	color: var(--color-white);
}

.wrapper-testimonials {
	max-width: 1000px;
	margin-top: 50px;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.single-testimonials p {
	margin-bottom: 20px;
	color: var(--color-white);
}

.wrapper-author h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-author p {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-white);
}

#testimonials .owl-carousel.testimonials-carousel .owl-item {
	height: auto;
}

#testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

#testimonials .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-gold);
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
    margin: 5px 7px;
    background: var(--color-dark-gold);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    border-radius: none;
}


/**************************************
*
*         CONTACTS
*
***************************************/


#contacts {
	background-color: var(--color-dark-gray);
}

#contacts h2 {
	color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
}

.wrapper-contact>div .social-link {
	margin-left: 0px;
}

.wrapper-contact>div .social-link li {
	margin-left: 0px;
	margin-right: 15px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
	color: var(--color-white);
}

.wrapper-contact>div h3 {
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-contact>div a {
	color: var(--color-gold);
}

.wrapper-contact>div a:hover {
      color: var(--color-dark-gold);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}
/* Booking form calculation check */
.captcha-row {
   margin: 18px 0 22px;
}
.captcha-row label {
   display: block;
   margin-bottom: 8px;
   color: rgba(255,255,255,.82);
   font-size: 14px;
   letter-spacing: .03em;
}
.captcha-row input[type="number"] {
   width: 100%;
}
.website-field {
   position: absolute !important;
   left: -9999px !important;
   width: 1px !important;
   height: 1px !important;
   opacity: 0 !important;
   pointer-events: none !important;
}
.res-booking .error { color: #ffb3a8; }
.res-booking .send { color: #bff0c5; }

/* Gold native date/time picker icons */
.booking-form input[type="date"],
.booking-form input[type="time"] {
   color-scheme: dark;
}
.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
   cursor: pointer;
   opacity: 1;
   filter: invert(76%) sepia(44%) saturate(582%) hue-rotate(359deg) brightness(94%) contrast(91%);
}
.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
   filter: invert(85%) sepia(45%) saturate(650%) hue-rotate(358deg) brightness(105%) contrast(96%);
}


/* Rossini final select field styling */
.booking-form select {
   width: 100%;
   height: 60px;
   padding: 0 18px;
   border-radius: 16px;
   border: 1px solid rgba(232,189,98,.42);
   background: rgba(255,255,255,.045);
   color: #ffffff;
   font-size: 16px;
   outline: none;
}
.booking-form select:focus {
   border-color: #e8bd62;
   box-shadow: 0 0 0 4px rgba(232,189,98,.12);
}
.booking-form select option {
   background: #121116;
   color: #ffffff;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
   color: rgba(255,255,255,.66);
}


/* Final booking form polish */
.booking-note {
   margin: -6px 0 18px;
   color: rgba(255,255,255,.70);
   font-size: 13px;
   line-height: 1.5;
}
.captcha-row {
   margin: 20px 0 24px;
   padding: 18px;
   border: 1px solid rgba(232,189,98,.30);
   border-radius: 18px;
   background: rgba(255,255,255,.045);
}
.captcha-row label {
   color: #e8bd62;
   font-size: 15px;
   font-weight: 700;
   letter-spacing: .02em;
}
.captcha-question {
   margin: 10px 0 12px;
   color: #ffffff;
   font-size: 24px;
   line-height: 1;
   font-weight: 700;
   letter-spacing: .04em;
}
.captcha-row input[type="number"] {
   background: rgba(0,0,0,.18);
}


/* Premium Top Phone */
.top-phone {
    display: flex;
    align-items: center;
}

.top-phone a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(232,189,98,.18);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.top-phone a:hover {
    background: rgba(232,189,98,.12);
    border-color: rgba(232,189,98,.45);
    transform: translateY(-1px);
}

.top-phone i {
    color: #e8bd62;
    font-size: 13px;
}

.top-phone span {
    letter-spacing: .4px;
}
