@charset "utf-8";
@font-face {
    font-family: "Miama";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/miama.woff") format("woff");
}
@font-face {
    font-family: "MiamaNueva";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/miamanueva.woff") format("woff");
}
@font-face {
    font-family: "CalibriLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/calibrilight.woff") format("woff");
}
@font-face {
    font-family: "CalibriBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/calibribold.woff") format("woff");
}
/* reset/default rules */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--red: #eb2e2c;
	--light: #fce6df;
	--dark: #131313;
	--bg: #f7f7f7;
}
html {
    scroll-behavior: smooth !important;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img, :link img, :visited img {
	border: 0;
}
a, .inputbox {
	outline-width:0;
}
a {
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--red);
	position: relative;
    display: inline-block;
}
.header .mainMenu li.active a:after {
	width: 100%;
	transform: scaleX(1);
}
a:hover {
	text-decoration: none;
}
.button {
	border: 2px solid var(--red);
	padding: 10px 30px;
	font-weight: bold;
	background-color: var(--light);
}
.button:hover {
	background-color: var(--red);
	color: var(--light);
	transition: .3s all ease;
}
body {
	max-width: 1920px;
	margin: 0px auto;
	padding: 0px;
	height: 100%;
	font-family: CalibriLight;
	font-size: clamp(1rem, 2.5vw, 20px);
	letter-spacing: -0.5px;
	color: var(--dark);
	background-color: var(--bg);
}
html {
	height:100%;
	width:100%;
}
.innerBlock {
	max-width: 1440px;
	margin: 0 auto;
	border-bottom: 0;
}
.innerBlock2 {
	max-width: 1280px;
	margin: 0 auto;
	border-bottom: 0;
}
/* /reset/general rules */
/*---------------------------------------------------------------------------------------*/
/* base typography */
h1 {
	font-size: 3em;
}
h2{ font-size: 1.6em }
h3{ font-size: 1.4em }
h4{ font-size: 1.3em }
h5{ font-size: 1.2em }
h6{ font-size: 1em }
/* /base typography */
/* Buttons */
/* /Buttons */
/* Header */
.header {
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	z-index: 1;
}
/* Logo */
.logo img {
	width: 85%;
}
/* /Logo */
/* Menu */
.mainMenuWrapper {
    position: relative;
	top: -50px;
	right: -10px;
	width: 100%;
}
.mainMenuWrapper button {
	/*border: 2px solid var(--light);
	width: 100px;
	height: 100px;
	border-radius: 50%;*/
}
.menuToggle {
    display: block;
    font-size: 34px;
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 10px;
}
.mainMenu ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: -1;
}
.mainMenu ul li a {
	padding: 10px;
	color: var(--red);
	font-size: 1.1em;
	font-family: "MiamaNueva";
}
.mainMenu ul li a:hover {
	color: var(--red);
}
.menuToggle {
    display: block;
}
.mainMenu {
    position: absolute;
    bottom: 150px;
    right: 0;
    background: var(--light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    transition: .5s normal;
    opacity: 0;
}
.mainMenu.active {
    transition: all .5s ease;
    bottom: -510px;
    opacity: 1;
    z-index: 1;
}
@media (max-width: 420px) {
	.mainMenu.active {
		bottom: -460px;
	}
}
.mainMenu ul {
    flex-direction: column;
    padding: 20px 50px;
}
.mainMenu ul li {
    text-align: right;
    padding: 5px 0;
}
.mainMenu ul li:last-child {
	margin-bottom: -20px;
}
.mainMenu ul li a {
	font-size: 1.6em;
}


/* /Menu */
/* /Header */
/* Hero */
.videoCont {
	position: relative;
	min-height: 100vh; 
	width: 100vw;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.videoCont video {
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index : -1;
}
.introCont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.introImage img {
	width: 60%;
	opacity: 0;
	animation: zoomIn .5s ease-in .3s forwards;
}
@keyframes zoomIn {
	from {
		opacity: 0;
		width: 0;
	}
	to  {
		opacity: 1;
		width: 60%;
	}
}
.introTitle1, .introTitle2 {
	font-family: MiamaNueva;
	color: var(--red);
	font-size: 5em;
	-webkit-text-stroke: 1px var(--light);
	letter-spacing: -3px;
	opacity: 0;
	animation: fadeIn .5s ease forwards;
}
.introTitle2 span {
	font-family: "Miama";
	font-size: 1.2em;
	font-weight: lighter;
	-webkit-text-stroke: 0;
	color: var(--light);
	margin-right: -30px;
}
.introTitle1 {
	animation-delay: 0.9s;
}
.introTitle2 {
	animation-delay: 1.1s;
	margin-top: -30px;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(-30%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.introSubtitle {
	font-family: Miama;
	font-size: 3em;
	color: var(--light);
	font-weight: bold;
	opacity: 0;
	margin-top: -60px;
	animation: fadeInRight .3s ease 1.4s forwards;
}
.introSubtitle span {
	font-size: 0.7em;
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateY(30%);
		transform: translateX(40%);
		scale: 2;
	}
	to {
		opacity: 1;
		transform: translateY(0%);
		transform: translateX(60%);
		scale: 1;
	}
}
/* /Hero */

/* Top 1 About */
.about {
	display: flex;
	width: 100%;
	min-height: 100vh;
	align-items: center;
	justify-content: space-around;
	padding: 50px 0;
	background-image: url(../images/aboutBg.jpg);
	background-size: cover;
	background-attachment: fixed;
}
.aboutCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
}
.aboutImage, .aboutTextCont {
	padding: 20px 40px;
}
.aboutImage {
	flex: 1 400px;
	text-align: center;
}
.aboutImage img {
	width: 100%;
	border-radius: 20px;
	border: 5px double var(--red);
}
@media (min-width: 550px) and (max-width: 768px) {
	.aboutImage img {
		width: 60%;
	}
}
.aboutTextCont {
	flex: 1 400px;
}
.aboutTextCont h1, .platesCarousel h1 {
	font-family: "MiamaNueva";
	font-size: 2em;
	color: var(--red);
	line-height: 70px;
	position: relative;
	padding-left: 30px;
}
.aboutTextCont h1:before, .platesCarousel h1:before {
	content: '';
	background-color: var(--red);
	width: 30px;
	height: 1px;
	position: absolute;
	top: 30px;
	left: 0;
}
.aboutSubtitle {
	font-family: "CalibriBold";
	font-style: italic;
	font-size: 1.1em;
	margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) {
	.aboutTextCont {
		max-width: 60%;
	}
}
.aboutTextPhone {
	color: var(--red);
	font-size: 4em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: "Miama";
}
.aboutTextPhone i {
    transform: rotate(20deg);
    display: inline-block;
    font-size: .5em;
    margin-right: 20px;
}
/* /Top 1 About */


/* Top 2 Plates Carousel */
.carouselContainer, .testiContainer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
}
.platesCarousel {
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 20px 80px;
}
.platesCarousel h1 {
	margin-bottom: 50px;
}
.platesCarousel .carousel {
	margin: 0 auto;
	padding: 0 0 50px;
}
.platesCarousel .carouselInfo {
	width: 33.33%;
	padding: 0 10px;
	float: left;
	overflow: hidden;
}
@media (max-width: 768px) {
	.platesCarousel .carouselInfo {
		width: 100%;
		padding: 0 20px;
	}
	.platesCarousel .carouselBlock, .testiBlock {
		padding: 20px 0;
	}
	.platesCarousel .carouselTextBlock {
		min-height: 160px;
	}
}
.platesCarousel .carouselBlock {
	position: relative;
}
.platesCarousel .carouselBlock img {
	width: 100%;
}
.platesCarousel .carouselTextBlock {
	bottom: -70px;
	position: absolute;
	background-color: var(--red);
	opacity: 1;
	padding: 20px;
	transition: all .3s ease;
	width: 100%;
}
.platesCarousel .carouselBlock:hover .carouselTextBlock {
	bottom: 0;
}
.platesCarousel .carouselTitle {
	font-size: 1.3em;
	color: var(--light);
	font-family: "MiamaNueva";
	padding: 10px 0 20px;
	font-weight: bold;
	position: relative;
}
@media (min-width: 801px) and (max-width:1024px) {
	.platesCarousel .carouselTitle {
		font-size: 1.1em;
	}
	.platesCarousel .carouselTextBlock {
		bottom: -110px;
		min-height: 195px;
	}
}
.platesCarousel .carouselTitle:after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--light);
	bottom: 20px;
	left: 0;
	position: absolute;
}
.platesCarousel .carouselText {
	color: var(--light);
	font-size: .9em;
	margin-top: 10px;
}
.carousel-indicators {
	bottom: -20px;
}
.carousel-indicators .active {
	opacity: 1!important;
}
.carousel-indicators [data-bs-target] {
	background-color: var(--red);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	opacity: .2;
}
.ctaButton {
	text-align: center;
}
/* /Top 2 Plates Carousel */


/* Top 3 Όλα στα κάρβουνα */
.grill {
	text-align: center;
	padding: 50px 20px 100px;
	background-color: var(--light);
}
.grill img {
	width: 120px;
}
.grillText {
	font-family: "Miama";
	color: var(--red);
	font-size: 5em;
	line-height: 1em;
}
/* /Top 3 Όλα στα κάρβουνα */

/* Top 4 Menu Catalog */
.tabsCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px 100px;
    width: 100%;
}
@media (max-width: 480px) {
	.tabsCont {
		padding: 50px 20px 100px;
	}
	.menuTitle {
		font-size: 1.6em!important;
	}
}
.tabs {
    margin: auto;
    width: 100%;
}
.tabs ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: sticky;
    top: 0;
    background-color: var(--bg);
    box-shadow: 0 0 10px #eee;
}
.tabs ul li {
    margin-right: 20px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column; /* Κεντρικό στοιχείο με εικόνα και κείμενο */
    align-items: center; /* Κεντράρει το περιεχόμενο */
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s;
    font-family: "CalibriBold";
    text-align: center;
    line-height: 1.2em;
    flex: 0 140px;
}
.tabs ul li img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    border-radius: 50%;
}
.tabs ul li.active {
    color: var(--red);
}
.tab-content {
    display: none;
    padding: 0 20px 40px 0;
    width: 70%;
    margin: -60px auto 0;
}
@media (max-width: 1024px) {
	.tab-content {
		width: 100%;
	}
}
.tab-content.active {
    display: block;
}
.menu-items-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.menu-group {
    display: flex;
    flex-direction: column;
    flex: 1 300px;
    padding: 0 20px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    align-items: center;
}
.menu-item h3 {
    margin: 0;
}
.menu-item p, .column p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
.price {
	font-weight: bold;
	color: var(--light);
	background-color: var(--red);
	padding: 20px 15px;
	/*width: 70px;
	height: 70px;*/
	text-align: center;
}
.tableCont {
	display: flex;
	flex-direction: column;
}
.tableRow {
	display: flex;
	border-bottom: 1px solid #ddd;
	padding: 10px 0
}
.tableRow:nth-child(1) {
	border-bottom: 3px double var(--red);
	margin-bottom: 10px;
}
.column {
	display: flex;
}
.column:nth-child(1) {
	flex: 8;
	flex-direction: column;
	justify-content: center;
}
.column:nth-child(2), .column:nth-child(3) {
	flex: 2;
	justify-content: flex-end;
	align-items: flex-start;
	padding-left: 10px;
}
.menuTitle {
	font-family: "MiamaNueva";
	font-size: 2em;
	margin: 40px 0 -50px;
}
.menuTitle span {
	font-family: "CalibriLight";
	font-size: .5em;
}
.titleIcon {
	margin-top: 60px;
}
.titleIcon img {
	margin-bottom: -10px;
}
.column .size {
	margin-top: 20px;
	font-size: 1em;
}
.column h3 {
	margin: -10px 0 -7px;
}
.column p {
	margin-bottom: -1px
}
/* /Top 4 Menu Catalog */

/* Top 6 Testimonials */
.testiBlock {
	background-color: var(--light);
	padding: 50px ;
	position: relative;
	min-height: 460px;
}
@media (max-width: 768px) {
	.testiBlock {
		margin: 20px 0;
	}
}
.testiBlock i {
	position: absolute;
	right: 50px;
	bottom: 10px;
	opacity: .1;
	font-size: 3em;
	rotate: 25deg;
	color: var(--red);
}
.testiHead {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.testiHeadInitials {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: var(--red);
	color: var(--light);
	font-family: "CalibriBold";
	border-radius: 50%;
	margin-right: 10px;
}
.testiHeadStars {
	display: flex;
	justify-content: flex-start;
}
.testiHeadStars img {
	width: 20px;
}
.testiBody {
	font-size: .9em;
}
.testiTitle {
	font-family: "CalibriBold";
	font-style: italic;
	margin-bottom: 10px;
}

/* /Top 6 Testimonials */
/* footer */
.footer {
	display: block;
	float: left;
	width: 100%;
	background-color: var(--dark);
}
.footerCont {
	display: flex;
	flex-direction: column;
	height: auto;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
.footerBlock {
	display: flex;
	text-align: center;
	color: var(--light);
	font-size: .9em;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}
.socialIcons {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 400px;
	margin: 10px auto;
}
.socialIcons i {
	color: var(--red);
	font-size: 1.2em;
	transition: all .3s ease;
	border: 1px solid var(--red);
	border-radius: 20%;
	padding: 10px 15px;
}
.socialIcons i:hover {
	color: var(--light);
	border: 1px solid var(--light);
}
.address i {
	color: var(--light);
	margin-right: 5px;
}

.belowFooter {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px 20px;
	border-top: 1px solid var(--red);
	color: var(--light);
	background-color: var(--dark);
	font-size: .9em;
	margin: 0 40px;
}
@media (max-width: 420px) {
	.belowFooter {
		padding: 10px 0;
	}
}
.signature a {
	color: var(--light);
}
/* /footer */


/* To Top Button */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 50px;
	right: 40px;
	overflow: hidden;
	text-indent: 100%;
	background: var(--light) url(../images/cd-top-arrow.svg) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease;
	border-radius: 50%;
	z-index: 1000;
}
.cd-top:hover {
	transition: all .3s ease;
	background-color: var(--red);
}
.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 1;
}
.no-touch .cd-top:hover {
	background-color: rgba(0,0,0,.8);
	opacity: 1;
}
/* /To Top Button */