/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Navigation Panel από αριστερά */
.nav_panel {
    transform: translateX(-100%);
    left: 0 !important;
    right: auto !important;
}

.nav_panel.show {
    transform: translateX(0);
}

/* Close button position adjustment */
.nav_panel .closebt {
    left: 25px !important;
    right: auto !important;
}

/* Layer positioning */
.layer {
    z-index: 9998;
}

/* Hero Heading Style */
.hero .wrapper h1 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .wrapper small {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* Hero Description - Smaller and Less Bold */
.hero .wrapper .hero-description {
    font-family: 'Google Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 90%;
    margin: 0 auto;
}

/* Global Font - All Text Uses Google Sans */
* {
    font-family: 'Google Sans', sans-serif !important;
}

/* All Headers Use Google Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 600;
}

/* Body and Paragraph Text */
body {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

p, span, div, li, td, th {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

a {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 500;
}

/* Buttons */
.btn_1, .btn_1 a {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 600 !important;
}

/* Form Elements */
input, textarea, select {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

/* Navigation */
nav, nav a, nav ul, nav li {
    font-family: 'Google Sans', sans-serif !important;
}

/* Hero Video Background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    z-index: -1;
}

.image-placeholder {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border: 1px dashed #ccc;
    min-height: 200px;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Navigation Panel Address */
.address_panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  background-color: #faf8f5;
  padding: 20px;
}

.address-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: 20px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
  width: 100%;
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
  width: 100%;
  max-width: 220px;
  margin-left: auto;
  margin-right: 0;
}

.address-item i,
.phone-item i {
  font-size: 18px;
  color: #978667;
  margin-top: 2px;
  flex-shrink: 0;
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.address-text .street,
.address-text .area,
.address-text .city {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  font-weight: 500;
}

.address-text .area,
.address-text .city {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.phone-text a {
  font-size: 15px;
  color: #978667;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-text a:hover {
  color: #24262d;
}

/* Right alignment for all address elements */
.address-content > * {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Responsive alignment for mobile */
@media (max-width: 767px) {
  .address_panel {
    height: 120px;
    padding: 15px;
  }
  
  .address-content {
    gap: 15px;
    max-width: 260px;
    margin-right: 15px;
  }
  
  .address-item i,
  .phone-item i {
    font-size: 16px;
  }
  
  .address-text .street {
    font-size: 13px;
  }
  
  .address-text .area,
  .address-text .city {
    font-size: 12px;
  }
  
  .phone-text a {
    font-size: 14px;
  }
}

/* Legacy logo panel styles for footer */
.logo_panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  background-color: #faf8f5;
  padding: 20px;
}

.logo_panel img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Header Layout */
.header-content {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

/* Navigation στέκεται αριστερά */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.nav-left .btn_1 {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

/* Logo στο κέντρο */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.brand-wordmark {
    display: inline-block;
    font-size: 1.55rem;
    font-weight: 700 !important;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

header.reveal_header.headroom--not-top .brand-wordmark,
header.fixed_header.sticky .brand-wordmark {
    color: #24262d;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .header-content {
        height: 60px;
    }
    
    .nav-left {
        gap: 15px;
        margin-left: 0;
        padding-left: 0;
    }
    
    .nav-left .btn_1 {
        padding: 10px 18px;
        font-size: 13px;
        margin-left: 8px;
    }
    
    .logo-center {
        width: auto;
        height: auto;
    }
    
    .brand-wordmark {
        font-size: 1.25rem;
        letter-spacing: 0.14em;
    }
    
}

@media (max-width: 480px) {
    /* Mobile: Navigation δεξιά, Logo κέντρο */
    .header-content {
        position: relative;
        height: 60px;
    }
    
    .nav-left {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 10px;
        margin-left: 0;
        padding-left: 0;
        margin-right: 0;
        padding-right: 0;
    }
    
    .nav-left .btn_1 {
        padding: 6px 12px;
        font-size: 11px;
        margin-left: 5px;
        margin-right: 0;
    }
    
    .logo-center {
        position: absolute;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }
    
    .logo-center {
        width: auto;
        height: auto;
    }
    
    .brand-wordmark {
        font-size: 1.05rem;
        letter-spacing: 0.12em;
    }
    
}

/* Booking modal */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.booking-modal {
    background: #fff;
    border-radius: 14px;
    max-width: 960px;
    width: 100%;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.booking-modal__header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.booking-modal__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.booking-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.booking-modal__body {
    padding: 20px 24px 24px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.booking-rooms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.booking-room-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-room-card:hover {
    border-color: #978667;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.booking-room-card input[type="radio"] {
    accent-color: #978667;
}

.booking-room-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.booking-room-meta {
    color: #555;
    font-size: 14px;
    margin: 0;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px 16px;
    margin-top: 8px;
}

.booking-modal .btn_1 {
    width: 100%;
    margin-top: 12px;
}

@media (max-width: 576px) {
    .booking-modal-overlay {
        align-items: flex-start;
        padding: 10px;
        overflow-y: auto;
    }
    .booking-modal {
        max-width: none;
        width: 100%;
        border-radius: 12px;
        max-height: calc(100vh - 20px);
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }
    .booking-modal__header {
        padding: 16px 18px;
    }
    .booking-modal__body {
        padding: 16px 18px 20px;
    }
    .booking-rooms {
        grid-template-columns: 1fr;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .booking-modal__close {
        font-size: 22px;
    }
}

/* Hero Video Responsive */
@media (max-width: 767px) {
    .hero-video, .hero-image {
        min-width: auto;
        min-height: auto;
        width: 100%;
        height: 100%;
    }
    
    .hero .wrapper h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero .wrapper .hero-description {
        font-size: 0.85rem !important;
        max-width: 95%;
    }
}

/* Gastronomy page */
.gastronomy-hero .wrapper .title {
    max-width: 980px;
    margin: 0 auto;
}

.gastronomy-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.gastronomy-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(8px);
}

.gastronomy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.gastronomy-visual {
    min-height: 540px;
    overflow: hidden;
}

.gastronomy-note {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f4eee6 0%, #fbf8f4 100%);
    box-shadow: 0 20px 50px rgba(36, 38, 45, 0.08);
}

.gastronomy-note h3 {
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.gastronomy-note .list_ok {
    margin-bottom: 0;
}

.gastronomy-intro {
    max-width: 760px;
}

.gastronomy-card {
    height: 100%;
    padding: 34px 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(36, 38, 45, 0.08);
    border: 1px solid rgba(151, 134, 103, 0.14);
}

.gastronomy-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #978667 0%, #b49a72 100%);
}

.gastronomy-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.gastronomy-card p {
    margin-bottom: 0;
}

.gastronomy-highlight-box {
    margin-top: 48px;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f242b 0%, #333b45 100%);
    color: #fff;
    box-shadow: 0 25px 55px rgba(19, 22, 29, 0.18);
}

.gastronomy-highlight-box small,
.gastronomy-highlight-box h3,
.gastronomy-highlight-box p {
    color: #fff;
}

.gastronomy-inline-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gastronomy-inline-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gastronomy-inline-points i {
    color: #d9c29f;
}

.gastronomy-faq-card {
    height: 100%;
    padding: 30px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(151, 134, 103, 0.14);
    box-shadow: 0 14px 35px rgba(36, 38, 45, 0.06);
}

.gastronomy-faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.gastronomy-faq-card p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gastronomy-visual {
        min-height: 420px;
    }

    .gastronomy-highlight-box {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .gastronomy-hero-badges {
        gap: 10px;
    }

    .gastronomy-hero-badges span {
        width: 100%;
        justify-content: center;
    }

    .gastronomy-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gastronomy-hero-actions .btn_1 {
        width: 100%;
    }

    .gastronomy-visual {
        min-height: 300px;
    }

    .gastronomy-note,
    .gastronomy-card,
    .gastronomy-faq-card {
        padding: 24px 20px;
    }
}

/* About us page */
.about-hero .wrapper .title {
    max-width: 980px;
    margin: 0 auto;
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.about-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(8px);
}

.about-visual {
    min-height: 520px;
    overflow: hidden;
}

.about-note {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f4eee6 0%, #fbf8f4 100%);
    box-shadow: 0 20px 50px rgba(36, 38, 45, 0.08);
}

.about-note h3 {
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.about-note .list_ok {
    margin-bottom: 0;
}

.about-intro {
    max-width: 760px;
}

.about-card {
    height: 100%;
    padding: 34px 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(36, 38, 45, 0.08);
    border: 1px solid rgba(151, 134, 103, 0.14);
}

.about-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #978667 0%, #b49a72 100%);
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.about-card p {
    margin-bottom: 0;
}

.about-highlight-box {
    margin-top: 48px;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f242b 0%, #333b45 100%);
    color: #fff;
    box-shadow: 0 25px 55px rgba(19, 22, 29, 0.18);
}

.about-highlight-box small,
.about-highlight-box h3,
.about-highlight-box p {
    color: #fff;
}

.about-inline-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-inline-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-inline-points i {
    color: #d9c29f;
}

.about-faq-card {
    height: 100%;
    padding: 30px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(151, 134, 103, 0.14);
    box-shadow: 0 14px 35px rgba(36, 38, 45, 0.06);
}

.about-faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.about-faq-card p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-visual {
        min-height: 380px;
    }

    .about-highlight-box {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .about-hero-badges {
        gap: 10px;
    }

    .about-hero-badges span {
        width: 100%;
        justify-content: center;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-note,
    .about-card,
    .about-faq-card {
        padding: 24px 20px;
    }
}
