:root {
  --bg: #f3f4f6;       /* ανοιχτό γκρι για όλη τη σελίδα */
  --ink: #000;         /* βασικό κείμενο */
  --muted: #6b7280;    /* δευτερεύον κείμενο */
  --line: #d1d5db;     /* απαλή γραμμή/περίγραμμα */
  --brand: #1e3a8a;    /* σκούρο μπλε για active */
  --hover: #374151;    /* γκρι-μαύρο για hover */
}

html { scroll-behavior:smooth }
* { box-sizing:border-box }

body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";

}


/* --- Κεντρικό container --- */
.container {
  max-width:980px;
  margin-inline:auto;
  padding:24px;
}

/* --- NAVBAR --- */
.navbar {
  text-align: center;
  background: #000;   /* μαύρο μόνο για τα κουμπιά */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 0; /* μηδέν padding */
}

/* --- Brand πάνω από το navbar --- */
.brand-center {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 16px 0;
  background: var(--bg); /* ίδιο με το main */
  color: var(--ink);     /* μαύρο κείμενο */
  border-bottom: 1px solid var(--line); /* λεπτή γραμμή για διαχωρισμό */
}

/* --- Links στη μπάρα πλοήγησης --- */
.nav-bar-links {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-bar-links a {
  flex: 1;
  text-align: center;
  background: #000;       /* μαύρο default */
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  transition: background 0.2s;
  border-right: 1px solid #333;
}

.nav-bar-links a:last-child { border-right: none; }

.nav-bar-links a:hover {
  background: var(--hover);   /* πιο ανοιχτό γκρι-μαύρο */
}

.nav-bar-links a.active {
  background: var(--brand);   /* σκούρο μπλε */
}

/* --- Τίτλοι και υπότιτλοι (από το παλιό CSS) --- */
h1 {
  font-size: clamp(24px,3.5vw,34px);
  margin: 0;
}

h2 {
  font-size: clamp(18px,2.6vw,24px);
  margin: 32px 0 10px;
}

p.lead {
  color: var(--muted);
  margin: 6px 0 0;
}

/* --- Κουτιά / κάρτες --- */
.card {
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  margin: 20px 0;
}

/* --- Γραμμές πληροφοριών (info-row) --- */
.info-row {
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
  padding:12px 0;
  border-top:1px solid var(--line);
}

.info-row:first-child { border-top:0; }
.term { font-weight:600; }
.muted { color:var(--muted); }

dl { margin:0; }
dt { font-weight:600; }
dd { margin:4px 0 0; }

/* --- Κουμπί Εκτύπωσης --- */
.print-btn {
  appearance:none;
  border:1px solid var(--brand);
  color:#fff;
  background:var(--brand);
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}

@media print {
  header, .print-btn { display:none; }
  body { font-size:12pt; }
  .card { box-shadow:none; }
}

/* --- Πίνακες (Εταίροι & Δραστηριότητες) --- */
.partners-table table,
.activities-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.partners-table th,
.partners-table td,
.activities-table th,
.activities-table td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.partners-table th,
.activities-table th {
  background: #f9fafb;
  font-weight: 600;
  color: var(--ink);
}

.partners-table tr:nth-child(even),
.activities-table tr:nth-child(even) {
  background: #f3f4f6;
}

/* --- Προαιρετικά tags (αν χρησιμοποιήσεις) --- */
.tag {
  display:inline-block;
  padding:4px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:14px;
}

/* --- Γρήγορη πλοήγηση --- */
.home-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #000;           /* μαύρο background */
  color: #fff;                /* λευκό κείμενο */
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.home-links li a:hover {
  background: var(--brand);   /* σκούρο μπλε */
  transform: translateX(4px); /* μικρή κίνηση δεξιά */
}

.home-links li a span {
  font-size: 18px;
  font-weight: bold;
}



/* --- Footer --- */
/* Footer */
footer {
  background: #000;        /* μαύρο background */
  color: #fff;             /* άσπρο κείμενο */
  text-align: center;
  padding: 16px;
  font-size: 14px;
  position: static;        /* αλλάζουμε από fixed σε static */
  bottom: 0;
  left: 0;
  width: 100%;             /* απλώνεται σε όλο το πλάτος */
  margin-top: 30px;        /* λίγο κενό πάνω από το footer */
}

/* Responsive table styles */
@media (max-width: 600px) {
  .table-responsive {
    overflow-x: auto;
    display: block;
  }
  .partners-table table,
  .activities-table table {
    min-width: 600px; /* ή όσο χρειάζεται */
  }
  .partners-table th,
  .partners-table td,
  .activities-table th,
  .activities-table td {
    white-space: nowrap;
    padding: 8px 4px;
    font-size: 0.95em;
    /* word-break: break-word;  <-- ΑΦΑΙΡΕΣΕ το! */
  }
  .grid {
    display: block;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
    word-break: break-word;
  }
}

/* Κρύβει το κουμπί και το mobile menu σε desktop */
.menu-btn,
.mobile-menu {
  display: none;
}

/* Εμφανίζει μόνο σε κινητά */
@media (max-width: 600px) {
  .nav-bar-links {
    display: none;
  }
  .menu-btn {
   display: block;
    position: static;
    margin-left: 8px;
    margin-right: 0;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0,0,0,0.12);
    padding: 32px 0 0 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .navbar {
    background: none;
    box-shadow: none;
    height: 64px;
    min-height: 64px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  .brand-center {
    font-size: 20px;
    padding-left: 0px;
    margin-left: 12px;  
    line-height: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    background: none;    
    border-bottom: none; 
  }
  .mobile-menu a {
  display: block;
  margin: 12px 18px;
  padding: 14px 0;
  background: var(--bg);
  color: var(--brand);
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a.active,
.mobile-menu a:hover {
  background: var(--brand);
  color: #fff;
}
 
}

.close-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--brand);
  cursor: pointer;
  z-index: 1002;
  transition: color 0.2s;
}
.close-menu:hover {
  color: #d32f2f;
}

/* --- Χάρτες (Maps) --- */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  padding: 48px 0 36px 0;
  border-radius: 18px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}
.hero-content h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-content .lead {
  font-size: 1.25em;
  color: #e0e7ff;
  margin-bottom: 0;
}



