
:root {
  --semibold: 'NunitoSansSemibold', sans-serif;
  --bold: 'NunitoSansBlack', sans-serif;
  --red: rgba(220,0,0,1);
  --red50: rgba(220,0,0,0.5);
  --red20: rgba(220,0,0,0.2);
  --red0: rgba(220,0,0,0);
  --darkred: rgba(180,0,0,1);
  --black: rgba(0,0,0,1);
  --black50: rgba(0,0,0,0.5);
  --white: rgba(255,255,255,1);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--semibold);
    background: var(--black);
    color: var(--red);
    min-height: 100%;
    width: 100%;
    overscroll-behavior: none;
    overflow: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-anchor: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-size: 16px;
    background-color: var(--black);
    background-image: url('../../img/GalaxyLayer1.jpg');
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
/* body {
  transition: opacity 0.4s ease;
  opacity: 1;
} */
body.preloading {
  overflow: hidden;
}
#orientation-overlay, #preloader {
    position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--black);
  color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-size: 1rem;
  text-align: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  pointer-events: all;
}
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
a{
    text-underline-offset: 2px;
}
a, a:visited{
    color: var(--red);
}
a:hover, a:active{
    color: var(--darkred);
}
ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4 {
    font-weight: 400;
    color: var(--red);
    margin-block: 0;
}
h1 {
    font-size: clamp(3rem, 8.5vw, 12rem);
    line-height: 0.7;
    font-family: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
h2 {
    font-size: clamp(3rem, 6vw, 8rem);
    line-height: 0.7;
    font-family: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
h3, h4 {
    font-size: clamp(1rem, 1.75vw, 3rem);
    line-height: 1;
    font-family: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
h5, footer * {
    font-size: 1.25rem;
    line-height: 1;
    font-family: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.small{
    font-size: 18px;
}
main{
    min-height: 100dvh;
    min-height: calc(var(--vh) * 100);
    width: 100vw;
    position: relative;
    overflow: hidden;

}
section{
    position: relative;
}
footer{

}

.squeeze-center{
    transform: scaleX(0.8);
    transform-origin: center;
}
.squeeze-left{
    transform: scaleX(0.8);
    transform-origin: left;
}





/* .glow-text {
  text-shadow: 0 0 1px var(--red50), 0 0 2px var(--red50);
  animation: pulseGlow 5s ease-in-out infinite;
} */

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 1px var(--red50), 0 0 2px var(--red50);
  }
  50% {
    text-shadow: 0 0 8px var(--red50), 0 0 16px var(--red50);
  }
}
.blur-me {
  transition: filter 0.1s ease;
  will-change: filter;
}
.hidden{
    display: none;
}
.four-corner-squares{
    position: relative;
    border: 1px solid var(--red);
}
.four-corner-squares span{
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--red);
}
.four-corner-squares span:nth-child(1) { top: 0; left: 0; transform: translate(-5px, -5px);}
.four-corner-squares span:nth-child(2) { top: 0; right: 0; transform: translate(5px, -5px);}
.four-corner-squares span:nth-child(3) { bottom: 0; left: 0; transform: translate(-5px, 5px);}
.four-corner-squares span:nth-child(4) { bottom: 0; right: 0; transform: translate(5px, 5px);}

.deviderbox.four-corner-squares{
    border-bottom: 0;
}
.deviderbox.eighty{
    width: 80vw;
    margin: 0 10vw;
    height: 0;
}
.deviderbox.ninety{
    width: 90vw;
    margin: 0 5vw;
    height: 0;
}

.galaxy-background-layer2{
    background-image: url('../../img/GalaxyLayer2.png');
    /* background-repeat: no-repeat; */
    background-position: center center;
    background-size:cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none !important;
}

.galaxy-background-layer3{
    background-image: url('../../img/GalaxyLayer3b.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size:cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none !important;
}

.galaxy-background-toplayer{
    background-image: url('../../img/toplayer2.png');
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none !important;
    width: 100vw;
    overflow: hidden;
    height: 20000px;
}






section#hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hero-elements{
    text-align: center;
    margin: 0 5vw;
}
#hero-elements > * {
    position: relative;
}

section#hero .hero-videocontainer{
    width: 70%;
    max-height: 70dvh;
    max-height: calc(var(--vh) * 70);
    aspect-ratio: 16 / 9;
    background-color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--semibold);
    transform: translateY(-2px);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-poster-mobile {
    display: none;
}

section#gisela, section#rates{
    padding: 10vw 0;
}

.replace-o {
  display: inline-block;
  width: 0.5em;
  height: 0.6em;
  overflow: visible;
  text-indent: -9999px; /* visually hide the letter */
  position: relative;
}

.replace-o::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 320%;
  height: 320%;
  transform: translate(-50%, -50%);
  background-image: url('../../img/star_headline1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}






section#star-map{

}
#sky{
    width: 100%;
    height: 100%;
    /* height: calc(var(--vh) * 2.5); */
    z-index: 5;
    position: absolute;
    pointer-events: none;
}
.star-wrapper {
  position: absolute;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  pointer-events: all;
  z-index: 2;
}
.star {
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
  border: 1px solid var(--red0);
}
.star-wrapper:hover .star, .star:hover {
  border: 1px solid var(--red);
}
.star-wrapper:hover {
  z-index: 3;
}
.star-info2 {
  position: absolute;
  top: 3rem;
  left: 3rem;
  padding: 0.5rem;
  white-space: nowrap;
  /* display: none; */
  border: 1px solid var(--red);
  border-radius: 4px;
  z-index: 2;
  background-color: var(--black);
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    width 0.4s ease,
    height 0.4s ease 0.4s,
    opacity 0.4s ease;
}
.star-wrapper.left-align .star-info2 {
  left: auto;
  right: 3rem;
}
.star-wrapper:hover .star-info2 {
  width: clamp(10rem, 20vw, 16rem);
  height: auto; /* auto can't be animated, so we'll fix this below */
  max-height: 50dvh;
  max-height: calc(var(--vh) * 50);
  opacity: 1;
}
.star-info2 h5{
    margin: 0.5rem 0;
}
.star-info2 .address{
    margin-bottom: 1rem;
    display: inline-block;
}
.star-info2 h5,
.star-info2 .address {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.star-icon-container{
    margin-bottom: 1rem;
}
.star-icon{
    height:2rem; 
    vertical-align:middle;
}

.starMap-textblock{
    position: absolute;
    width: clamp(10rem, 20vw, 16rem);
    font-size: 20px;
}
#big-star-container {
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 300dvh;
    height: calc(var(--vh) * 300);
    margin-top: -50dvh;
    margin-top: calc(var(--vh) * -50);
    pointer-events: none;
    z-index: 1;
 }
#big-star {
    position: absolute;
    top:0;
    left:0;
    width: 40vw;
    height: 40vw;
    transition: transform 0.3s ease;
    z-index: 10;
}






#slider-container{
    width: 100vw;
    height: 100dvh;
    height: calc(var(--vh) * 100);
    /* background-color: blue; */
    position: absolute;
    top:0;
}
#slider-container.active{
    position: fixed;
}

.drawer{
    display: flex;
    width: max-content;
    position: absolute;
}
.drawer > * {
    /* border: 1px solid green; */
    margin-top: 0;
    margin-left: 10vw;
    object-fit: contain
}

#slider-image-container{
    position: relative;
    height: 50dvh;
    height: calc(var(--vh) * 50);
    width: 100vw;
    margin-top: 12dvh;
    margin-top: calc(var(--vh) * 12);
    /* background-color: chocolate; */
    /* overflow: hidden; */
}
#slider-image-container .drawer{
    height: 100%;
}
#slider-image-container img{
    height: 100%;
}

#slider-paragraph-container{
    position: relative;
    height: 30dvh;
    height: calc(var(--vh) * 30);
    width: 100vw;
    /* background-color: green; */
}
#slider-paragraph-container .drawer > * {
    padding-top: 3rem;
    width: 40vw;
    height: 100%;
    /* background-color: darkviolet; */
}
#slider-headline-container{
    position: absolute;
    top: 0;
    margin-top: 37dvh;
    margin-top: calc(var(--vh)* 37);
    height: 0;
    width: 100vw;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}
#slider-headline-container.inactive{
    opacity: 0;
}
#slider-headline-container .drawer{
    margin-left: 100vw;
    margin-right: 100vw;
    height: 100%;
}
#slider-headline-container p {
    font-size: clamp(6rem, 36vw, 34rem);
    line-height: 0.7;
    font-family: var(--bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* transform: scaleX(0.8); */
    margin-left: 0;
    margin-right: 10vw;
    display: flex;
    align-items: center;
}




#gisela-header{
    width: 80vw;
    margin: 0 10vw;
    display: flex;
    justify-content: space-between;
}

#gisela-header #headline-container{
    width: 50%;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
#gisela-header #gisela-headline{
    transition: transform 0s linear;
    transform: translateY(0px);  
}
#gisela-header #image-container{
    overflow: hidden;
}
#gisela-header #gisela-image{
    height: 30dvh;
    height: calc(var(--vh) * 30);
    transition: transform 0s linear;
    transform: translateY(0px);   
}
#gisela-content{
    width: 80vw;
    margin: 3rem 10vw 3rem 10vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
}
#gisela-content .block{
    width: 36vw;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid var(--red);
    border-radius: 5px;
    gap: 2vw;
    background-color: var(--black50);
    z-index: 10;
}
#gisela-content .block *:not(.playButton){
    flex-shrink: 20;
}



#rates-header{
    width: 60vw;
    margin: 0 20vw 3rem;
    text-align: center;
}
#rates-content{
    width: 60vw;
    margin: 0 20vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
#rates #star-box{
    border: 1px solid var(--red);
    border-radius: 5px;
    gap: 2vw;
    background-color: var(--black50);
    z-index: 10;
    position: relative;
}
#rates #answer-box h4 a{
    color: var(--black);
}
#rates #stars{
    width: 100%;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
#rates #stars img{
    width: 10vw;
    cursor: pointer;
}
#rates #comments{
    position: relative;
    width: 100%;
    height: 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
#rates #comments-drawer{
    top: 2rem;
    transition: top 0.3s;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
}
#rates #comments-drawer > * {
    height: 2rem;
}
#rates #answer-box{
    margin-top: 1rem;
    width: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 6rem;
    border-radius: 5px;
    gap: 2vw;
}
#rates #answer-box-drawer{
    top: 6rem;
    transition: top 0.3s;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
}
#rates #answer-box-drawer > *{
    height: 6rem;
    background-color: var(--red);
    color: var(--black);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#rates #answer-box h4{
    color: var(--black);
}
.button-star {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('../../img/star_red4_little.svg');
    background-size: cover;
    pointer-events: none;
    animation: disperse 800ms ease-out forwards;
    z-index: 1000;
}
@keyframes disperse {
    0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    }
    100% {
    transform: translate(var(--x), var(--y)) scale(0.5);
    opacity: 0;
    }
}

.restaurant-hero {
    margin-top: 9em;
    margin-bottom: 3em;
}
.restaurant-map {
    width: 80%;
    max-width: 1250px;
    margin: auto;
    aspect-ratio: 640/347;
}
.restaurant-map span {
    z-index: 1;
}
.restaurant-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.restaurant-intro-text {
    margin-top: 6em;
    text-align: center;
    z-index: 1;
}
.restaurant-intro-text p {
    width: 45%;
    max-width: 710px;
    margin: auto;
}


section#restaurant-list-intro {
  margin-bottom: calc(var(--vh) * 5);
  padding-top: calc(var(--vh) * 15);
}

#header-info-container,
#filterbox,
#filter-image-container,
#list-container {
  margin: 0 5vw;
}

#filterbox {
  margin-bottom: 1rem;
  position: relative;
}

.filter-popup {
  position: absolute;
  background: var(--black);
  border: 1px solid var(--red);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 0.3rem;
  z-index: 10;
  display: none;
}

.filter-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.5rem;
  width: 100%;
}

.checkboxAndCount {
  display: flex;
  flex-direction: row; /* ensure horizontal order: count then checkbox */
  align-items: center;
  gap: 0.3rem;
}

.checkboxAndCount .count {
  padding-left: 3rem;
}

.checkbox {
  width: 1rem;
  height: 1rem;
  display: block;
}

.checkbox,
.filter-option img.checkbox {
  width: 1rem;
  height: 1rem;
}

.filter-stars{
    display: flex;
    align-items: center;
}

.filter-stars img{
    height: 1.5rem;
    width: 1.5rem;
}

#filter-image-container {
  overflow: hidden;
  max-height: calc(var(--vh) * 100);
  position: relative;
  transition: max-height 0.3s ease-in-out;
  margin-top: 1rem;
}

#filter-image-container.loading {
  max-height: 3rem;
}

#filter-image-container img {
  width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#filter-image-container.loading img {
  opacity: 0;
}

#loading-indicator {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  position: absolute;
  top: 0;
  width: 100%;
}

#empty-indicator {
  display: flex;
  justify-content: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  position: absolute;
  width: 100%;
  margin-bottom: 2rem;
}
#empty-indicator.active{
    opacity: 1;
}

#filter-image-container.loading #loading-indicator {
  opacity: 1;
}

#list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.restaurant-box {
  padding: 0.5rem;
  border: 1px solid var(--red);
  border-radius: 4px;
  background-color: var(--black);
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.restaurant-box h5,
.restaurant-box .address {
  margin: 0.5rem 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.restaurant-box .address {
  margin-bottom: 1rem;
  display: inline-block;
}

.restaurant-box.fade-in-init {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.restaurant-box.fade-in-init.visible {
  opacity: 1;
  transform: translateY(0);
}





footer{
    width: 100vw;
    margin-top: 5dvh;
    margin-top: calc(var(--vh) * 5);
    display: flex;
    justify-content: stretch;
    border-top: 1px solid var(--red);
}
footer > div:not(div:last-child) {
    border-right: 1px solid var(--red);
}
footer > div {
  flex: 1 1 0; /* shorthand for flex-grow:1; flex-shrink:1; flex-basis:0 */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 0; /* <- important to allow shrinking */
}
footer > div:nth-child(2) {
  flex-grow: 2;
}
footer img {
    height: 8vw;
    width: auto;
  /* max-width: 100%; */
}
footer #description * {
    margin: 0;
}
footer a{
    text-decoration: none;
}
footer li:not(li:last-child){
    margin-bottom: 0.5rem;
}




.video-overlay {
    position:fixed; 
    inset:0; 
    /* background-color:black;  */
    display:flex; 
    align-items:center; 
    justify-content:center; 
    z-index:100;
    top: 0;
    transition: top 0.3s;
    height: 100dvh;
    height: calc(var(--vh) * 100);
    width: 100vw;
    backdrop-filter: blur(4px);
}
.video-overlay.out {
    top: 120lvh !important;
}
#video-frame-container{
    position: relative;
    background-color: var(--black);
    aspect-ratio: 16 / 9;
    max-width: 90vw;
}
#video-frame-container iframe{
    margin: 0;
}






#orientation-overlay{
    display: none;
}
#debug{
    position: fixed;
    display: inline-block;
    bottom:0;
}
.button{
    font-family: var(--bold);
    position: relative;
    background-color: var(--black);
    border: 1px solid var(--red);
    overflow: hidden;
    height: fit-content;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}
.playButton{
    position: relative;
    background-color: var(--black);
    border: 1px solid var(--red);
    border-radius: 3px;
    overflow: hidden;
    height: fit-content;
    cursor: pointer;
}
.playButton > * {
    display: flex;
}
a.button {
    text-decoration: none;
    color: var(--red);
}
.button .button-content-init, .playButton .button-content-init{
    padding: 0.5rem;
}
.playButton img{
    height: 2.5rem;
    aspect-ratio: 4 / 3;
}
.button .button-content-hover{
    position:absolute;
    padding: 0.5rem;
    bottom: 2.5rem;
    background-color: var(--red);
    color: var(--black);
    transition: bottom 0.3s;
}
.playButton .button-content-hover{
    position:absolute;
    padding: 0.5rem;
    bottom: 4rem;
    background-color: var(--red);
    color: var(--black);
    transition: bottom 0.3s;
    display: flex;
}
.button:hover .button-content-hover, 
.playButton:hover .button-content-hover,
.button.active .button-content-hover{
    bottom:0;
}
.button:active, .playButton:active{
    box-shadow: 0px 0px 0px 1px var(--red);
}
nav#top-nav{
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    float: right;
}
nav#top-nav > *{
    margin-left: 0.3rem;
}
#lang-switch{
    position: relative;
    display: block;
}

@media (max-width: 500px) {
    .restaurant-hero h1 {
       font-size: clamp(1.8rem, 8.5vw, 12rem);
       margin-bottom: -0.6rem !important;
    }
}
@media (max-width: 960px) {
    .restaurant-map {
       width: 90%;
    }
    .restaurant-intro-text p {
        width: 70%;
    }
}
@media (max-width: 760px) {
    body{
        font-size: 13px;
    }
    footer{
        flex-direction: column;
    }
    footer img {
            height: 22vw;
    }
    footer > div:not(div:last-child){
        border-right: none;
        border-bottom: 1px solid var(--red);
    }
    #video-frame-container{
        aspect-ratio: 9 / 16;
        max-height: 80svh;
    }
    #video-frame-container iframe{
        width: 100% !important;
        aspect-ratio: 9 / 16;
        height: unset !important;
    }
    section#hero .hero-videocontainer{
        aspect-ratio: 3 / 4;
    }
     .video-poster {
        display: none;
    }
    .video-poster-mobile {
        display: block;
    }
    #big-star-container {
        height: 300dvh;
        height: calc(var(--vh) * 300);
        margin-top: 0;
    }
    #big-star {
        position: absolute;
        width: 80vw;
        height: 80vw;
    }
    #slider-image-container{
        height: 40dvh;
        height: calc(var(--vh) * 40);
    }
    #gisela-header img{
        height: 40dvh;
        height: calc(var(--vh) * 40);
    }
    #gisela-header #headline-container{
        width: unset;
        margin-bottom: unset;
        display: unset;
        flex-direction: unset;
        justify-content: unset;
        align-items: unset;
        left: unset;
        position: absolute;
        top: -5dvh;
        top: calc(var(--vh) * -5);
    }
    .playButton img{
        height: 1.5rem;
    }
    #slider-paragraph-container .drawer > * {
        width: 80vw;
    }
    .small {
        font-size: 16px;
        line-height: 1.2;
    }
    .starMap-textblock {
        font-size: 16px;
        line-height: 1.2;
    }
    #gisela-content{
        margin: 1.5rem 10vw;
    }
    #gisela-content .block{
        width: 80vw;
    }
    #rates-header{
        width: 80vw;
        margin: 0 10vw 3rem;
    }
    #rates #stars{
        padding: 1rem;
    }
    #rates #stars img{
        width: 13vw;
    }
    #rates #comments{
        margin-bottom: 1rem;
    }
    #rates-content{
        width: 80vw;
        margin: 0 10vw;
    }
    #list-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .restaurant-map {
        width: 90%;
    }
    .restaurant-intro-text p {
        width: 80%;
    }
}

@media (min-width: 1400px) {
    section#hero .hero-videocontainer{
        width: 60%;
    }

    .restaurants-intro-text p {
        width: 60%;
    }
}

@media screen and (max-width: 850px) and (max-height: 450px) and (orientation: landscape) {
    #orientation-overlay {
        display: flex;
    }
}