:root {
  --color-accent: #3a8389;
  --color-accent-hover: #2d686d;
  --color-accent-soft: #e4f3f4;
  /* Χρώμα από το λογότυπο */
  --color-warm: #ae9883;
  --color-warm-hover: #97826f;
  --color-warm-soft: rgba(174, 152, 131, 0.18);
  --color-warm-border: rgba(174, 152, 131, 0.45);
  --color-warm-text-on-dark: #e8ded4;
  --color-bg: #ffffff;
  --color-bg-subtle: #f6f8fa;
  --color-text: #2c4d52;
  --color-muted: #4a5568;
  --color-border: #dce4e8;
  --color-card: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(45, 104, 109, 0.12);
  --shadow-sm: 0 2px 12px rgba(45, 104, 109, 0.08);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell,
    "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
  background: linear-gradient(
    165deg,
    #418f96 0%,
    var(--color-accent) 38%,
    var(--color-accent-hover) 100%
  );
  border-bottom: 3px solid var(--color-warm);
  box-shadow: 0 6px 24px rgba(45, 104, 109, 0.35);
}

body.body--client-preview .site-header {
  top: 2.85rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: height 0.28s ease, padding 0.28s ease;
}

.site-header--compact .header-inner {
  height: 120px;
  padding: 0.5rem 1.25rem;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(720px, 78vw);
}
.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}
.brand img {
  width: 100%;
  height: auto;
  max-height: 210px;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: max-height 0.28s ease, max-width 0.28s ease;
}

.site-header--compact .brand {
  max-width: min(380px, 42vw);
}
.site-header--compact .brand img {
  max-height: 100px;
}

@media (max-width: 900px) {
  .brand {
    max-width: min(480px, 93vw);
  }
  .brand img {
    max-height: 165px;
  }
  .site-header--compact .brand {
    max-width: min(260px, 55vw);
  }
  .site-header--compact .brand img {
    max-height: 84px;
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: padding 0.28s ease, font-size 0.28s ease;
}
.site-header--compact .nav-desktop a {
  padding: 0.32rem 0.65rem;
  font-size: 0.88rem;
}
.site-header--compact .btn-on-dark {
  font-size: 0.8rem !important;
  padding: 0.28rem 0.75rem !important;
}
.site-header--compact .lang-pill {
  font-size: 0.68rem;
  padding: 0.15rem 0.45rem;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(174, 152, 131, 0.4),
    rgba(58, 131, 137, 0.4)
  );
  text-decoration: none;
}

.lang-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--color-warm-border);
  color: rgba(255, 255, 255, 0.75);
}
.lang-pill strong {
  color: var(--color-warm-text-on-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-warm-border);
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
  gap: 0.35rem;
  background: var(--color-accent-hover);
  border-top: 1px solid var(--color-warm-border);
}
.nav-mobile a {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.nav-mobile a:hover {
  background: linear-gradient(
    135deg,
    rgba(174, 152, 131, 0.28),
    rgba(58, 131, 137, 0.32)
  );
}

.btn-on-dark {
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--color-warm-text-on-dark) !important;
  border-color: var(--color-warm) !important;
  background: transparent;
}
.btn-on-dark:hover {
  background: var(--color-warm-soft) !important;
  color: #fff !important;
  text-decoration: none;
}
.nav-mobile.open {
  display: flex;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.breadcrumb-nav {
  margin: -0.5rem 0 1.25rem;
  padding: 0;
}
.breadcrumb-inner {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-accent-soft);
  margin-bottom: 0.25rem;
}
.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0;
  row-gap: 0.25rem;
  font-size: 0.88rem;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: var(--color-accent);
  font-weight: 500;
  opacity: 0.65;
  margin: 0 0.42rem;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb-item a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}
.breadcrumb-current {
  color: var(--color-text);
  font-weight: 600;
}

/* Αρχική: φωτο + overlay + αναζήτηση */
.home-hero-immersive {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(300px, 56vh, 560px);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-warm-border);
}
.home-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.home-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.38) 100%
  );
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.75rem, 6vw, 3.5rem) 1.25rem;
  min-height: clamp(300px, 56vh, 560px);
  gap: 1.35rem;
}
.home-hero-heading {
  margin: 0;
  font-size: clamp(1.55rem, 4.8vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 26ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.home-hero-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  background: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.32rem 0.32rem 1.2rem;
  gap: 0.4rem;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}
.home-hero-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  outline: none;
  color: var(--color-text);
  padding: 0.4rem 0;
}
.home-hero-search-input::placeholder {
  color: #9ca3af;
}
.home-hero-search-btn {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  background: #000030;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.68rem 1.4rem;
  border-radius: 999px;
  font-family: inherit;
  transition: background 0.2s ease;
}
.home-hero-search-btn:hover {
  background: #12123d;
}
@media (max-width: 520px) {
  .home-hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    padding: 0.75rem;
  }
  .home-hero-search-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

.hero {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 2.5rem;
}
.hero-text-wrap {
  padding-right: 0.5rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--color-accent-hover);
}
.hero-lead {
  color: var(--color-muted);
  font-size: 1.06rem;
  max-width: 48ch;
  margin: 0;
}
.hero-lead--prominent {
  font-size: 1.12rem;
  margin: 0 0 0.35rem;
}
.hero-actions {
  margin: 1.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-warm-border);
  line-height: 0;
  align-self: center;
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-card {
  grid-column: 1 / -1;
  background: linear-gradient(
    145deg,
    var(--color-accent) 0%,
    #347a80 55%,
    var(--color-accent-hover) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--color-warm);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hero-card h2 {
  margin: 0 0 0.5rem;
  color: var(--color-warm-text-on-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}
.hero-card a {
  color: #c9b8a8;
}
.hero-card a:hover {
  color: var(--color-warm-text-on-dark);
}

.hero-media--secondary img {
  max-height: 320px;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--color-accent-hover);
  border: 2px solid var(--color-accent);
}
.btn-ghost:hover {
  background: var(--color-accent-soft);
  text-decoration: none;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: #fff;
  background: #000030;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-warm);
  box-shadow: var(--shadow-sm);
}

.content-panel {
  background: linear-gradient(
    168deg,
    var(--color-accent) 0%,
    #358089 50%,
    var(--color-accent-hover) 100%
  );
  padding: 1.5rem 1.25rem 2rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.trips-panel .section-title {
  background: #000030;
  margin-top: 0;
}
.card-grid-on-dark {
  margin-top: 0.25rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-img-wrap {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-subtle);
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-accent-hover);
  line-height: 1.35;
}
.card-price {
  font-size: 0.9rem;
  color: var(--color-warm-hover);
  font-weight: 600;
  margin: 0;
}
.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  flex: 1;
}

.prose {
  max-width: 780px;
}
.prose .lead {
  font-size: 1.12rem;
  color: var(--color-muted);
}
.search-result-hint {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}
.search-result-hint a {
  font-weight: 600;
}
.search-result-hint-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}
.search-no-results {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: #fdf4f0;
  border: 1px solid #f0c8bc;
  border-radius: var(--radius);
  color: #5c3d35;
}
.search-no-results a {
  font-weight: 600;
}
.prose h2 {
  color: var(--color-accent-hover);
  margin-top: 1.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-accent-soft);
}
.prose p,
.prose li {
  color: var(--color-muted);
}
.prose-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.prose .page-featured-figure {
  margin: 0 0 1.25rem;
}
.prose .page-featured-img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* Πλέγμα προορισμών (σελίδα proorismoi κ.λπ.) */
.prose .dest-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.prose .dest-hub-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  background: var(--color-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.prose .dest-hub-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.prose .dest-hub-card-img {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-subtle);
  overflow: hidden;
  line-height: 0;
}
.prose .dest-hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prose .dest-hub-card-title {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-accent-hover);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
}

.site-footer {
  flex-shrink: 0;
  margin-top: 2rem;
  border-top: 3px solid var(--color-warm);
  padding: 2rem 1.25rem 2.5rem;
  background: linear-gradient(
    180deg,
    var(--color-accent-hover) 0%,
    var(--color-accent) 55%,
    #2f757b 100%
  );
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-links a {
  color: var(--color-warm-text-on-dark);
}
.footer-links a:hover {
  color: #fff;
}

.agent-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-warm);
  margin-bottom: 0.35rem;
  display: block;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
}

/* Admin */
.admin-body {
  background: #f0f2f8;
  color: #1a1d2b;
}
.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 48, 0.08);
}
.admin-table th,
.admin-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e5e8f0;
  text-align: left;
  font-size: 0.9rem;
}
.admin-table th {
  background: linear-gradient(
    90deg,
    var(--color-accent-hover),
    var(--color-accent)
  );
  color: #fff;
}
.admin-form label {
  display: block;
  font-weight: 600;
  margin: 0.75rem 0 0.25rem;
  font-size: 0.9rem;
}
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="email"],
.admin-form textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccd2e0;
  font: inherit;
  box-sizing: border-box;
  min-height: 2.5rem;
}
.admin-form textarea {
  min-height: 140px;
}
.flash {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.flash-ok {
  background: #e4f7ee;
  color: #0d5c2e;
  border: 1px solid #9ddbb5;
}
.flash-error {
  background: #fdecec;
  color: #8a1c1c;
  border: 1px solid #f0a8a8;
}

/* Μπάρα προεπισκόπησης για πελάτη (μετά από είσοδο travel/travel) */
.client-preview-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #1a3d42 0%, #2a6570 100%);
  color: #e8f4f5;
  border-bottom: 2px solid var(--color-warm);
  box-shadow: 0 4px 16px rgba(0, 0, 40, 0.2);
}
.client-preview-bar__text {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.client-preview-bar__out {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
}
.client-preview-bar__out:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}
