﻿
        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        html.lenis, html.lenis body {
            height: auto;
        }
        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
            scroll-navigation: contain;
        }
        .lenis.lenis-stopped {
            overflow: hidden;
        }
        .lenis.lenis-scrolling iframe {
            pointer-events: none;
        }

        /* --- ΜΗΔΕΝΙΣΜΟΣ & ΒΑΣΙΚΑ ΣΤΥΛ --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
          font-family: "Poppins", sans-serif !important;
  color: #575757;
  font-size: 1.01rem;
  line-height: 1.4;
  font-weight: 200;
        }
h1,h2,h3,h4,h5
{
    font-weight: 300;
  padding-bottom: 20px;
}
        /* --- LUXURY NAV BAR --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background: linear-gradient(to bottom,#292929 0,rgba(236, 236, 236, 0) 100%);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 1000;
            border-bottom: 1px solid #00a1b1;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            height: 100%;
        }

        .has-mega-menu {
            position: static;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-link {
           color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.2px;
            transition: opacity 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            height: 100%;
            cursor: pointer;
        }

        .nav-link:hover { opacity: 0.7; }
        .lang-select { display: flex; align-items: center; gap: 4px; cursor: pointer; }

        .search-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #fff;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
        }
        .search-icon::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 6px;
            background: #fff;
            bottom: -4px;
            right: -3px;
            transform: rotate(-45deg);
        }

        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1010;
        }

        .logo-text {
            font-family: "Noto Serif", serif ;
            font-size: 1.6rem;
            color: #fff;
            text-decoration: none;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1010;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        /* --- MEGA MENU STYLING --- */
        .mega-menu {
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background-color: #252525;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 4rem;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            z-index: 999;
        }

        @media (min-width: 951px) {
            .has-mega-menu:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        .mega-menu-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mega-menu-list li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
            transition: opacity 0.3s, padding-left 0.3s;
        }

        .mega-menu-list li a:hover { opacity: 1; padding-left: 5px; }

        .mega-menu-featured {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .mega-card {
            text-decoration: none;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mega-card-img {
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background-color: #111;
        }

        .mega-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .mega-card:hover .mega-card-img img { transform: scale(1.04); }

        .mega-card-title {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        /* --- 100VH HERO FADE SLIDER --- */
        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1.2s;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(84%); 
        }

        .hero-overlay-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100% - 140px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            pointer-events: none; 
            z-index: 10; 
            text-align: center;
            padding: 0 2rem;
        }

        .hero-title {
           font-family: "Noto Serif", serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
        }

        .hero-title span { font-weight: 300;
  opacity: 1; }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0.9;
            max-width: 700px;
            color: #ffffff;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            z-index: 20; 
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
            opacity: 0.4;
        }

        .slider-arrow:hover { opacity: 1; }
        .slider-arrow.prev { left: 2rem; }
        .slider-arrow.next { right: 2rem; }

        .arrow-icon {
            width: 40px;
            height: 40px;
            border-top: 1px solid #ffffff;
            border-left: 1px solid #ffffff;
        }

        .slider-arrow.prev .arrow-icon { transform: rotate(-45deg); }
        .slider-arrow.next .arrow-icon { transform: rotate(135deg); }

        /* --- BOOKING PANEL --- */
        .booking-panel-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 0 4rem 3rem 4rem;
            z-index: 30;
        }

        .booking-panel {
            width: 100%;
            max-width: 1400px;
            background: linear-gradient(to bottom,#2f2a2ad1 0,rgba(75, 75, 75, 0) 100%);
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .booking-top-text {
            font-size: 0.8rem;
            font-weight: 300;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: center;
            opacity: 0.8;
            color: #ffffff;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr 1.2fr;
            gap: 1.5rem;
            align-items: flex-end;
        }

        .booking-field { display: flex; flex-direction: column; gap: 0.5rem; }
        .booking-field label { font-size: 0.75rem; font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; color: #ffffff; }

        .booking-input {
            width: 100%;
            height: 45px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            font-size: 0.85rem;
            letter-spacing: 1px;
            padding: 0 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        font-weight: 200;
        }

        .booking-input:focus { border-color: rgba(255, 255, 255, 0.7); }
        .booking-input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; }

        select.booking-input {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }

        select.booking-input option { background-color: #111; color: #fff; }

        .booking-btn {
            width: 100%;
            height: 45px;
           background-color: #729391b8;
  border: 1px solid #b4b4b4;
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .booking-btn:hover { background-color: #fffefc; color: #575757; }

        /* --- WELCOME TO ATHENS TIARE HOTEL --- */
        .welcome-section {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 6rem 4rem 4rem 4rem;
            display: grid;
            grid-template-columns: 1.1fr 1fr 1.3fr;
            align-items: center;
            gap: 4rem;
            background-color: #fffefc;
        }
        
        .welcome-section2 {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 1rem 4rem 4rem 4rem;
            display: grid;
            grid-template-columns: 0.5fr 1fr 0.5fr;
            align-items: center;
            gap: 4rem;
            background-color: #fffefc;
        }

        .welcome-text-col { display: flex; flex-direction: column; justify-content: center; }

        .welcome-title {
       font-family: "Noto Serif", serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 0rem;
  letter-spacing: 0.5px;
  background-image: url("../images/fotterbg2.jpg");
  text-align: center;
        }

        .welcome-desc { font-size: 1.09rem;
  line-height: 1.5;
  color: #575757;
  font-weight: 200;
  text-align: center;
} 
        .welcome-desc p { margin-bottom: 1.5rem; }

        .welcome-building-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
        .welcome-building-img img { width: 100%; height: 100%; object-fit: cover; }

        .welcome-stairs-wrapper { position: relative; width: 100%; padding: 3rem 0 3rem 3rem; }
        .welcome-stairs-bg-box { position: absolute; top: 0; right: -2rem; width: 85%; height: 75%; background-color: #f2f2f2; z-index: 1; }
        .welcome-stairs-img { position: relative; width: 100%; aspect-ratio: 1.15 / 1; overflow: hidden; z-index: 2; }
        .welcome-stairs-img img { width: 100%; height: 100%; object-fit: cover; }

        /* --- ROOMS 3-COLUMN INFINITE SLIDER PANEL --- */
        .rooms-section {
            width: 100%;
            background-color: #fffefc;
            padding: 0rem 0 6rem 0;
            position: relative;
        }

        .rooms-slider-relative {
            position: relative;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            padding: 0 4rem; 
        }

        .rooms-clip-window {
            width: 100%;
            overflow: hidden;
        }

        .rooms-track {
            display: flex;
            width: 100%;
        }

        .room-card {
            position: relative;
            flex: 0 0 33.3333%; 
            width: 33.3333%;
            aspect-ratio: 1.18 / 1;
            overflow: hidden;
            padding: 0 10px;
            background-clip: content-box;
            background-color: #000;
        }

        .room-img-wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .room-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(100%);
            transition: transform 0.7s ease;
        }

        .room-card:hover .room-img { transform: scale(1.03); }

        .room-overlay {
            position: absolute;
            top: 0;
            left: 10px;
            right: 10px;
            bottom: 0;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            /*background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 50%);*/
            background: linear-gradient(to top, rgba(0, 0, 0, 0.67) 0%, rgba(93, 100, 102, 0.11) 50%);
            color: #ffffff;
            pointer-events: none;
        }

        .room-title {
            font-family: "Noto Serif", serif ;
            font-size: 1.6rem;
            font-weight: 600; 
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .room-details { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2.5rem; }
        
        .room-detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 300;
            opacity: 0.85;
            letter-spacing: 0.5px;
        }

        .room-icon { width: 16px; height: 16px; fill: none; stroke: #ffffff; stroke-width: 1.2; opacity: 0.9; }

        .room-bottom-actions { width: 100%; display: flex; justify-content: space-between; align-items: center; pointer-events: auto; }

        .room-explore-link {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ffffff;
            text-decoration: none;
            position: relative;
            padding-bottom: 2px;
        }

        .room-explore-link::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: rgba(255,255,255,0.4); transition: background-color 0.3s;
        }
        .room-explore-link:hover::after { background-color: #fffefc; }

        .room-book-btn {
              background-color: #729391;
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 0.75rem 1.8rem;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        .room-book-btn:hover { background-color: #fffefc; color: #575757; border-color: #ffffff; }

        .rooms-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #575757; 
            cursor: pointer;
            z-index: 10;
            padding: 2rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.4;
            transition: opacity 0.3s;
        }

        .rooms-arrow:hover { opacity: 1; }
        .rooms-arrow.prev { left: 1rem; }
        .rooms-arrow.prev .rooms-arrow-icon { transform: rotate(-45deg); }
        .rooms-arrow.next { right: 1rem; }
        .rooms-arrow.next .rooms-arrow-icon { transform: rotate(135deg); }

        .rooms-arrow-icon {
            width: 30px;
            height: 30px;
            border-top: 1px solid #000000;
            border-left: 1px solid #000000;
        }

        /* --- PANEL 5: ATHENS LOCATION (STUDIO DADO STYLE) --- */
        .panel-dado-style {
            background-color: #729391;
            color: #575757;
            padding: 8rem 4rem 4rem 4rem;
            width: 100%;
            position: relative;
            z-index: 10;
        }

        .dado-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #fff;
            padding-bottom: 2rem;
            margin-bottom: 4rem;
        }

        .dado-giant-title {
            font-family: "Noto Serif", serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #f2f2f2;
        }

        .dado-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .dado-media-zone {
            width: 100%;
            aspect-ratio: 1.25 / 1;
            overflow: hidden;
        }

        .dado-media-zone video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dado-text-zone {
            display: flex;
            gap: 3rem;
            align-items: start;
        }

        .dado-small-tag {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            padding-top: 5px;
        }

        .dado-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .dado-main-text {
           font-size: 1.45rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 200;
        }

        .dado-sub-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #444444;
        }

        .dado-link {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #575757;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .dado-link:hover { opacity: 0.7; }

        /* --- EDITORIAL ASYMMETRIC PANEL --- */
        .panel-editorial-luxury {
            background-color: #fffefc;
            color: #575757;
            padding: 1rem 4rem;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 1.3fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 10;
            min-height: 730px;
        }

        .editorial-text-side {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 540px;
        }

        .editorial-tag {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #888888;
            margin-bottom: 1.5rem;
        }

        .editorial-giant-heading {
            font-family: "Noto Serif", serif ;
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 2.5rem;
            color: #111111;
        }

        .editorial-body-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444444;
            margin-bottom: 3rem;
        }

        .editorial-discover-btn {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #575757;
            text-decoration: none;
            border-bottom: 2px solid #000000;
            padding-bottom: 6px;
            transition: opacity 0.3s;
        }

        .editorial-discover-btn:hover { opacity: 0.6; }

        .editorial-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            position: relative;
            width: 100%;
        }

        .editorial-img-container {
            width: 100%;
            overflow: hidden;
            background-color: #f7f7f7;
            box-shadow: 0 30px 60px rgba(0,0,0,0.04);
        }

        .editorial-img-container.left-offset {
            transform: translateY(40px);
            aspect-ratio: 1 / 1.35;
        }

        .editorial-img-container.right-offset {
            transform: translateY(-40px);
            aspect-ratio: 1 / 1.35;
        }

        .editorial-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .editorial-img-container:hover img { transform: scale(1.04); }

        /* --- NEW EDITORIAL SPLIT SECTION (FROM IMAGE) --- */
        .editorial-split-section {
            background-color: #fffefc;
  color: #575757;
padding: 2rem 4rem 4rem 4rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8rem;
  position: relative;
  z-index: 10;
  background: url('../images/main1bg.jpg');
        }
        
         .editorial-split-section2 {
            background-color: #fffefc;
  color: #575757;
padding: 4rem 4rem 2rem 4rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8rem;
  position: relative;
  z-index: 10;
  background: url('../images/fotterbg2.jpg');
        }

        /* Left Side: Projects Rows */
        .editorial-projects-side {
            display: flex;
            flex-direction: column;
        }

        .project-row {
          display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: ;
  transition: opacity 0.3s ease;
        }

        .project-row:first-of-type {
            border-top: 1px solid #00a1b1;;
        }

        .project-title {
            font-family: "Noto Serif", serif ;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: -0.5px;
            color: #00a1b1;
            text-transform: uppercase;
        }

        .project-action-link {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #575757;
            text-decoration: none;
            position: relative;
            padding-bottom: 4px;
            transition: opacity 0.3s ease;
        }

        .project-action-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #575757;
            transform: scaleX(1);
            transform-origin: bottom left;
            transition: transform 0.3s ease;
        }

        .project-action-link:hover::after {
            transform: scaleX(0);
            transform-origin: bottom right;
        }

        /* Right Side: Approach Information */
        .editorial-approach-side {
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 140px;
            height: fit-content;
        }

        .approach-tag {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #00a1b1;
            margin-bottom: 2rem;
        }

        .approach-heading {
            font-family: "Noto Serif", serif ;
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.15;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #575757;
        }
        .approach-heading2 {
            font-family: "Noto Serif", serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #575757;
        }
          .approach-heading3 {
            font-family: "Noto Serif", serif ;
            font-size: 1.25rem;
            font-weight: 300;
            line-height: 1.15;
            margin-bottom: 2rem;
            color: #729391;
        }

        .approach-description {
            font-size: 1rem;
            line-height: 1.75;
            color: #444444;
        }
        
        .gastronomy-section {
   padding: 8rem 4rem;
  background-color: #fffefc;
  background-image: url("../images/fotterbg2.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}

.gastronomy-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}
.gastronomy-content2{
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}


.gastronomy-tag {
font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #323232;
  display: block;
  margin-bottom: 2rem;
  font-weight: 300;
}

.gastronomy-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 200;
}

.gastronomy-image-col img, 
.gastronomy-lifestyle-col img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


.gastronomy-slider-section {
    padding: 8rem 4rem;
    background-color: #729391;
}

.gastro-info {
    max-width: 400px;
    margin-bottom: 3rem;
}

.gastro-tagline {
    font-family: "Noto Serif", serif;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.gastro-explore {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.gastro-slider-container {
    width: 100%;
    overflow-x: auto;
    cursor: grab;
    /* Hide scrollbar */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.gastro-slider-container::-webkit-scrollbar { display: none; }

.gastro-track {
    display: flex;
    gap: 1.5rem;
    /* Smooth transition effect on active drag */
    transition: transform 0.3s ease-out;
}

.gastro-card {
    flex: 0 0 28%; /* Αυτό δείχνει "3 και κάτι" images */
    aspect-ratio: 4/5;
    overflow: hidden;
}

.gastro-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gastro-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 950px) {
    .gastro-card { flex: 0 0 70%; } /* Πιο μεγάλα στο κινητό */
    .gastronomy-slider-section { padding: 4rem 1.5rem; }
}

/* Responsive adjustment */
@media (max-width: 950px) {
    .gastronomy-content { grid-template-columns: 1fr; padding: 0 1.5rem; }
    .gastronomy-section { padding: 0rem 0rem; padding-top: 100px;}
    
            .masonry-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  grid-auto-rows: 450px;
  grid-auto-flow: dense;
  gap: 40px;
  padding: 40px;
  background: #fdfdfd;
}
.booking-input {
  height: 35px;

}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-content h1 {
  font-size: 2rem !important;
  margin: 0 auto;
  font-weight: 200;
  line-height: 1.2;
  color: #eaeaea;
  letter-spacing: -2px;
}
.footer-horizontal-row a {
  color: #fff !important;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  opacity: 1;
  transition: opacity 0.3s;
}
      .editorial-split-section2 
        {
            grid-template-columns: 1fr !important ;
        }

    
}

        /* --- THE GENUINE PREMIUM FOOTER --- */
        .main-footer {
         background: linear-gradient(to bottom,#62807e 0,rgba(91, 89, 89, 0.61) 100%);
  color: #fff;
  padding: 6rem 4rem 3rem 4rem;
  position: relative;
  z-index: 10;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 200;
  background: url('../images/bg2.png');
  border-top: 9px solid #eee7e1;
        }

  
        .footer-top-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 6rem;
            background: #5c8c8f99;
  padding: 40px;
        }

        .footer-brand-side h2 {
            font-family: "Noto Serif", serif ;
            font-size: 2.2rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .footer-brand-side p {
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.9;
            max-width: 340px;
            line-height: 1.6;
        }

        .footer-nav-links { display: flex; gap: 6rem; }

        .footer-col-title {
            font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  color: #e3fcffe3;
        }
        .footer-brand-side img
        {
            padding-bottom:30px;
        }
        .footer-vertical-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-right: 1px solid #00a1b1; 
  padding: 10px;
        }

        .footer-vertical-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .footer-vertical-links a:hover { opacity: 1; }

        .footer-newsletter-box {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 300px;
        }

        .newsletter-form-field {
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .newsletter-form-field input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 0.85rem;
            width: 100%;
            padding-right: 2rem;
        }

        .newsletter-form-field button {
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            position: absolute;
            right: 0;
            font-size: 1rem;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .newsletter-form-field button:hover { opacity: 1; }

        .footer-bottom-bar {
          border-top: 1px solid #00a1b1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5c8c8f47;
  padding: 1rem;
}
        }

        .footer-copyright {
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .footer-horizontal-row { display: flex; align-items: center; gap: 1rem; }

        .footer-horizontal-row a {
          color: #378d91;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  opacity: 1;
  transition: opacity 0.3s;
        }

        .footer-horizontal-row a:hover { opacity: 1; }

        .footer-slash-divider {
            color: #ffffff;
            opacity: 0.2;
            font-size: 0.75rem;
            user-select: none;
        }

        .footer-social-icons-wrapper { display: flex; align-items: center; gap: 1.2rem; }

        .footer-social-icon-link svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
            opacity: 0.5;
            transition: opacity 0.3s, transform 0.3s;
        }

        .footer-social-icon-link:hover svg { opacity: 1; transform: translateY(-2px); }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1400px) {
            .welcome-section { gap: 2.5rem; padding: 6rem 2rem 3rem 2rem; }
            .welcome-title { font-size: 2.3rem; }
            .room-overlay { padding: 1.8rem; }
            .room-title { font-size: 1.4rem; }
            .panel-editorial-luxury { gap: 4rem; }
            .editorial-giant-heading { font-size: 2.1rem; }
            .editorial-split-section { gap: 4rem; }
            .approach-heading { font-size: 2.2rem; }
        }

        @media (max-width: 1150px) {
            .welcome-section { grid-template-columns: 1fr 1.2fr; }
            .welcome-building-img { order: 1; }
            .welcome-stairs-wrapper { order: 2; padding: 2rem 0 0 2rem; }
            .welcome-stairs-bg-box { right: -1rem; width: 90%; }
            .footer-nav-links { gap: 3rem; }
        }

        @media (max-width: 992px) {
    /* Όταν το γονικό στοιχείο έχει την κλάση is-active, δείχνουμε το mega-menu */
    .menu-item-has-children.is-active .mega-menu, 
    .has-mega-menu.is-active .mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important; /* Για να μην κρύβεται πίσω από άλλα */
    }
}
        @media (max-width: 950px) {
            .hamburger { display: flex; }
            
            .nav-group {
                position: fixed; top: 0; left: 100%; width: 100%; height: 100vh;
                background-color: #000; flex-direction: column; justify-content: flex-start;
                align-items: flex-start; gap: 0rem; transition: left 0.4s ease;
                padding: 120px 2rem 40px 2rem; overflow-y: auto;
            }
            .nav-group.left-nav { z-index: 1004; }
            .nav-group.right-nav { display: none; } 
            .nav-open .left-nav { left: 0; }
            .nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
            .nav-open .hamburger span:nth-child(2) { opacity: 0; }
            .nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); }

            .has-mega-menu { flex-direction: column; align-items: flex-start; width: 100%; height: auto; }
            .nav-link { height: 50px; width: 100%; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.05); justify-content: space-between; }
            
            .mega-menu {
                position: relative; top: 0; grid-template-columns: 1fr; padding: 1rem 0; gap: 1.5rem;
                background-color: transparent; border-bottom: none; display: none; opacity: 1; visibility: visible; transform: none;
            }
            
            .mega-menu.open-mobile { display: grid; }
            .mega-menu-featured { grid-template-columns: 1fr; gap: 1.5rem; }
            .mega-card-img { display: none; }
            .mega-card-title { display: none; }

            .hero-slider-container { height: auto; min-height: 100vh; display: flex; flex-direction: column; }
            .hero-overlay-content { position: relative; height: auto; padding: 140px 1.5rem 40px 1.5rem; flex-grow: 1; justify-content: center; }
            .hero-title { font-size: 2.2rem; letter-spacing: 2px; }
            .hero-subtitle { font-size: 0.9rem; }
            
            .slide { position: absolute; } 
            .slider-arrow { top: 40%; }
            .slider-arrow.prev { left: 0.5rem; }
            .slider-arrow.next { right: 0.5rem; }
            .arrow-icon { width: 22px; height: 22px; }

            .booking-panel-wrapper { position: relative;
    padding: 1rem 4rem;
    background: #00000052;}
            .logo-text  img {max-width: 120px !important;
  padding-top: 5px;}
  .site-header {
  height: 70px;
  }
            .booking-panel { background: transparent; border: none; padding: 0; }
            .booking-form { grid-template-columns: 1fr; gap: 1.2rem; }

            .welcome-section { grid-template-columns: 1fr; padding: 4rem 1.5rem 1rem 1.5rem; gap: 3rem;padding-top: 100px; }
            .welcome-title { font-size: 2rem; margin-bottom: 1.5rem; }
            .welcome-stairs-wrapper { padding: 1.5rem 0 0 1.5rem; }

            .rooms-section { padding: 4rem 0; }
            .rooms-slider-relative { padding: 0; }
            .room-card { flex: 0 0 100%; width: 100%; aspect-ratio: 1 / 1.15; padding: 0; }
            .room-overlay { left: 0; right: 0; padding: 2rem 1.5rem; }
            .rooms-arrow { color: #ffffff; opacity: 0.7; }
            .rooms-arrow-icon { border-color: #ffffff; width: 22px; height: 22px; }

            .panel-dado-style { padding: 4rem 1.5rem; }
            .dado-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .dado-text-zone { flex-direction: column; gap: 1rem; }
            .dado-giant-title { font-size: 6vw; }
            .dado-main-text { font-size: 1.15rem; }

            .panel-editorial-luxury { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 4rem; }
            .editorial-giant-heading { font-size: 1.8rem; margin-bottom: 1.5rem; }
            .editorial-image-grid { gap: 1.5rem; }
            .editorial-img-container.left-offset { transform: translateY(20px); }
            .editorial-img-container.right-offset { transform: translateY(-20px); }

            /* New Section Mobile Styling */
            .editorial-split-section { grid-template-columns: 1fr; padding: 1rem 2rem; gap: 4rem; }
            .project-title { font-size: 1.1rem; }
            .editorial-approach-side { position: relative; top: 0; }
            .approach-heading { font-size: 2rem; }
            .project-action-link {
                font-size: 0.65rem;
            }
            .welcome-section2 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 4rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
  background-color: #fffefc;
}
.amenities-list .text {
  font-size: 1rem  !important;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
            .footer-brand-side svg
            {
                width: 200px;
  margin-left: -30px;
  height: 110px !important;
            }
            .main-footer { padding: 4rem 1.5rem 2rem 1.5rem; }
            .footer-top-row { flex-direction: column; gap: 3rem; margin-bottom: 3.5rem; }
            .footer-nav-links { flex-direction: column; gap: 2.5rem; width: 100%; }
            .footer-bottom-bar { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
            .footer-horizontal-row { flex-wrap: wrap; gap: 0.5rem 0.8rem; }
            
            
        }

    .hero {
position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #729391;
  overflow: hidden;
  border-top: 9px solid #eee7e1;
}

/* Τα αφηρημένα γεωμετρικά σχήματα */
.blob {
  position: absolute;
  filter: blur(80px); /* Το κλειδί για το elegant look */
  opacity: 0.6;
  z-index: 1;
}

.blob-1 {
width: 400px;
  height: 400px;
  background: #fff;
  top: -100px;
  left: -100px;
  border-radius: 40% 60% 70% 30% / 20% 50% 60% 50%;
}

.blob-2 {
width: 300px;
  height: 300px;
  background: #fff;
  bottom: -50px;
  right: -50px;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
}

.hero-content p
{
    color: #e3fcffa3;
}
.hero-content h1
{
font-size: 3rem;
  margin: 0 auto;
  font-weight: 200;
  line-height: 1.2;
  color: #eaeaea;
  letter-spacing: -2px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}

.divider { width: 60px;
  height: 1px;
  background: #7ccce3;
  margin: 20px auto; }
  
  /* Language Dropdown */
.lang-selector { position: relative; display: inline-block; margin-right: 20px;font-size: 14px; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    min-width: 60px;
}
.lang-trigger
{
    color:#fff;
    text-decoration: none;
}
.lang-selector:hover .lang-dropdown { display: block; }
.lang-dropdown a { display: block; color: #333; padding: 5px 0; text-decoration: none; }

/* Elegant Button */
.btn-book-now {
padding: 10px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-book-now:hover {
background: #729391b8;
  color: #fff;
  border: 1px solid #ddd;

}


.amenities-list .icon {
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.amenities-list .icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenities-list {
  list-style: none;
  font-size: 14px;
  padding-bottom: 20px;
  line-height: 1.4;
  font-weight: 200;
}


 .sister-hotels-wrapper {
            display: flex;
            gap: 40px; /* Η απόσταση που ζήτησες */
            padding: 80px 40px;
            height: 70vh;
            background: #fdfdfd;
            position: relative;
            max-width:1280px;
            margin:0px auto;
            max-width: 1100px;
        }

        /* Το ασύμμετρο background shape */
        .sister-hotels-wrapper::before {
            content: '';
            position: absolute;
            top: 10%; left: 10%;
            width: 400px; height: 400px;
            background: #f0f0f0;
            border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
            z-index: 0;
            filter: blur(60px);
        }

        .hotel-card {
            flex: 1;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
        }

        .hotel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hotel-card:hover img { transform: scale(1.03); }

        .title-box {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: #fff;
            transition: letter-spacing 0.6s ease;
        }

        .hotel-card:hover .title-box { letter-spacing: 8px; }

        .title-box h3 {
           font-size: 2rem;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: uppercase;
        }
        
        
         .coverofpage {
            height: 85vh;
            width: 100%;
            position: relative;
            
            display: flex;
            align-items: flex-end; 
            padding: 60px;
            overflow: hidden;
        }

        /* Το Explore στη μέση δεξιά, "ξεκολλημένο" από την άκρη */
        .explore-tag {
            position: absolute;
            top: 80%;
            right: 10%; /* Ξεκολλημένο από τη δεξιά άκρη */
            transform: translateY(-50%);
            color: #ffffff;
            font-family: 'Helvetica Neue', sans-serif;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.8rem;
            z-index: 2;
            cursor: pointer;
            writing-mode: vertical-rl; /* Αν θέλεις να είναι κάθετο, αλλιώς βγάλτο */
            text-orientation: mixed;
        }

        .about-tag {
        font-size: 4rem;
  font-weight: 300;
  color: #ffffff;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  font-family: "Noto Serif", serif !important;
        }

        .fade-out {
            opacity: 0;
            transform: translateY(40px);
        }
        
        .slogan-container {
    position: absolute;
    top: 160px;    /* Ίδια απόσταση με το padding του .coverofpage */
    right: 60px;  /* Ίδια απόσταση με το padding του .coverofpage */
    text-align: right;
    z-index: 5;
    color: #ffffff;
}

.slogan-small {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.slogan-large {
font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.2;
  background: #0000004f;
  padding: 10px;

}

/* Responsive προσαρμογή */
@media (max-width: 768px) {
    .slogan-container {
        top: 120px;
        right: 30px;
    }
    .slogan-large {
        font-size: 1.8rem;
    }
    .venue-wrapper {
      display: block !important;
      gap: 20px;
      padding: 3rem;
      grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    }
    .gallery-item:nth-child(4n+1) {
  grid-row: span 1 !important;
}
  .welcome-building-img {
    order: 1;
    display: none;
  }
  .promo-section {
display: grid !important;
    grid-template-columns: 100% !important;
  align-items: center;
  min-height: 80vh;
  background-image: url('../images/main1bg.jpg');
  background-size: cover;
}
.overlap-title {
  font-size: 1.9rem  !important;
}
.text-content {
  padding: 40px;
  text-align: center;
  margin: 0px auto;
  order: 2;
  padding-bottom: 120px !important;
}
.image-wrapper {
  position: relative;
  width: 100%;
  margin-left: 0%;
  order: 1;
  
}
.sister-hotels-wrapper {
  display: block;
  gap: 40px;
  padding: 0px 60px;
  height: auto;
  background: #fdfdfd;
  position: relative;
  max-width: 1280px;
  margin: 0px auto;
  max-width: 1100px;
}
}
        
    
    
    
    .RoomPagedescription {
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  background: #fff;
  padding: 20px;
}

/* Κεντράρισμα περιεχομένου στο 1ο κουτί */
.rp-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 200;
  line-height: 1.4;
}

/* Στυλ για τις φωτογραφίες */
.rp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Στυλ για το link */
.book-now-link {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #83aab3;
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.book-now-link:hover {
  background-color: #444;
}

/* Responsive διάταξη για κινητά */
@media (max-width: 768px) {
  .RoomPagedescription {
    grid-template-columns: 1fr;
  }
}









.room-amenities-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  background-color: #83aab3; /* Χρώμα του panel */
}

/* Αριστερό Panel Στυλ */
.amenities-content {
margin: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #628186;
  padding: 40px;
  font-family: "Noto Serif", serif !important;
}

.amenities-list {
  list-style: none;
  padding: 0;
  padding-top: 40px;
}

.amenities-list li {
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Δεξί Panel Slider */
.amenities-slider {
  width: 100%;
  height: 900px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

/* Custom Arrows */
.swiper-button-next, .swiper-button-prev {
  color: white !important;
  padding: 30px;
  border-radius: 50%;
}






 .masonry-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 450px;
            grid-auto-flow: dense;
            gap: 40px; /* Το gap που ζήτησες */
            padding: 40px;
            background: #fdfdfd;
        }

        .gallery-item {
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item:nth-child(4n+1) { grid-row: span 2; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .gallery-item:hover img { transform: scale(1.05); }

        /* Minimal Fancybox Overlay */
        #fancybox-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255,255,255,0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 50px;
        }

        #fancybox-overlay img {
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
    
    
    
    
    
    
    
    
    
    
    .centralpromoboxes {
display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #7293919c;
  min-height: 600px;
  max-width: 1480px;
  margin: 0px auto;
  width: 95%;
}

.cp-info {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Κάθετο κεντράρισμα των boxes */
  gap: 30px;
  color: #333;
  text-align: center;
}

.cp-item h3 {
font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 200;
}

.cp-item hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 25px;
}

/* Download Button στυλ */
.download-btn {
display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  width: fit-content;
  margin: 0px auto;
    margin-top: 0px;
  margin-top: 40px;
}

/* Δεξί Panel Φωτογραφία */
.cp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .centralpromoboxes {
    grid-template-columns: 1fr;
  }
}




.promo-section {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  min-height: 80vh;
  background-image: url('../images/main1bg.jpg');
  background-size: cover;
}

.image-wrapper {
position: relative;
  width: 100%;
  margin-left: 0%;
}

.image-wrapper img { width: 100%; display: block; }

/* Το εφέ του τίτλου */
.overlap-title {
     font-size: 2.9rem;
  font-family: "Poppins", sans-serif !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); /* Το κεντράρει πάνω στο πάνω όριο */
  width: 100%;
  margin: 0;
 color: #fff;
  line-height: 1;
  width:60%;
  text-align:center;
}

/* Το "μαγικό" clip-path που έστειλες */
.overlap-title:before {
  content: attr(data-title);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  color: #236f7c; /* Χρώμα πάνω στην εικόνα */
  width: 100%;
  overflow: hidden;
  /* Εδώ ορίζουμε το clipping πάνω στο πλάτος της εικόνας */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.text-content {
  padding: 40px;
  text-align: center;
  margin: 0px auto;
}


    .amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.amenities-list .icon {
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b7b7b;
}

.amenities-list .icon svg {
  width: 19px;
  height: 19px;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ffffffa3;
}

.amenities-list .text {
 font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}


    .dual-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-top: 20px;
}

/* BOOK NOW — Black button */
.book-btn {
  background: #000;
  color: #fff;
  border-color: #000;
}

.book-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* VIEW MORE — Gold / Sand / Accent color */
.view-btn {
background: #729391b8;
  color: #fff;
  border-color: #729391b8;
}

.view-btn:hover {
  background: #fff;
  color: #729391;
  font-weight:200;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(199,169,123,0.35);
}







.contacthotel {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 80vh;
  padding-top:50px;
  
}

.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.contact-content { padding: 60px 100px;   margin: 0px auto;}

/* Column των Details */
.details-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
  text-align: center;

}

.contact-header
{
     text-align: center;
}

.detail-item h3  
{
    font-family: "Noto Serif", serif;
  margin: 0 0 5px 0;
  color: #62807e;
  font-style: italic;
     }
.detail-item p { margin: 0; font-size: 0.9rem; }

/* Φόρμα */
.hotel-form input, .hotel-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #7a9eab;
  background: transparent;
  padding: 10px 0;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .contacthotel { grid-template-columns: 1fr; }
  .contact-image { height: 300px; order: -1; }
  .contact-content { padding: 40px; }
}

.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bespoke-form input, 
.bespoke-form select, 
.bespoke-form textarea {
width: 100%;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 15px 0;
  margin-bottom: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  font-weight: 100;
}

/* Η "γραμούλα" που δυναμώνει στο focus */
.bespoke-form input:focus, 
.bespoke-form select:focus, 
.bespoke-form textarea:focus {
    border-bottom: 2px solid #000; /* Γίνεται πιο έντονη και μαύρη */
}

.bespoke-form button {
    width: 100%;
    background: #62807e;
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.bespoke-form button:hover { background: #333; }

.form-footer {
    text-align: center;
    font-family: serif;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 20px;
    color: #666;
}







.blog-slider-wrapper {
position: relative;
  width: 100%;
}

.blog-slider-title {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.blog-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-slide {
    display: flex;
    gap: 50px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity .6s ease;
}

.blog-slide.active {
    opacity: 1;
    position: relative;
}

.card {
    width: 28%;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 620px; /* πριν 320px */
    object-fit: cover;
}


.card .date {
margin-top: 12px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .5px;
  text-align: center;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 60px;
    color: #000;
    cursor: pointer;
    z-index: 20;
    padding: 10px 20px;
    font-weight: 100;
    transition: opacity .3s ease;
  font-weight: 100;
font-size: 42px;

    opacity: .7;
}

.arrow:hover {
        opacity: .35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

/* TABLET — 2 cards */
@media (max-width: 992px) {
    .blog-slide {
        gap: 30px;
    }

    .card {
        width: 42%;
    }

    .card img {
        height: 360px;
    }

    .arrow.left {
        left: 20px;
    }

    .arrow.right {
        right: 20px;
    }
}

/* MOBILE — 1 card */
@media (max-width: 600px) {
    .blog-slide {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .card {
        width: 85%;
    }

    .card img {
        height: 300px;
    }

    .blog-slider-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .arrow {
        font-size: 38px;
        padding: 5px 10px;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }
}


/*******************************/


    
    
    
     @media (max-width: 780px) /***SOS1****/
     {
         .site-header 
            {
                padding: 0 1rem;
            }
            .about-tag {
  font-size: 2.2rem;
  font-weight: 300;
  color: #ffffff;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  font-family: "Noto Serif", serif !important;
  line-height: 1.2;
}
.room-amenities-panel {
  display: inline;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  background-color: #83aab3;
}
.editorial-projects-side img
{
    max-width:100% !important;
}
     }
        
        @media (min-width: 1024px) and (max-width: 1480px)
        {
            .site-header 
            {
                padding: 0 1rem;
            }
            .nav-link {
              color: #ffffff;
              text-decoration: none;
              text-transform: uppercase;
              font-size: 0.65rem;
              font-weight: 300;
              letter-spacing: 1.2px;
              transition: opacity 0.3s ease;
              white-space: nowrap;
              display: flex;
              align-items: center;
              height: 100%;
              cursor: pointer;
            }
        }
        
        
        
        
        
        