:root {
  --purple:#7E5BB0; --purple-deep:#5A3F8F; --purple-soft:#A98DCB;
  --purple-pale:#EDE6F5; --purple-mist:#F8F5FB;
  --ink:#2A1F3F; --ink-soft:#5C5170; --cream:#FBF9F4;
  --line:rgba(126,91,176,0.18);
  --shadow-sm:0 2px 12px rgba(90,63,143,0.08);
  --shadow-md:0 12px 36px rgba(90,63,143,0.14);
  --serif:'Cormorant Garamond', Georgia, serif;
  --sans:'Inter', -apple-system, sans-serif;
}

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

body {
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* Spacing for paragraphs inside content sections */
section.content p {
  line-height:1.5;
  margin-top:3em;
  margin-bottom:2em;
}

/* Merged top bar (dark) – thinner & inline */
.nav {
  position:sticky;
  top:0;
  z-index:100;
  padding:6px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#3a3140;
  color:rgba(255,255,255,0.78);
  border-bottom:1px solid var(--line);
  white-space:nowrap;
}
.nav-logo {
  display:flex;
  align-items:center;
  gap:12px;
}
.nav-logo img {
  width:42px;
  height:42px;
  object-fit:contain;
}
.nav-logo .nl-text {
  font-family:var(--serif);
  font-weight:600;
  font-size:18px;
  color:#fff;
  line-height:1.05;
}
.nav-logo small {
  display:block;
  font-size:9px;
  font-weight:500;
  letter-spacing:0.22em;
  color:rgba(255,255,255,0.7);
  margin-top:2px;
  text-transform:uppercase;
}

.nav-right {
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:nowrap;
}

.nav-contact {
  display:flex;
  align-items:center;
  gap:18px;
  font-size:11px;
  color:rgba(255,255,255,0.78);
}
.nav-contact .u-item {
  display:flex;
  align-items:center;
  gap:7px;
}
.nav-contact svg {
  width:13px;
  height:13px;
  stroke:rgba(255,255,255,0.6);
  stroke-width:1.6;
  fill:none;
}
.nav-contact a:hover {
  color:#fff;
}

.nav-actions {
  display:flex;
  align-items:center;
  gap:14px;
}

.lang-toggle {
  display:flex;
  background:rgba(255,255,255,0.12);
  border-radius:30px;
  padding:3px;
  font-size:12px;
  font-weight:600;
}
.lang-toggle button {
  padding:6px 14px;
  border-radius:30px;
  color:rgba(255,255,255,0.8);
  transition:0.25s;
}
.lang-toggle button.active {
  background:#fff;
  color:#3a3140;
}

/* Hero hub – full-bleed rectangular */
.hero {
  position:relative;
  min-height:calc(100vh - 80px);
  background:linear-gradient(180deg,#F5F0FA 0%,#E8DDF0 100%);
  padding:0;
  overflow:hidden;
  display:block;
}
.hub-wrap {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hub-svg {
  width:100%;
  height:100%;
  overflow:visible;
}

.seg { cursor:pointer; }

.seg-fill {
  transition:filter 0.25s ease, stroke-width 0.25s ease;
}
.seg:hover .seg-fill {
  filter:brightness(0.85);
}

.seg-label {
  font-family:var(--serif);
  font-weight:600;
  font-size:24px;
  fill:var(--purple-deep);
  pointer-events:none;
  transition:fill 0.25s ease;
}
.seg-sub {
  font-family:var(--sans);
  font-weight:600;
  font-size:9.5px;
  fill:rgba(90,63,143,0.55);
  letter-spacing:0.22em;
  pointer-events:none;
  transition:fill 0.25s ease;
  text-transform:uppercase;
}

.hub-center {
  cursor:pointer;
}
.hub-center-bg {
  fill:url(#cGrad);
  filter:drop-shadow(0 20px 40px rgba(90,63,143,0.35));
  transition:filter 0.35s ease;
}
.hub-center:hover .hub-center-bg {
  filter:drop-shadow(0 24px 48px rgba(90,63,143,0.45)) brightness(1.06);
}

.pulse-ring {
  display:none;
}

.hub-center text,
.hub-center image,
.hub-center line {
  pointer-events: none;
}

/* Sections & layout */
section.content {
  padding:100px 32px;
}
.container {
  max-width:1240px;
  margin:0 auto;
}
.eyebrow {
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.32em;
  color:var(--purple);
  text-transform:uppercase;
  margin-bottom:16px;
  padding-left:42px;
  position:relative;
}
.eyebrow::before {
  content:'';
  position:absolute;
  left:0; top:50%;
  width:30px; height:1.5px;
  background:var(--purple);
  transform:translateY(-50%);
}
h2.section-title {
  font-family:var(--serif);
  font-size:clamp(34px,4.6vw,56px);
  font-weight:500;
  line-height:1.05;
  color:var(--ink);
  margin-bottom:24px;
}
h2.section-title em {
  font-style:italic;
  color:var(--purple-deep);
  font-weight:500;
}
.lead {
  font-size:17px;
  color:var(--ink-soft);
  max-width:640px;
  line-height:1.75;
}
.alt { background:var(--purple-mist); }

.section-layout {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:32px;
  margin-top:32px;
  align-items:center;
}
.section-text p { margin-bottom:10px; }
.section-text ul {
  margin-top:10px;
  padding-left:18px;
  font-size:15px;
  color:var(--ink-soft);
}
.section-text li { margin-bottom:4px; }

.section-image {
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  max-width:75%;        /* περίπου 25% πιο μικρές από πριν */
  margin:24px auto;     /* κεντράρισμα και λίγο κάθετο κενό */
}
.section-image img {
  width:100%;
  height:auto;
  object-fit:cover;
}

/* Footer */
footer {
  background:var(--ink);
  color:rgba(255,255,255,0.7);
  padding:56px 32px 24px;
  font-size:13.5px;
}
.footer-grid {
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.footer-brand img { width:38px; height:38px; }
.footer-brand .fb-text {
  font-family:var(--serif);
  font-size:18px;
  color:#fff;
  line-height:1.1;
}
.footer-brand small {
  display:block;
  font-size:9px;
  letter-spacing:0.22em;
  color:rgba(255,255,255,0.5);
  margin-top:2px;
  text-transform:uppercase;
}
footer h6 {
  color:#fff;
  font-size:11px;
  letter-spacing:0.24em;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:18px;
}
footer ul {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}
footer a:hover { color:var(--purple-soft); }
.footer-bottom {
  max-width:1240px;
  margin:0 auto;
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:rgba(255,255,255,0.4);
}

/* Epoptia credit – global */
.epoptia-credit {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(251,249,244,0.06);
  border:1px solid rgba(126,91,176,0.35);
  font-family:var(--sans);
  font-size:10px;
  font-weight:500;
  color:rgba(255,255,255,0.8);
}

.epoptia-credit-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--purple),var(--purple-soft));
  box-shadow:0 0 0 2px rgba(126,91,176,0.4);
}

.epoptia-credit-text {
  letter-spacing:0.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

/* Tablet: 601px – 900px */
@media (min-width:601px) and (max-width:900px) {
  .nav {
    padding:8px 18px;
    flex-wrap:nowrap;
    gap:0;
  }

  .nav-right {
    flex-direction:row;
    align-items:center;
    gap:12px;
  }

  .nav-contact {
    flex-direction:row;
    align-items:center;
    gap:10px;
  }

  .hero {
    min-height:90vh;
  }

  .seg-label {
    font-size:20px;
  }
  .seg-sub {
    font-size:9px;
    letter-spacing:0.18em;
  }

  section.content {
    padding:70px 24px;
  }

  .section-layout {
    grid-template-columns:1.1fr 0.9fr;
    gap:24px;
  }

  .section-text p {
    font-size:17px;
    line-height:1.6;
  }

  .section-text ul {
    font-size:15px;
  }

  .footer-grid {
    grid-template-columns:1.2fr 1fr;
    gap:24px;
  }
}

/* Mobile ≤ 600px */
@media (max-width:600px) {
  /* Nav – επιτρέπουμε wrap και πιο μαζεμένη διάταξη */
  .nav {
    padding:6px 12px;
    white-space:normal;
    align-items:flex-start;
  }

  .nav-logo .nl-text {
    font-size:16px;
  }

  .nav-right {
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
  }

  .nav-contact {
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    font-size:10px;
  }

  .hero {
    min-height:80vh;
  }

  .seg-label {
    font-size:18px;
  }
  .seg-sub {
    font-size:8px;
    letter-spacing:0.16em;
  }

  h2.section-title {
    font-size:28px;
  }

  .section-text p {
    font-size:16px !important;
    line-height:1.6;
    margin-top:1.5em;
    margin-bottom:1.5em;
  }

  .section-text ul {
    font-size:14px;
  }

  section.content {
    padding:50px 16px;
  }

  footer {
    padding:40px 16px 20px;
  }
  .footer-bottom {
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

/* Desktop / laptop μόνο: μίκρυνση του κεντρικού κέντρου */
@media (min-width:901px) {
  .hub-center {
    transform-box:fill-box;
    transform-origin:50% 50%;
    transform:scale(0.85);
  }
}

/*TABLET */
@media (max-width:600px) {
  .section-image {
    max-width:95%;
    margin:20px auto;
  }
}
}