/* --- BEGIN: site.css --- */
/* ==================================================
   BASE / RESET
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #692331;
  --primary-dark: #4f1a25;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,0.08);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
}

/* ==================================================
   GLOBAL NAV (ONE SOURCE OF TRUTH)
================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px !important;
  height: 80px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden !important;
}

.site-header .logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  text-decoration: none !important;
}

.site-header img {
  width: 380px !important;
  height: 80px !important;
  object-fit: cover !important;
  object-position: left center !important;
  max-width: none !important;
  transform: translateY(0) !important;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* Burger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ==================================================
   MOBILE NAV
================================================== */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .site-header img {
    width: 240px !important;
    height: 60px !important;
    transform: translateY(0) !important;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);

    transform: translateX(100%);
    transition: transform 0.35s ease;

    display: flex;
    flex-direction: column;
    padding: 90px 30px 40px;
    gap: 0;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
}

/* ==================================================
   HERO (PROFILE + CONTACT)
================================================== */
.hero {
  max-width: 1200px;
  margin: 50px auto 70px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-profile {
  text-align: center;
}

.hero-photo {
  width: 300px;
  max-width: 100%;
  margin: 0 auto 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.hero-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

/* Contact box */
.hero-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ==================================================
   HERO MOBILE FIX
================================================== */
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-photo {
    width: 220px;
  }

  .hero-contact {
    text-align: left;
  }
}

/* ==================================================
   GALLERY / SERVICES
================================================== */
.section-title {
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 0 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-card p {
  font-size: 15px;
  color: var(--text-light);
}
/* =========================
   MAP SECTION
========================= */
.map-section{
  margin-top: 80px;
}

.map-card{
  padding: 0;
  overflow: hidden;
}

.map-card iframe{
  display: block;
  border-radius: 18px;
}


/* --- BEGIN: style.css --- */
/* public/css/style.css — UNIVERSAL STYLING ΓΙΑ ΟΛΟ ΤΟ SITE */

:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --primary: #7b1113;
  --primary-dark: #991b1f;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  ;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Κεφαλίδες */
h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
  text-align: center;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h2.section-title { color: var(--primary); }
h3 { font-size: 1.3rem; color: var(--primary-dark); }

/* Κάρτες */
.section {
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.logo {
  text-align: center;
  margin: 30px 0 40px;
}

.logo img {
  max-height: 80px;
  width: auto;
}

/* Vimeo Responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Λίστα περιεχομένων */
.duration {
  text-align: center;
  color: var(--text-light);
  font-weight: 500;
  margin: 12px 0 20px;
  font-size: 1rem;
}

ul, ol {
  padding-left: 20px;
  margin: 16px 0;
}

li {
  margin: 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 15px; }
  h1 { font-size: 1.8rem; }
  .section { padding: 20px; }
  .logo img { max-height: 60px; }
}
 .ebook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin: 40px 0;
  }

  .ebook-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #fde68a;
  }

  .ebook-card:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 40px 80px rgba(123,17,19,0.25);
  }

  .ebook-header {
    background: linear-gradient(135deg, #7b1113, #991b1f);
    color: white;
    padding: 28px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .ebook-new {
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 12px;
  }

  .ebook-frame {
    width: 100%;
    height: 800px;           /* ΤΕΡΑΣΤΙΟ & ΕΝΤΥΠΩΣΙΑΚΟ */
    border: none;
    background: #f8fafc;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .ebook-grid { grid-template-columns: 1fr; gap: 50px; }
    .ebook-frame { height: 700px; }
  }

  @media (max-width: 768px) {
    .ebook-frame { height: 600px; }
    .ebook-header { font-size: 1.3rem; padding: 20px; }
  }

  @media (max-width: 480px) {
    .ebook-frame { height: 500px; }
  }

/* --- BEGIN: main.css --- */
@import "./base/reset.css";
@import "./base/variables.css";
@import "./base/typography.css";

@import "./layout/navbar.css";
@import "./layout/layout.css";
@import "./layout/footer.css";

@import "./components/buttons.css";
@import "./components/cards.css";
@import "./components/forms.css";

@import "./pages/home.css";
@import "./pages/profile.css";


/* --- BEGIN: pages/home.css --- */
/* ✅ home.css loaded */

.home-page {
  outline: 0;
}


.hero {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
    /* =========================================
   HOME PAGE OVERRIDES (bio + synergates)
   Safe overrides.
========================================= */

.home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.page-title {
  text-align: left;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.page-subtitle {
  text-align: left;
  margin: 0 0 18px;
  font-size: 1.02rem;
  color: rgba(30, 41, 59, 0.75);
}

/* Bio layout */
.bio-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 22px;
  padding: 26px;

  box-shadow: 0 18px 55px rgba(0,0,0,0.06);
}

/* Photo */
.bio-photo img {
  width: 60%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

/* Summary */
.bio-summary h2 {
  text-align: left;
  margin: 6px 0 12px;
}

.bio-list.compact {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.bio-list.compact li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(30, 41, 59, 0.92);
}

.bio-list.compact li strong {
  color: rgba(123,17,19,0.98);
}

/* Button alignment */
.cta-row {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

/* Synergates section spacing */
#synergates.section {
  margin-top: 26px;
}

/* ================================
   MOBILE HEADER FIX (global safe)
================================ */
header img {
  max-height: 66px;
  width: auto;
}

@media (max-width: 768px) {
  header {
    padding: 10px 14px !important;
  }

  header img {
    max-height: 42px !important;
  }
}

@media (max-width: 420px) {
  header img {
    max-height: 36px !important;
  }
}

/* ================================
   Mobile layout for bio
================================ */
@media (max-width: 900px) {
  .bio-intro {
    grid-template-columns: 1fr;
  }

  .page-title,
  .page-subtitle,
  .bio-summary h2 {
    text-align: center;
  }

  .cta-row {
    justify-content: center;
  }

  .bio-photo img {
    max-width: 360px;
    margin: 0 auto;
  }
}

    .bio-list.compact li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 30px;
}
.hidden {
  display: none;
}
.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  margin: 28px auto;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: linear-gradient(135deg, #692331, #8a2f42);

  border: none;
  border-radius: 999px; /* pill shape */
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(105, 35, 49, 0.25);
  transition: all 0.25s ease;
}

.toggle-btn::after {
  content: "▾";
  font-size: 14px;
  transition: transform 0.25s ease;
}

.toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(105, 35, 49, 0.35);
  background: linear-gradient(135deg, #5c1e2b, #7a2a3a);
}

.toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(105, 35, 49, 0.25);
}
.toggle-btn.open::after {
  transform: rotate(180deg);
}

/* --- BEGIN: navbar.css --- */
/* =========================
   NAVBAR (GLOBAL)
========================= */

:root {
  --nav-bg: #ffffff;
  --nav-border: #e2e8f0;
  --nav-text: #1e293b;
  --nav-accent: #8a1f27;
  --nav-accent-dark: #63141b;
  --shadow-nav: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--shadow-nav);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}

/* LOGO */
.site-header .logo img {
  height: 56px;
  transition: transform 0.3s ease;
}

.site-header .logo img:hover {
  transform: scale(1.05);
}

/* DESKTOP NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--nav-text);
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
}

/* underline animation */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--nav-accent);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* CTA */
.site-nav .nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--nav-accent);
  color: #fff;
  font-weight: 700;
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover {
  background: var(--nav-accent-dark);
}

/* MOBILE TOGGLE */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: var(--nav-accent);
}

/* =========================
   MOBILE DRAWER
========================= */

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;

  width: 100%;
  max-width: 340px;
  height: 100vh;

  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);

  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  padding: 90px 30px 40px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nav-text);
  text-decoration: none;

  padding: 18px 0;
  border-bottom: 1px solid var(--nav-border);
}

.mobile-nav a:hover {
  color: var(--nav-accent);
  padding-left: 10px;
}

/* CLOSE */
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;

  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}


/* --- BEGIN: pages/services.css --- */
/* =========================================
   SERVICES PAGE ONLY — ULTIMATE OVERRIDES
   (Premium anchor nav + Mobile swipe tabs)
   Safe: δεν πειράζει global.
========================================= */

/* Page wrapper */
.services-page {
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 18px 60px;
}

.services-page h1 {
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* Subtitle */
.services-subtitle {
  text-align: center;
  color: rgba(30, 41, 59, 0.75);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* ================================
   Anchor links (Desktop)
================================ */
.anchor-links {
  position: relative; /* desktop: όχι sticky */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin: 18px auto 26px;
  padding: 12px 14px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.anchor-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  padding: 9px 14px;
  border-radius: 12px;

  font-weight: 650;
  font-size: 0.95rem;

  color: #7b1113;
  background: rgba(123, 17, 19, 0.06);
  border: 1px solid rgba(123, 17, 19, 0.14);

  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.anchor-links a:hover {
  transform: translateY(-1px);
  background: rgba(123, 17, 19, 0.10);
  box-shadow: 0 10px 18px rgba(123, 17, 19, 0.12);
}

/* ================================
   Service cards
================================ */
.service-card {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 28px;
  margin: 22px 0;

  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.service-card h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 10px 0;
  font-size: 1.02rem;
  color: rgba(30, 41, 59, 0.92);
}

/* ================================
   Nice list blocks
================================ */
.nice-list {
  margin-top: 14px;
  padding: 16px 18px;

  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
}

.nice-list strong {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(30, 41, 59, 0.95);
  font-weight: 750;
}

.nice-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nice-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  line-height: 1.5;
  font-weight: 520;
}

.nice-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  width: 22px;
  height: 22px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  font-weight: 900;

  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: rgba(16, 185, 129, 0.95);
}

/* ================================
   Mobile: header logo smaller
================================ */
header img {
  max-height: 68px;
  width: auto;
}

@media (max-width: 768px) {
  header {
    padding: 10px 14px !important;
  }

  header img {
    max-height: 44px !important;
  }
}

@media (max-width: 420px) {
  header img {
    max-height: 38px !important;
  }
}

/* ================================
   Mobile: anchor-links becomes swipe tabs
================================ */
@media (max-width: 768px) {
  .service-card { padding: 20px; }

  .anchor-links {
    position: sticky;   /* κρατάει πάντα λίγο επάνω */
    top: 8px;
    z-index: 30;

    flex-wrap: nowrap;
    justify-content: flex-start;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    padding: 10px 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .anchor-links::-webkit-scrollbar { display: none; }
  .anchor-links { scrollbar-width: none; }

  .anchor-links a {
    flex: 0 0 auto;
    white-space: nowrap;

    padding: 8px 12px;
    font-size: 0.86rem;
    border-radius: 12px;
  }
}


