@charset "utf-8";


/* Fonts */
@font-face {
    font-family: "RobotoLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Roboto-Light.woff") format("woff");
}
@font-face {
    font-family: "RobotoReg";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Roboto-Regular.woff") format("woff");
}
@font-face {
    font-family: "RobotoBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Roboto-Medium.woff") format("woff");
}
@font-face {
    font-family: "RobotoCondLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Light.woff") format("woff");
}
@font-face {
    font-family: "RobotoCondBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Bold.woff") format("woff");
}
/* END Fonts */

/* reset/default rules */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, acronym, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, label, legend, table, caption, tbody, thead, tr, th, td {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
ol, ul {
	list-style: disc;
	margin-left: 20px;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img, :link img, :visited img {
	border: 0;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
}
a, .inputbox {
	outline-width:0;
}
a {
	transition: all 0.3s ease;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
p {
	margin-bottom: 14px;
}
body {
	max-width: 1920px;
	min-height: 100vh;
	margin: 0px auto;
	padding: 0px;
	font-family: RobotoLight;
	font-size: 18px;
	letter-spacing: -0.25px;
	color: var(--black);
	background-color: var(--white);
}
html {
	min-height: 100vh;
	width:100%;
	scroll-behavior: smooth;
}
:root {
	--white: #eef1f7;
    --orange-light: #e7dac8;
    --black: #141315;
    --gray: #aab0ba;
    --dark-brown: #463d35;
}
.innerBlock{
	max-width: 1440px;
	margin: 0 auto;
	border-bottom: 0;
	/*padding: 0 40px;*/
}
.innerBlock2{
	max-width: 1280px;
	margin: 0 auto;
	border-bottom: 0;
	padding: 0 40px;
}
/* /reset/general rules */

/*---------------------------------------------------------------------------------------*/

/* base typography */
h1{ 
	font-family: "RobotoCondLight";
	font-size: clamp(2em, 4vw, 44px);
	line-height: 1.1em;
}
h2{ 
	font-family: "RobotoCondBold";
	font-size: clamp(2em, 3vw, 44px);
	margin-bottom: 20px;
	letter-spacing: -1px;
}
h3{ 
	font-family: "RobotoReg";
	font-size: clamp(1.2em, 2vw, 24px);
}
h4{ font-size: 1.3em }
h5{ font-size: 1.2em }
h6{ font-size: 1em }
/* /base typography */

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loader img {
    width: 150px;
    height: 150px;
}
/* /Loader */

/* Buttons */
.button, .rsform-submit-button {
    background-color: var(--black);
    border: 0;
    color: var(--white);
    padding: 15px 25px;
    transition: all .3s ease;
    color: var(--white);
    font-family: "RobotoReg";
}
.button:hover, .rsform-submit-button:hover {
	background-color: var(--dark-brown);
}
.button.dark {
	background-color: transparent;
    border: 4px solid var(--white);
    padding: 11px 21px;
}
.button.dark:hover {
	background-color: var(--dark-brown);
}
/* /Buttons */

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: var(--black);
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    transition: transform 0.3s ease-in-out; 
    transform: translateY(-100%); 
    pointer-events: none; /* Απενεργοποιεί τα κλικ όσο είναι κρυμμένο */
}
.header.scrolled {
    transform: translateY(0);
    pointer-events: auto; /* Επαναφέρει τα κλικ (μενού, κουμπιά) */
}
/* Logo */
.header .logo img {
	max-width: 160px;
	transition: all .3s ease;
	margin-left: 0;
}
.header.scrolled .logo img {
	max-width: 160px;
	transition: all .3s ease;
}
/* /Logo */

/* Menu */
.mainMenuWrapper {
    position: relative;
}
.menuToggle {
    display: none;
    font-size: 34px;
    background: none;
    border: none;
    color: var(--white);
    position: absolute;
    top: -25px;
    right: -20px;
    cursor: pointer;
}
.mainMenu ul.nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mainMenu ul.nav li {
    position: relative;
    list-style: none;
}
.mainMenu ul.nav li a, 
ul.nav li.divider {
    padding: 10px;
    color: var(--white);
    font-family: "RobotoCondBold";
    display: block;
    text-decoration: none;
    transition: color .3s ease;
}
ul.nav li.divider {
    cursor: pointer;
}
.mainMenu ul.nav li a:hover, 
ul.nav li.divider:hover {
    color: var(--orange-light);
}
/* --- Ρυθμίσεις για το 2ο Επίπεδο (Desktop) --- */
.mainMenu ul.nav li ul.nav-child {
    /* Βασική τοποθέτηση */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--black);
    min-width: 200px;
    z-index: 1000;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

    /* --- Animation & Visibility --- */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}
/* Εμφάνιση του 2ου επιπέδου στο Hover */
.mainMenu ul.nav li:hover > ul.nav-child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Στυλ για τα links του 2ου επιπέδου */
.mainMenu ul.nav li ul.nav-child li a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray);
}
.mainMenu ul.nav li ul.nav-child li a:hover {
    background-color: var(--dark-brown);
    transition: all .3s ease;
    color: var(--white);
}
.mainMenu ul.nav li ul.nav-child li:last-child a {
	border-bottom: 0;
}
@media (max-width: 1024px) {
    .header {
        padding: 10px;
        justify-content: space-evenly;
    }
    .menuToggle {
        display: block;
    }
    .mainMenu {
        position: absolute;
        top: 40px;
        right: -61px;
        background-color: var(--black);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px 10px;
        transition: all .3s ease;
        opacity: 0;
        visibility: hidden;
        min-width: 250px;
    }
    .mainMenu.active {
        opacity: 1;
        visibility: visible;
        top: 50px;
    }
    .mainMenu ul.nav {
        flex-direction: column;
        text-align: right;
    }
    .mainMenu ul.nav li {
        padding: 0 !important;
    }
    /* Ρυθμίσεις 2ου επιπέδου για Mobile */
    .mainMenu ul.nav li ul.nav-child {
        display: none;
        position: static;     /* Επαναφορά στην κανονική ροή (accordion style) */
        opacity: 1;
        visibility: visible;
        transform: translateY(0); /* Reset του animation για το κινητό */
        pointer-events: auto;
        box-shadow: none;
        padding-right: 15px;
        background: transparent;
    }
}
/* /Menu */

/* Book Button */
.bookButton .custom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-right: 50px;
}
@media (max-width: 480px) {
	.bookButton {
		display: none;
	}
}
/* /Book Button */

/* Language Block */
.language {
	position: absolute;
	right: 10px;
}
.mod-languages {
	margin-top: 7px;
}
.mod-languages ul {
	display: flex;
	flex-direction: column;
}
.mod-languages li {
	margin: unset!important;
}
.mod-languages li img {
	width: 26px;
}
.mod-languages li:first-child img {
	margin-bottom: -2px;
}
.mod-languages li:last-child img {
	width: 27px;
}
.mod-languages li:last-child {
	margin-bottom: 5px !important;
}
/* /Language Block */
/* /Header */

/* Modal Home Page */
.modalHome {
    max-width: 800px;
    margin: 0 auto;
}
.modal-content {
  background-image: url(../images/modalBg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 420px;
  overflow: hidden;
}
.modalHome .modal-body {
    width: 100%;
    padding: 0;
    position: relative;
    display: flex;
}
.modalHome .modal-body button {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}
.modalCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin-left: auto;
    width: 55%;
    background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 0 auto;
    }
    .modalCont {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .modalContactBlock {
        min-height: unset;
    }
}
.modalContactBlock .phoneLine {
    flex-direction: column;
    align-items: center;
}
.modalContactBlock .viberLabel {
    font-size: .7em;
    margin-top: 5px;
}
.modalCont h2 {
    margin-bottom: 30px;
    font-size: 1.5em;
}
.modalCont p {
    text-align: center;
    font-size: 1.1em;
    font-family: "RobotoBold";
}
.modalContactBlock h3.phoneLine span.phoneNumber {
    font-family: "RobotoBold";
    color: darkred;
}
/* /Modal Home Page */

/* Hero Parallax */
.hero-wrapper {
  position: relative;
  height: 200vh;
  z-index: 1;
}
.hero-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-inner .logo img {
    width: 350px;
}
.bg-image,
.overlay-image,
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  pointer-events: none;
}
.bg-image {
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.15);
}
.overlay-image {
  background-image: url('../images/window.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(2);
  z-index: 2;
}
.hero-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, .3);
  z-index: 2;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  z-index: 3;
  pointer-events: auto;
  position: relative;
  color: var(--lightOrange);
  padding: 0 20px;
}
.hero-content h3 {
    font-size: clamp(24px, 4vw, 40px);
    color: var(--white);
    font-family: "RobotoCondBold";
}
.hero-content p {
    text-shadow: 1px 1px 2px rgba(102,73,48,0.9);
    font-size: 1.5em;
    color: var(--white);
}
.heroBlock {
    margin-top: 10px;
}
.hero-visible .hero-content {
  opacity: 1;
}
.hero-wrapper .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.2s ease-out;
}
@media (max-width: 480px) {
  .hero-wrapper .logo {
    transform: translate(-50%,-150%) !important;
  }
}
.hero-wrapper .logo img {
  filter: drop-shadow(3px 3px 6px rgba(102,73,48,0.6));
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.scroll-indicator img {
  width: 60px; /* Ή όσο χρειάζεσαι */
}
/* /Hero */

/* About */
.aboutCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 100px 0;
	overflow: hidden;
}
.aboutBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 60px;
	padding: 20px;
    margin-bottom: 40px;
}
.aboutBlock {
	position: relative;
	flex: 0 47%;
}
.aboutBlock img {
	width: 100%;
    box-shadow: 10px 10px 20px rgba(70, 61, 53, .5);
}
.aboutBlock iframe {
    width: 100%;
    height: 439px;
}
.aboutBlock .photoBg {
	position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--gray);
	top: 35px;
	left: 35px;
	z-index: -1;
	opacity: .7;
}
.buttonBlock {
	display: flex;
	margin-top: 30px;
}

@media (max-width: 768px) {
	.aboutBlock {
		flex: 1 100%;
	}
}
/* /About */

/* Why us */
.whyUsCont {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--orange-light);
	background-position: center;
	background-size: cover;
	padding: 100px 0;
}
.whyUsContInt {
	width: 100%;
}
.whyUsTitle h2 {
	margin-bottom: 50px;
	text-align: center;
	padding: 0 20px;
}
.whyUsBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.whyUsBlock ul li {
	margin-bottom: 20px;
}
.whyUsBlock ul li i, .locBlock ul li i, .aboutCont .aboutText ul li i {
	margin-right: 10px;
	font-size: 1.1em;
	vertical-align: baseline;
	color: var(--dark-brown);
}
.whyUsCont .buttonBlock {
	justify-content: center;
}
@media (max-width: 768px) {
	.whyUsBlocks {
		gap: 0;
	}
	.whyUsBlock {
		flex: 1 100%;
	}
}
/* /Why us */

/* Accommodation */
.accoCont {
	padding: 100px 0;
	text-align: center;
}
.accoCont h2 {
	text-align: center;
}
.accoGallery {
	padding: 40px 0;
}
.accoGallery .carousel-item.active {
	display: flex;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}
.accoGallery .carousel-item .card {
	flex: 1;
	width: 20%;
	transition: flex 0.3s ease;
	border: 0;
	position: relative;
	overflow: hidden;
	border-radius: 0!important;
}
.accoGallery .carousel-item .card:hover {
	flex: 2;
	transition: flex 0.3s ease;
}
.accoGallery .carousel-item .card .cardDesc {
	position: absolute;
	font-family: "RobotoBold";
	font-size: .9em;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.4);
  	backdrop-filter: blur(5px);
  	width: 100%;
  	bottom: 0;
  	opacity: 0;
  	text-align: left;
}
.accoGallery .carousel-item .card:hover .cardDesc {
  	animation: slideRight .3s ease .1s forwards;
}
.accoGallery .carousel-item .card:not(:hover) .cardDesc {
  	animation: slideLeft .3s ease forwards;
}
@keyframes slideRight {
	0% {
		left: -100%;
		opacity: 0;
	}
	100% {
		left: 0;
		opacity: 1;
	}
}
@keyframes slideLeft {
	0% {
		left: 0%;
		opacity: 1;
	}
	100% {
		left: -100%;
		opacity: 0;
	}
}
.accoGallery .carousel-item img {
	height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
	cursor: pointer;
	float: left;
}
.accoGallery .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.accoGallery .overlay.show {
  opacity: 1;
  visibility: visible;
}
.accoGallery .overlay img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.3s ease;
}
.accoGallery .overlay img.show {
  transform: scale(1);
}
.accoText {
	width: 70%;
	margin: 0 auto 50px;
}
/* /Accommodation */

/* Testimonials */
.testimonials {
    display: flex;
    min-height: 80vh;
}
.testimonials-left {
    flex: 1;
    padding: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(216, 199, 161, .4);
}
.nav-buttons {
    margin-top: 40px;
}
.nav-buttons button {
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    margin-right: 15px;
    color: var(--dark-brown);
}
.testimonials-right {
    flex: 2;
    background-color: var(--dark-brown);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slider-wrapper {
    overflow: hidden;
    width: 100%;
}
.slider {
    display: flex;
    gap: 30px;
    padding: 50px 60px;
    transition: transform 0.45s ease;
    touch-action: pan-y;
}
.testimonials .card {
    min-width: 500px;
    min-height: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}
.testimonials .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: unset!important;
}
.testimonials .card-headerLeft {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonials .card-headerLeft .clientIcon {
    width: 48px;
    height: 48px;
    background-color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 5px;
    font-weight: bold;
}
.testimonials .card-headerLeft img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonials .card-headerRight {
    display: flex;
    align-items: center;
    gap: 5px;
}
.testimonials .card-headerRight .bookingRating {
    width: 32px;
    height: 32px;
    background-color: #003B95;
    border-radius: 6px 6px 6px 0;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9em;
	font-weight: bold;
}
.testimonials .card-headerRight .airbnbRating i {
    font-size: .7em;
}
.testimonials .card-headerRight img {
    width: 32px;
}
.testimonials .card-header strong {
    font-family: "RobotoCondLight";
}
.testimonials .card-headerLeft .clientTitle {
    display: flex;
    flex-direction: column;
}
.testimonials .card-header span {
    font-size: .7em;
    color: var(--dark-brown);
}
.googleRating i {
    font-size: .7em;
}
.testimonials .card p {
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .testimonials {
        flex-direction: column;
    }
    .testimonials-left {
        text-align: center;
        padding: 50px 30px;
    }
    .testimonials .card {
        min-width: 100%;
    }
}
@media (max-width: 480px) {
	.testimonials .card-header {
		flex-direction: column;
	}
	.testimonials .card-headerLeft {
		margin-bottom: 20px;
	}
}
/* /Testimonials */

/* QR Code CTA */
.qrCont {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
    background-color: var(--orange-light);
}
.qrBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.qrBlock {
    flex: 2;
    position: relative;
    padding: 0 80px;
}
.qrBlock::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: var(--gray);
    transform: translate(0, -50%);
}
.qrBlock:last-child::after {
    width: 0;
    height: 0;
}
.qrBlock.qrCode {
    flex: 1;
    text-align: center;
}
@media (max-width: 800px) {
    .qrBlock {
        flex: 1 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
    .qrBlock::after {
        width: 0;
        height: 0;
    }
}
/* /QR Code CTA */

/* Location */
.locCont {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
}
.locBlocks {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 40px;
}
.locContInt.contact .locBlocks, .locCont .locBlocks {
	padding: 0;
}
.locBlock {
	flex: 1 48%;
}
.locCont .locBlock:first-child {
	padding: 20px 40px;
}
.locText {
	margin-bottom: 20px;
}
.locText.list {
	font-family: "RobotoReg";
}
.locLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.locBlock ul {
	list-style: none;
	margin-left: 0;
}
.locList:first-child ul {
  	margin-right: 20px;
}
.locBlock ul li {
	margin-bottom: 20px;
}
.mapCont {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}
.mapCont iframe {
    width: 100%;
    height: 100vh;
    pointer-events: none;
    position: relative;
    margin-bottom: -80px;
}
.mapCont.location iframe {
    max-height: 500px;
}
.map-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer; /* Δείχνει ότι μπορείς να κλικάρεις */
}
@media (max-width: 480px) {
	.locLists {
		gap: 0;
	}
	.locCont .locBlock:first-child {
		padding: 50px;
	}
	.buttonBlock {
		justify-content: center;
	}
}
@media (min-width: 481px) and (max-width: 1023px) {
	.locBlocks {
		display: block;
	}
	.locCont .locBlock:first-child {
		padding: 50px;
	}
	.locLists {
		gap: 40px;
	}
	.buttonBlock {
		justify-content: center;
	}
}
@media (min-width: 1024px) and (max-width: 1279px) {
	.locLists {
		gap: 0;
	}
}
@media (min-width: 1280px) and (max-width: 1365px) {
	.locLists {
		/*gap: 40px;*/
	}
}
/* /Location */

/* Hero Internal */
.heroRooms {
	display: flex;
	max-height: 500px;
	position: relative;
}
.heroRooms img {
	width: 100%;
	object-fit: cover;
}
.heroRooms h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: "RobotoCondBold";
	color: var(--white);
}
/* /Hero Internal */

/* K2 Module Apartments */
.k2ItemsBlock {
	background-color: var(--dark-brown);
}
.k2ItemsBlock.apartments h2 {
	text-align: center;
	color: var(--orange-light);
	padding: 50px 0 0;
	margin-bottom: 0;
}
.k2ItemsBlock ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 50px 20px 100px;
}
.k2ItemsBlock ul li {
	list-style: none;
	flex: 0 290px;
	position: relative;
	overflow: hidden;
}
.k2ItemsBlock ul li:hover .apartTextBlock {
	bottom: 0;
	transition: all .3s ease;
}
.k2ItemsBlock ul li img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.apartItemImage {
	display: flex;
}
.apartTextBlock {
	position: absolute;
	bottom: -187px;
	padding: 20px;
	transition: all .3s ease;
}
.k2ItemsBlock ul li .overlay {
    background-image: linear-gradient(to top, rgba(70, 61, 53, .8), rgba(70, 61, 53, .4));
    position: absolute;
    bottom: -84%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all .3s ease;
}
.k2ItemsBlock ul li:hover .overlay {
	transition: all .3s ease;
    bottom: 0;
}
.apartItemTitle h3 {
	font-family: "RobotoCondBold";
    font-size: clamp(1.2em, 1.5vw, 20px);
	margin-bottom: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--white);
}
.apartItemIntroText {
	font-family: "RobotoCondLight";
}
.k2ItemsBlock.apartments a {
	color: var(--white);
    display: flex;
}
.k2ItemsBlock .apartItemTitle {
    width: 100%;
}
@media (min-width: 801px) and (max-width: 1024px) {
	.k2ItemsBlock ul li {
		flex: 1 320px;
	}
	.apartTextBlock {
		bottom: -160px;
	}
}
@media (min-width: 481px) and (max-width: 800px) {
	.k2ItemsBlock ul li {
		flex: 1 45%;
	}
	.apartTextBlock {
		bottom: -185px;
	}
}
@media (max-width: 480px) {
	.k2ItemsBlock ul li {
		flex: 1 100%;
	}
	.apartTextBlock {
		bottom: -185px;
	}
}
/* /K2 Module Apartments */



/* K2 Item View */
.itemImageBlock {
	position: relative;
	height: 500px;
}
.itemImageBlock img {
	object-fit: cover;
	height: 500px;
	width: 100%;
}
.itemView .itemImageBlock .overlay,
.aboutCont.atmos .overlay,
.heroCont .overlay,
.heroRooms .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44, 44, 44, .4);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all .3s ease;
}
.itemView .itemTitleBlock {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
}
@media (max-width: 480px) {
	.itemView .itemTitleBlock {
		width: 80%;
	}
}
.itemView .itemExtraFields ul {
	list-style: none;
}
.itemView .itemExtraFields ul li {
	margin: -15px 0 0 -19px;
	font-family: "RobotoCondLight";
	font-size: 1.5em;
}
.itemView .aboutCont.odd {
	background-color: var(--orange-light);
}
.itemView .aboutCont.flat.odd {
	background-color: transparent;
}
.itemView .aboutCont.odd .aboutBlocks {
	flex-direction: row-reverse;
}
.itemView .aboutCont.odd img {
    box-shadow: -10px 10px 20px rgba(70, 61, 53, .5);
    position: relative;
    z-index: 1;
}
.itemView .aboutCont.odd .photoBg {
	position: absolute;
	top: 35px;
	left: -41px;
	z-index: 0;
	opacity: .7;
}
.aboutCont .aboutText ul li {
	padding: 5px 0;
}
.aboutText ul li span {
	font-family: "RobotoBold";
	color: var(--dark-brown);
}
/*.aboutText.details ul {
	list-style: none;
	margin-left: 0;
}*/
/*.aboutCont.atmos {
	background-image: url(../images/aboutIntBg.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.aboutCont.atmos .atmosCont {
	max-width: 800px;
	text-align: center;
	color: var(--white);
	z-index: 2;
	padding: 0 20px;
}
.aboutCont.atmos .atmosCont .atmosText {
	font-family: "RobotoCondLight";
	font-size: 1.5em;
	line-height: 1.3em;
}*/
.aboutText.details ul {
	margin-bottom: 40px;
}
.galleryCont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 20px;
	background-color: rgba(216, 199, 161, .4);
}
.galleryCont h2 {
	margin-bottom: 60px;
}
.galleryBlock {
	width: 100%;
}
ul.sigProElegant {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: unset!important;
	padding: unset!important;
}
ul.sigProElegant li.sigProThumb a.sigProLink {
	border: 0!important;
	background: 0!important;
}
ul.sigProElegant li.sigProThumb {
	list-style: none;
}
ul.sigProElegant li.sigProThumb .sigProImg {
	border: 1px solid #eee!important;
}
ul.sigProElegant li.sigProThumb a.sigProLink img.sigProImg {
	background-position: 0% 0%!important;
}
.call2actionCont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--gray);
    color: var(--black);
	padding: 100px 20px;
	text-align: center;
}
.call2actionCont.light {
	background-color: var(--white);
}
.call2actionText {
	font-size: 1.3em;
}
.aboutBlock.benefits h2 {
	display: flex;
	align-items: center;
}
.aboutBlock.benefits h3 {
	margin: 10px 0;
}
.aboutBlock.benefits .subTitle {
	margin: 0 0 15px 0;
	font-family: "RobotoCondLight";
	font-size: 1.5em;
}
.locContInt {
	padding: 100px 40px;
}
.locContInt.contact .locBlocks {
	align-items: flex-start;
	gap: 40px;
}
.locContInt.services {
	padding: 100px 0 0;
	margin-bottom: -50px;
}
.locContInt .locText h3 {
	text-align: center;
	padding: 20px 0;
}
.locContInt .locLists {
	gap: 40px;
	justify-content: space-evenly;
}
.locContInt .locList .mapCont {
	margin: 0;
}
.locContInt .buttonBlock {
	justify-content: center;
}
@media (max-width: 1024px) {
	.locContInt.contact .locBlocks {
		gap: 20px;
	}
	.locContInt {
		padding: 100px 20px;
	}
}
@media (max-width: 768px) {
	.locContInt .locLists {
		gap: 0;
	}
	.locContInt .locList {
		flex: 1 100%;
	}
	.aboutText.details .buttonblock {
		text-align: center;
	}
	.locContInt.services .locBlock {
		padding: 0 20px;
	}
	.locContInt.contact .locBlocks,
	.locCont .locBlocks,
	.locContInt.services .locBlocks {
		padding: 0;
	}
}
/* /K2 Item View */


/* Contact Page */
.offerBlock {
	position: relative;
	padding: 30px 20px;
	background-color: var(--dark-brown);
	color: var(--white);
	font-family: "RobotoLight";
	font-size: .9em;
	font-weight: 600;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 20px 0 40px;
  	border: 4px solid var(--orange-light);
}
.offerBlock i {
	color: var(--white);
	font-size: 4em;
	margin-right: 20px;
}
.offerBlock .offerText {
	text-align: center;
	font-size: 1.3em;
	padding: 0 20px;
}
.cozyHighlight {
	width: 100%;
	height: 340px;
	background-image: url('../images/heroBg.jpg'); /* Φωτογραφία ή illustration */
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.cozyHighlight .overlayText {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: rgba(255,255,255,0.85);
	padding: 15px 20px;
	border-radius: 8px;
	max-width: 400px;
	color: #333;
}
.cozyHighlight .overlayText h3 {
	margin: 0 0 8px 0;
	font-size: 1.2rem;
}
.cozyHighlight .overlayText p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.4;
}
.contactBlocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	padding: 20px 0;
	background-color: var(--orange-light);
	min-height: 180px;
	margin-top: 50px;
	max-width: 1440px;
}
.contactBlock {
	border-right: 1px solid #bbb;
	flex: 1;
	min-height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0 20px
}
.contactBlock:last-child {
	border-right: 0;
}
.contactBlock h3 {
	margin-bottom: 10px;
	font-family: RobotoLight;
	font-weight: 600;
	font-size: 1em;
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
}
.contactBlock h3.icons {
	gap: 15px;
	margin-bottom: 10px;
}
.contactBlock h3 i {
	font-size: 1.8em;
}
.contactBlock h3 a, .copyRightBlock h3 a {
    color: var(--black);
    margin-right: 10px;
}
.copyRightBlock h3 a {
    color: var(--white);
}
@media (max-width: 480px) {
	.contactBlocks {
		min-height: unset;
		padding: 20px 80px;
	}
	.contactBlock {
		border-right: 0;
		flex: 1 100%;
    	padding: 20px 0;
    	border-bottom: 1px solid #bbb;		
	}
	.contactBlock:last-child {
		border-bottom: 0;
	}
	.offerBlock i {
		margin-right: 20px;
	}
	.offerBlock .offerText {
		font-size: 1.2em;
		padding: 0;
	}
	.cozyHighlight .overlayText {
		right: 20px;
	}
}
/* QR Code Block */
.locContInt.contact {
	position: relative;
}
.qrBlock img {
	max-width: 100px;
}
/* /QR Code Block */

/* Contact Form */
.formContainer .formBlocks {
	display: flex;
	flex-direction: column;
}
.formContainer .formBlock {
	display: flex;
	gap: 20px;
}
.row.rsform-block {
	flex: 1;
}
@media (max-width: 480px) {
	.formContainer .formBlock {
		display: block;
	}
}
.formContainer .formBlock input,
.formContainer .formBlock select,
.formContainer textarea {
	width: 100%;
	padding: 20px;
	margin: 10px 0;
	background-color: var(--orange-light);
	border: 0;
	font-family: "RobotoReg";
	opacity: .8;
}
#g-recaptcha-29 {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px;
	margin: 10px 0;
}
.rsform-block-check-in row {
	display: flex;
}
.has-error-foundation .columns .row .columns * {
	margin-bottom: 10px!important;
}
.rsform-calendar-button {
	display: none;
}
.formContainer .formBlock  .rsform-select-box:first-child {
	opacity: .6;
}
.rsform-block-send {
	margin: 0;
	text-align: center;
}
/*Thank you message properties*/
.rsfp_thankyou_popup_inner {
	padding: 40px!important;
}
.rsfp_thankou_popup_close_btn {
	top: 15px!important;
	right: 25px!important;
}
/*Thank you message properties*/
/* /Contact Form */
/* Contact Page */

/* footer */
.copyright {
	background-color: var(--black);
	padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyRightBlock {
	font-size: .9em;
	font-family: "RobotoCondLight";
    color: var(--white);
}
/* /footer */


