:root {
    --container-max: 1280px;
    --border-radius: 20px;
    --border-radius-small: 8px;
    --tst: bottom 0.8s ease 0s;
}

body.dark-mode {
    --font-color: white;
    --body-bg: rgb(0 0 0);
    --body-color: white;
    --box-bg: rgb(179, 179, 179);
    --image-bg: rgb(130, 130, 130);
    --image-main-bg: rgba(77 77 77 / 0.5);
    --box-shadow : 0 4px 8px 0 rgba(0, 0, 0, 0.37), 
  0 6px 20px 0 rgba(0, 0, 0, 0.80);
    --special-box-shadow : 0 4px 8px 0 rgba(248 241 182), 
  0 6px 20px 0 rgba(255 235 59);
    --page-box:  rgb(50, 0, 0, 0.5);
    --light-shadow : 4px 3px 9px 2px rgb(218 218 218);
}

body.light-mode{
    --font-color: black;
    --body-bg : rgb(231 231 231);
    --body-color: black;
    --box-bg: rgb(86 86 86);
    --image-bg: rgba(235, 235, 235, 0.7);
    --image-main-bg: rgba(0 0 0 / 0.2);
    --box-shadow: 0 4px 8px 0 rgb(255 255 255 / 0.63), 0 6px 20px 0 rgb(255 255 255 / 0.2);
    --special-box-shadow : 4px 12px 16px 0 rgb(2, 14, 73), 10px 12px 20px #0e003f;
    --page-box: rgb(195 255 255 / 0.5);
    --light-shadow : 14px 11px 16px 0px rgb(44 44 44);
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--font-color);
    background: var(--body-bg);
    height: 100dvh;
    width: 100%;
    scroll-behavior: smooth;
    font-family: textFont, sans-serif;
    font-weight: 300;
}
#dark-mode-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #0c0c0c;
    color: #ffffff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}
body.light-mode #dark-mode-toggle {
    background-color: #313131;
}
/*****************  SLIDER  *********************/
.container-wrapper{
	width: 100%;
	max-width: var(--container-max);
    height: 25dvh;
	margin-inline: auto;
}
.swiper {
	width: 100%;
	max-width: 1240px;
	padding-top: 10px;
	padding-bottom: 10px;
	overflow-x: hidden;
}
.swiper-slide {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 200px;
    height: 30dvh;
	max-height: 240px;
	border-radius: 10px;
	overflow: hidden;
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgb(0, 0, 0), rgb(255 255 255 /0));
	border-right: 1px solid #000;
	border-radius: 10px;
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, #000, rgba(255, 0, 0, 0));
	box-shadow: 0 0 0 1px #000;
	border-radius: 10px;
}
body.light-mode .swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, #959595, rgba(255, 255, 255, 0));
	border-right: 1px solid #000;
	border-radius: 10px;
}
body.light-mode .swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, #959595, rgba(255, 0, 0, 0));
	box-shadow: 0 0 0 1px #000;
	border-radius: 10px;
}
.swiper-slide .info {
	position: absolute;
	width: calc(65% + 2px);
	height: calc(65% + 2px);
	text-align: center;
	background: linear-gradient(180deg, #fff0 0, #0008 50px), linear-gradient(180deg, #fff0 , #0009);
	padding-top: 30px;
	left: 17%;
    font-weight: 700;
	bottom: calc(-100% - 3px);
	box-sizing: border-box;
	transition: var(--tst);
}
.swiper-slide-active .info {
	bottom: 0;
	transition: var(--tst);
}
.info span {
	width: 80%;
	display: inline-block;
	box-sizing: border-box;
	color: red;
	font-weight: 900;
	text-align: center;
	position: relative;
    font-size: clamp(1.2rem, 1.0439rem + 0.7805vw, 1.6rem);
	border-radius: 2em;
	transition: all 0.3s ease-in-out;
}
.info span span{
    font-size: clamp(0.875rem, 0.5847rem + 0.6452vw, 1.125rem);
    color: white;
    font-weight: 500;
    width: 100%;
}
.swiper-slide:hover span{
	color: gold;
}
.swiper-slide:hover span span{
	color: red;
    font-weight: 700;
}


/**************** INDEX.PHP *****************/
.mainscreen{
    display: flex;
    flex-direction: column;
    height: 100dvh;
    width: 100dvw;
    max-width: var(--container-max);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-inline: auto;
}
.lowerscreen{
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}
.banner-text{
    font-family: tbFont;
    color:red;
    text-align: center;
    font-size: clamp(1.5rem, 0.5244rem + 4.878vw, 4rem);
}
.animate-character{
    text-transform: uppercase;
    font-size: clamp(0.75rem, 0.6524rem + 0.4878vw, 1rem);
    background-image: linear-gradient(
    -150deg,
    #58ff2f 0%,
    #efe0ff 39%,
    #ff1361 67%,
    #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
body.light-mode .animate-character{
    background-image: linear-gradient(
    -150deg,
    #000000 0%,
    #7b00ff 39%,
    #0400ff 67%,
    #ff0000 100%
    );
}
.animate-character.anim1{
    animation: textclip 3s backwards infinite;
}
.animate-character.anim2{
    animation: textclip 3s forwards linear infinite;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.welcome-grid-mobile, .welcome-grid-tablet,.welcome-grid{
    display: none;
}
.welcome-grid{
    grid-template-columns: repeat(3, 30%);
    column-gap: 3%;
    justify-items: center;
    justify-content: center;
}

.welcome-grid-mobile{
    flex-direction: column;
    row-gap: 30px;
    margin-top: 15px;
}
.welcome-grid-tablet{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    justify-content: space-around;
}
.gm1{
    display: grid;
    grid-template-columns: 30% 65%;
    column-gap: 4%;
    align-items: center;
    margin-bottom: 15px;
}
.gm2{
    display: grid;
    grid-template-columns: 65% 30%;
    column-gap: 4%;
    align-items: center;
}
.mobile-text{text-align: center;}
.tablet-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 25px;
    justify-content: space-evenly;
}
.tablet-right >h2{
    text-align: center;
    max-width: 30dvw;
    text-wrap: balance;
}
.mobile-pic-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
}
.welcome-grid-block{
    text-align: center;
    text-wrap: balance;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border-radius-small);
    padding: 5px 0px;
}
.welcome-grid-video{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.welcome-grid-video video{
    height: 80%;
}
.welcome-grid-block h2{
    font-size: clamp(1rem, 0.5645rem + 0.9677vw, 1.375rem);
    margin-bottom: 10px;
    max-width: 30ch;
    white-space: pre-wrap;
}
.welcome-grid img{
    background-position: center;
    aspect-ratio: 4/3;
    background-size: contain;
    height: auto;
    width: 25dvw;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
}
.welcome-grid video{
    aspect-ratio: 9/16;
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
}


/*************************************************************/
/******************     PAGES      ***************************/
/*************************************************************/
.pagescreen{
    display: flex;
    flex-direction: column;
}
.banner-wrap{
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: clamp(0.9rem, 0.6333rem + 1.3333vw, 1.5rem);
    z-index: 99999;
}
body.dark-mode .banner-wrap{
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(13, 0, 0, 1) 14%, rgba(23, 0, 0, 1) 23%, rgba(30, 0, 0, 0.5) 100%);
}
body.light-mode .banner-wrap{
background: #ffffff;
background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.banner-page-text{
    font-family: tbFont;
    color:red;
    text-align: center;
    font-size: 4rem;
    /* font-size: clamp(1.2rem, 0.4rem + 4vw, 3rem); */
    transition: all 0.4s ease-in-out;
}
.banner-page-text:hover{
    color: rgb(255, 0, 247);
}
.outputscreen{
    display: none;
    flex: 1;
    flex-direction: column;
    margin-inline: 1.5rem;
    line-height: 2rem;
    margin-top: 160px;
}
.screen-title{
    height: 56px;
    width: auto;
    margin-inline: auto;
}
.page-flex-1column,
.page-flex-2columns,
.page-flex-3columns{
    display: flex;
    column-gap: 50px;
    margin-bottom: 40px;
    justify-content: center;
}

.one-image-wrapper{
    display: grid;
    grid-template-columns: 1fr; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px;
    background-color: var(--image-bg);
    overflow: hidden;    
}
.two-image-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 35px; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px;
    background-color: var(--image-main-bg);
    overflow: hidden;
}
.three-image-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px;
    background-color: var(--image-main-bg);
}

.two-image-wrapper.video{
    padding: 15px 0;
}
.two-image-wrapper.video >div{
    width: 60%;
}

.one-image-wrapper img,
.two-image-wrapper img,
.three-image-wrapper img{
    height: 100%; 
    object-fit: cover;
    object-position: center;
}
.one-image-wrapper.video video{
    width: 100%;
    height: auto;
}
.two-image-wrapper.full{
    width: 60dvw;
    margin-inline: auto;
}

.page-flex-2columns.map{
    width: var(--container-max);
}
.page-flex-2columns.full{
    width: 80dvw !important;
    margin-left: 10%;
}

.page-flex-2columns.small{
    width: fit-content;
    margin-inline: auto;
}
.page-flex-3columns{
    column-gap: 50px;
}

/**************** HAPPY HOUR *************/
.three-image-wrapper.happy{
    display: grid;
    grid-template-columns: repeat(3, 27%); 
    gap: 3dvh; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    margin-bottom: 30px;
    justify-content: space-around;
}
/**************** EVENTS *************/
.three-image-wrapper.events{
    display: grid;
    grid-template-columns: 25% 40% 25%; 
    gap: 3dvh; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    background-color: var(--image-main-bg);
    margin-bottom: 45px;
    justify-content: space-around;
}
/**************** SPECIALS *************/
.three-image-wrapper.specials{
    display: grid;
    grid-template-columns: 20% 50% 20%; 
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    margin-bottom: 45px;
    justify-content: space-around;
    width: 80%;
    margin-left: 10%;
}
.one-image-wrapper.round{
    box-shadow: var(--light-shadow);
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
    background-color: var(--image-bg);
    overflow: hidden;
    position: relative;     
}
.one-image-wrapper.round a img{
    height: 100%;
    width: 100%;
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
    object-fit: contain;
    display: block;
}

/************* LOYALTY **************/
.two-image-wrapper.loyal{
    width: 70%;
    margin-inline: auto;
}
.three-image-wrapper.loyal{
    width: 100%;
    margin-inline: auto;
}
/************ FIND US ***************/
.standard-grid{
    display: grid;
    grid-template-columns: repeat(2,49%);
    column-gap: 2%;
    justify-content: space-between;
    margin-bottom: 20px;
}
.google-map{
    display: flex;
    justify-content: center;
    box-shadow: var(--light-shadow);
    border-radius: var(--border-radius);
    width: 100%;
}
.find-box{
    display: grid;
    grid-template-columns: 45px 1fr;
    width: 100%;
    column-gap: 10px;

    background-color: var(--image-bg);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    font-weight: 500;
    box-shadow: var(--light-shadow);
    align-items: center;
}
.find-box > div{
    line-height: 1.8rem;
}
.flogo{
    width: 40px;
    height : 40px;
    border-radius: 0;
}
.find-box a, .find-box a:visited{
    color: var(--font-color);
}
.find-box a:hover{
    font-weight: 700;
    text-decoration: underline;
}
/******************************/
/***   GALLERY              ***/
/******************************/

ul,li {list-style: none;}
.gallery-grid img {
  max-width: 100%;
  display: block;
  height: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  align-items: stretch;
  justify-items: center;
  row-gap: 10px;
  column-gap: 20px;
  margin: 0;
  padding: 0;
}
img.lightb{
    cursor: zoom-in;
    box-shadow: var(--light-shadow);
}
.wide {grid-column: span 1;}
.tall {grid-row: span 2;}

/******************************/
/***   STAFF                ***/
/******************************/
.staff-block{
    display: grid;
    justify-content: space-between;
    grid-template-columns: 35% 60%;
    background-color: var(--image-main-bg);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    margin-bottom: 35px;
    box-shadow: var(--light-shadow);
}
.staff-bio{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.bio-name{
    font-size: clamp(1.25rem, 1.01rem + 1.2vw, 2rem);
    color: gold;
    font-weight: 900;
}
body.light-mode .bio-name{
    color: rgb(0, 5, 144);
    font-weight: 900;
}
.bio-function{
    font-size: clamp(1.125rem, 1.005rem + 0.6vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 244, 85, 0.9);
}
body.light-mode .bio-function{
    color: rgb(55, 55, 255);
    font-weight: 700;
}
.bio-comment{
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}
body.light-mode .bio-comment{
    color: purple;
    font-weight: 600;
}
.bio-pic{
    display: grid;
    grid-template-columns: repeat(3,30%);
    justify-content: space-between;
    align-items: center;
}
.bio-pic img{
    height: 100%; 
    aspect-ratio: 1/1;
    max-height: 20dvh;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    box-shadow: var(--light-shadow);
}


/********************************/
/***        DRINKS            ***/
/********************************/
.menu-box{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.menu-selector{
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.125rem);
    font-weight: 700;
    padding: 15px;
    background-color: rgb(255, 238, 141);
    color: black;
    border-radius: 10px;
    margin: 0 5px 5px 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.menu-selector:hover{
    background-color: grey;
    color: white;
}
.outputscreen.drinks{
    line-height: 1.6rem !important;
    margin-top: ;
}
.outputsub{
    display: none;
}
.category-title-wrap{
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}
.category-title{
    background-color: rgba(169, 22, 0, 0.8);
    font-size: clamp(1rem, 0.8889rem + 0.5556vw, 1.25rem);
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    width: 20ch;
    text-align: center;
}
body.light-mode .category-title{
    background-color: #656565;
}
.menu-wrapper{
    display: flex;
    flex-direction: column;
    max-width: var(--container-max);
    font-weight: 700;
    width: 100%;
}
.drinks-table td.col1{
    width: calc(100% - 7ch);
}
.drinks-table td.col2{
    width: 7ch;
}

.menu-grid3{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    column-gap: 3%;
    justify-content: center;
    background-color: var(--image-main-bg);
    padding: 15px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--light-shadow);
}


.return-box{
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px;
    display: flex;
    justify-content: center;
}
.filler-box{
    height: 130px;
}
.return-box img{
    height: 80px;
    width: auto;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    opacity: 0.5;
}
.return-box img:hover {
    height: 100px;    
    opacity: 1;
}


.devider{
    background-color: black;
    border-radius: 8px;
    width: 100%;
    height: 3px;
}


.menu-grid1{
    display: grid;
    grid-template-columns: 1fr;
    width: 60%;
    margin-left: 20%;
    background-color: var(--image-main-bg);
    padding: 15px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--light-shadow);
}

.menu-grid2{
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 2%;
    background-color: var(--image-main-bg);
    padding: 15px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--light-shadow);
}
.menu-grid2 > div{
    width: 100%;
    color: white;
}
body.light-mode .menu-grid2 > div{
    color: black;
}

.drinks-table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
.drinks-table td{
    border: 1px solid #dddddd;
    padding: 4px;
    font-size: clamp(0.875rem, 0.5847rem + 0.6452vw, 1.125rem);
}
body.light-mode .drinks-table td{
    border: 1px solid black;
}

.drinks-table td.col1{
    width: calc(100% - 7ch);
}
.drinks-table td.col2{
    width: 7ch;
}
.drinks-table td.col1 span{
    font-style: italic;
    color: goldenrod;
}
body.light-mode .drinks-table td.col1 span{
    color: blue;
}
.drinks-table tr:nth-child(even){
    background-color: #5f5f5f9e;
    color: #ffff99;
}
body.light-mode .drinks-table tr:nth-child(even){
    background-color: #9797979e;
    color: #000000;
}


