:root {
    --primary: #404040;
    --secondary: #c29a79; /* #b67161 */
    --tertiary: #c29a79; /* #a98467; */
    --neutral: #f4f4f2;
    --neutral2: #f9f9f7;
    --white: #ffffff;
    --dark: #2f312e;
    
    --font-headline: 'Noto Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--neutral);
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

body.menu-open {
    overflow-y: scroll;
    position: fixed;
    width: 100%;
}

.noslider {
    padding-top: 100px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c29a79 #ffffff;
}

a {
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
}

li {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    color: var(--dark);
}

label {
    font-family: var(--font-body);
}

section {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1003;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 40px;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #ffffff;
}

.logo-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 278px;
    height: 145px;
    background: #ffffff;
    /* border-radius: 0 0 100px 100px; */
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 60%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    transform: translateX(round(-50%, 1px)); /* snap σε ακέραιο pixel */
}

.logo {
    width: auto;
    height: 118px;
    /* transition: all 0.3s ease; */
}

.logo:hover {
    /* opacity: 0.8; */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: var(--secondary);
}

.lang-separator {
    color: var(--dark);
    opacity: 0.3;
}

.btn-book {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    background-color: var(--secondary);
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #6fa1bc;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-book:hover {
    color: var(--white);
}

.btn-book:hover::before {
    left: 0;
}

.hero-slider {
    margin-top: 70px;
    height: calc(100vh - 70px);
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.12));
}

.slide-content {
    position: absolute;
    bottom: 20px; 
    right: 20px; 
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 500px;
    
}

.slide-title {
    font-family: var(--font-headline);
    font-size: 38px;
    font-weight: 400;
    color: var(--white);
   
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    top: auto;
    bottom: 25px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev .material-symbols-outlined,
.swiper-button-next .material-symbols-outlined {
    font-size: 32px;
    color: var(--white);
}

.swiper-button-prev {
    left: 40px;
    right: auto;
    border-radius: 50%;
}

.swiper-button-next {
    left: 100px;
    right: auto;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .slide-title {
       display: none;
    }
}    

@media (max-width: 992px) {
    .header-content {
     padding: 15px 30px;
    }
    
    .logo {
    height: 100px;
    }
	
	.logo-background {
    width: 257px;
    height: 125px;
}
	
	.hero-slider {
    margin-top: 48px;
    height: calc(100vh - 54px);

}

    .lang-switcher-nav {
        display: flex;
    }
    
    .slide-title {
       /* font-size: 56px; */
       display: none;
    }
    .swiper-button-prev {
        left: 20px;
    }
    
    .swiper-button-next {
        left: 80px;
    }
    .lang-switcher-nav .lang-item {
        font-size: 32px;
    }
    
    .lang-switcher-nav .lang-separator {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }
	
	    .logo-background {
        width: 247px;
        height: 110px;
    }
    
        .logo {
        /* height: 45px; */
        height: 86px;
    }
    
    .menu-text {
        display: none;
    }
    
    .lang-switcher-nav {
        display: flex;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .btn-book {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .hero-slider {

        aspect-ratio: 4 / 3;
        height: auto;
    }
    
    /* .slide-title {
        font-size: 36px;
    } */
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev .material-symbols-outlined,
    .swiper-button-next .material-symbols-outlined {
        font-size: 24px;
    }
    
    .swiper-button-prev {
        left: 15px;
    }
    
    .swiper-button-next {
        left: 70px;
    }
    
    .lang-switcher-nav .lang-item {
        font-size: 28px;
    }
    
    .lang-switcher-nav .lang-separator {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
	
	/* .slide-title {
		display: none;
	} */
    .header-content {
        padding: 22px 18px;
    }
	
	.logo-background {
        display:none;
    }
	
	.logo-container {
    position: absolute;
    left: inherit;
    top: 6px;
    transform: translateX(0%);
    right: 18px;
}
    
    .logo {
     height: 58px; 
    /* max-width: 90px; */
    }
    
    .lang-switcher-nav {
        display: flex;
    }
	
	.hero-slider {
    margin-top: 68px;
    }
    
    .language-switcher {
        gap: 5px;
    }
    
    .lang-link {
        font-size: 16px;
    }
    
    .btn-book {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    /* .slide-title {
        font-size: 32px;
    } */

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        bottom: 20px;
    }
    
    .swiper-button-prev .material-symbols-outlined,
    .swiper-button-next .material-symbols-outlined {
        font-size: 20px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        left: 55px;
    }
    
   .lang-switcher-nav .lang-item {
        font-size: 22px;
    }
    
    .lang-switcher-nav .lang-separator {
        font-size: 22px;
    }
    
    .noslider {
    padding-top: 50px;
    }
}

@media (max-width: 425px) {
    .logo {
        height: 51px;
        margin-top: 4px;
       }
}


.about-section {
    padding: 100px 0;
    background-color: var(--white);
    max-width: 1920px;
    margin: 0 auto;
}

.about-section .container-fluid {
    padding: 0 60px;
}

.about-text-col {
    padding-right: 80px;
}

.about-content {
    max-width: 700px;
}

.about-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-title1 {
    font-family: var(--font-headline);
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-subtitle {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-divider {
    width: 60px;
    height: 2px;
    background-color: var(--tertiary);
    margin-bottom: 35px;
}

.about-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.7;
}

.about-image-col {
    padding-left: 40px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .container-fluid {
        padding: 0 40px;
    }
    
    .about-text-col {
        padding-right: 1px;
    }
    .about-content {
    max-width: 100%;
    }
    .about-title {
        font-size: 32px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-image-col {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .container-fluid {
        padding: 0 30px;
    }
    
    .about-text-col {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .about-divider {
        margin-bottom: 25px;
    }
    
    .about-image-col {
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .container-fluid {
        padding: 0 20px;
    }
    
    .about-text-col {
        margin-bottom: 30px;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .about-title1 {
        font-size: 28px;
        font-weight: 400;
    }
    .about-divider {
        width: 50px;
        margin-bottom: 20px;
    }
}

.mtp1 {
	padding-left: 60px;
}
.mtp2 {
	padding-right: 60px;
}

@media (max-width: 1024px) {
    .mtp1 {
    padding-left: 36px;
   }
    .mtp2 {
    padding-left: 36px;
   }    
}

@media (max-width: 992px) {
    .mtp1 {
    padding-left: 1px;
   }
    .mtp2 {
    padding-left: 1px;
   }    
}


.fpsuites-section {  
    padding: 60px 0 20px 0;
    background-color: #eeeae4; /* #e8d2bd */
    max-width: 1920px;
    margin: 0 auto;
}

.fpsuites-section .container-fluid {
    padding: 0 60px;
}

#fpsuites-container {
	background-color: #eeeae4;
	/* padding-top: 60px;
	padding-bottom: 40px; */
}

.fpsuites-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
}

.fpsuites-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.7;
    padding-bottom: 20px;
}

@media (max-width: 992px) {
    .fpsuites-text {
        padding-bottom: 1px;
    }
}

.suites-title2 {
    font-family: var(--font-headline);
    font-size: 27px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.3;
}

.roomitem {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
    width: 252px;
}
.roomtitle {
    font-family: var(--font-headline);
    font-weight: 300;
    letter-spacing: 0.8px;
    font-size: 17px;
}

#fpsuites-container .card  {
	border-radius: 0;
	border: 1px solid #ccc8c3;
	padding:30px;
	background-color: #e9e2d5;
}

#fpsuites-container .card img {
	/*width:100%;*/
}

#fpsuites-container .card h3 {
	margin-bottom: 5px;
}

#fpsuites-container .card-subtitle {
	font: normal 14px/14px 'Open Sans', sans-serif;
	
}

#fpsuites .card-text {
	font-size: 16px;
	/* font-weight: 500; */
}

.tabs .tab strong {
	font-weight: 500;
}

.fpinfobox_icons {
	display: flex;
	margin-bottom: 20px;
}


.fpinfobox_icons div {
	text-align: center;
	width: fit-content;
	margin: 10px 35px 0 0px;
}


.fpinfobox_icons img {
	margin-bottom: 5px;
}

.room-image {
    max-width: 100%;
    height: auto;
}

#whychooseus-container {
    padding-top: 80px;
    padding-bottom: 30px;
	background-image: linear-gradient(#e2e2e2, rgb(242 246 246));
}
#whychooseus {
    padding: 70px;
}
#whychooseus h2 {
	margin-top: 0;
	padding: 0 10px 10px 0;
	font-size: 32px;
	font-weight: 400;
}
.whychooseus-card {
	display: flex;
	flex-direction: row;
	padding-bottom: 40px;
	
}
.whychooseus-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 18px;
    line-height: 1.3;
}
.whychooseus-icon {
    font-size: 32px;
    font-weight: 300;
    color: #c29a79;
    padding: 10px;
    background: #ffffff;
    border-radius: 13px;
}

@media (max-width: 1200px) {
    #whychooseus-container {
    padding-top: 50px;
    }
}

@media (max-width: 992px) {
    #whychooseus-container {
    padding-top: 30px;
    }
    #whychooseus {
    padding: 20px 50px;
    }
}

@media (max-width: 768px) {
.fpsuites-section .container-fluid {
    padding: 0 36px;
    }
}

@media (max-width: 576px) {
    #whychooseus {
    padding: 0 20px;
    }
    .fpsuites-title {
    font-size: 28px;
    }
    .suites-title2 {
     font-size: 20px;
    }
}
.gallery {
    padding: 80px 0 70px 0;
    background-color: #f2f6f6;
    max-width: 1920px;
    margin: 0 auto;
}

.gallery .container-fluid {
    padding: 0 60px;
}



.gallery-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 50px;
}

.gallery-grid img {
  max-width: 100%;
  width: 100%;
}
.gallery-grid .gallery-item {
  padding-left:7px!important;
  padding-right:7px!important;
  margin-bottom: 14px;
}
.gallery-grid .boxes{
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .da-image{
  min-height: 100%;
  width: 100%;
}
.gallery-grid .overlay{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: -100%;
  color: #fff;
    background-color: rgba(0,0,0,0.25);
  z-index: 10;
	padding-left:7px!important;
	padding-right:7px!important;
	background-clip: content-box;
}
.gallery-grid .overlay a{
	display: block;
	width:100%;
	height:100%;
  background-image: url('../images/open.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

@media (max-width: 1024px) {
    .gallery {
    padding: 20px 0 20px 0;
    }
}
@media (max-width: 992px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery .container-fluid {
        padding: 0 40px;
    }
    
    .gallery-header {
        margin-bottom: 50px;
    }
    
    .gallery-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery .container-fluid {
        padding: 0 30px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    #whychooseus h2 {
        font-size: 28px;
    }
    
    .whychooseus-title {
    font-size: 18px;
    }    
    .gallery {
        padding: 10px 0;
    }
    
    .gallery .container-fluid {
        padding: 0 20px;
    }
    .gallery-title {
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .gallery-header {
    margin-bottom: 10px;
    }
}


.map-section {
    padding: 80px 0 40px 0;
    background-color: #f2f6f6;
    max-width: 1920px;
    margin: 0 auto;
}

.map-section .container-fluid {
    padding: 0 60px;
}

.map-section .row {
    align-items: stretch;
}

.map-section .row > div {
    display: flex;
}

.map-header {
    margin-bottom: 40px;
}

.map-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;    
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.distances-list {
    padding: 40px;
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.distances-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.distances-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(107, 112, 92, 0.2);
}

.distances-list li:last-child {
    border-bottom: none;
}

.distance-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--dark);
}

.distance-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--primary);
}
.map-title1 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    margin-top: 50px;
    text-align: center;
    display: block;
    width: 100%;
}
.map-title2 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    margin-top: 15px;
    text-align: center;
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .map-section {
        padding: 80px 0 40px 0;
    }
    
    .map-section .container-fluid {
        padding: 0 40px;
    }
    
    .map-header {
        margin-bottom: 30px;
    }
    
    .map-title {
        font-size: 32px;
    }
    
    .map-container {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .distances-list {
        padding: 30px 35px 10px 35px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section .container-fluid {
        padding: 0 30px;
    }
    
    .map-header {
        margin-bottom: 30px;
    }
    
    /* .map-title {
        font-size: 34px;
    } */
    
    .map-container {
        height: 350px;
        margin-bottom: 25px;
    }
    
    .distances-list {
        padding: 30px;
    }
    
    .distances-list li {
        padding: 15px 0;
    }
    
    .distance-name {
        letter-spacing: 0.3px;
        font-weight: 400;
    }
    
    .distance-value {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding: 50px 0;
    }
    
    .map-section .container-fluid {
        padding: 0 20px;
    }
    
    .map-title {
        font-size: 28px;
        font-weight: 400;
    }
    
    .map-container {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .distances-list {
        padding: 25px 20px;
    }
    
    .distances-list li {
        padding: 12px 0;
    }
    
    .distance-name {
        font-size: 14px;
        letter-spacing: 0.3px;
        font-weight: 400;
    }
    .map-header {
    margin-bottom: 10px;
    } 
    .map-title1 {
     font-size: 16px;
    }
    .map-title2 {
     font-size: 16px;
    }    
}

.copyright {
    padding: 15px 0;
    background-color: #6fa1bc;
    max-width: 1920px;
    margin: 0 auto;
}

.copyright .container-fluid {
    padding: 0 60px;
}

.copyright-text,
.license-text,
.created-by {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
}

.created-by a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.created-by a:hover {
    letter-spacing: 0.8px;
}

/* Floating Book Button */
.floating-book-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #7f9486;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgb(127 148 134 / 22%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-book-btn:hover {
    background-color: #a98050;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(190, 150, 93, 0.5);
}

@media (max-width: 768px) {
    .floating-book-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .copyright {
        padding: 20px 0;
    }
    
    .copyright .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .copyright {
        padding: 30px 0;
    }
    
    .copyright .container-fluid {
        padding: 0 30px;
    }
    
    .copyright .col-lg-4 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .copyright .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .copyright {
        padding: 25px 0;
    }
    
    .copyright .container-fluid {
        padding: 0 20px;
    }
}
