/* mkiHellas – rebuilt from the Wix site */
:root {
  --text: #606060;
  --heading: #414141;
  --muted: #9db1bf;
  --accent: #ffc505;
  --accent-hero: #ffd500;
  --grey-bg: #dbdbdb;
  --footer: #606060;
  --page: #fcfcfc;
  --font: "Open Sans", Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--text); background: #fff; line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: 100%; max-width: 980px; margin: 0 auto; padding: 0 16px; }
.wrap.narrow { max-width: 900px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo img { width: 146px; height: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 34px; align-items: center; }
.main-nav a, .main-nav button { font: 15px/1 var(--font); color: var(--text); text-decoration: none; background: none; border: 0; padding: 10px 0; cursor: pointer; display: block; }
.main-nav a:hover, .main-nav button:hover, .main-nav a.active { color: #000; }
.main-nav a.active { border-bottom: 2px solid var(--accent); }
.main-nav .has-sub { position: relative; }
.main-nav .sub { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.12); min-width: 190px; padding: 6px 0; display: none; flex-direction: column; gap: 0; }
.main-nav .sub li a { padding: 10px 18px; white-space: nowrap; text-align: center; border: 0; }
.main-nav .sub li a.active { background: #f4f4f4; }
.main-nav .has-sub:hover .sub, .main-nav .has-sub:focus-within .sub, .main-nav .has-sub.open .sub { display: flex; }
.menu-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #333; margin: 6px 0; transition: .2s; }

/* hero */
.hero { position: relative; height: 664px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-content { position: relative; padding: 0 16px; }
.hero-logo { width: 429px; max-width: 80vw; margin: 0 auto 30px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.hero-slogan { color: #fff; font-weight: 400; font-size: 28px; margin: 0; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.hero-slogan .accent { color: var(--accent-hero); }

/* generic sections */
.section { padding: 60px 0; }
.section h2, .team h1 { font-size: 24px; font-weight: 400; color: var(--heading); text-align: center; margin: 0 0 40px; }
.who { text-align: center; }
.who p { font-size: 18px; margin: 0 0 24px; }
.goal { background: #2a2a2a url(/images/goal-bg.jpg) center/cover no-repeat; color: #fff; }
.goal h2 { color: #fff; }
.goal p, .goal li { font-size: 18px; text-align: justify; }
.goal p { margin: 0 0 24px; }
.goal ul { margin: 0 0 24px; padding-left: 22px; }
.goal li { margin-bottom: 6px; }
.cols { display: grid; gap: 40px; }
.cols.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.cols.three { grid-template-columns: repeat(3, 1fr); }
.cols.one { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.col { text-align: center; }
.col img { width: 116px; height: 116px; margin: 0 auto 30px; }
.col h3 { font-size: 20px; font-weight: 400; margin: 0 0 20px; color: var(--text); }
.col p { font-size: 16px; margin: 0; }
.col a { text-decoration: none; }
.col a:hover { text-decoration: underline; }
.contact { background: var(--grey-bg); padding-bottom: 0; }
.contact .col h3 { font-size: 14px; margin-bottom: 6px; }
.contact .col p { font-size: 14px; }
.contact .col img { margin-bottom: 22px; }
.map { margin-top: 60px; height: 480px; background: #e5e3df; }
.map iframe, .map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

/* team pages */
.banner { height: 550px; overflow: hidden; }
.banner img { width: 100%; height: 100%; object-fit: cover; }
.team { padding-top: 22px; }
.team p { font-size: 16px; margin: 0 0 22px; }
.team em { font-style: italic; }

/* activities list */
.activities { background: var(--page); padding: 30px 0 60px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { background: #fff; padding: 30px; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.card-img { display: block; aspect-ratio: 421/268; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.03); }
.card h2 { text-align: left; font-size: 22px; font-weight: 700; color: var(--accent); margin: 18px 0 12px; }
.card h2 a { text-decoration: none; }
.card p { font-size: 12px; color: var(--muted); margin: 0; }
.card .more { color: var(--accent); text-decoration: underline; margin-left: 2px; }

/* article */
.article { padding: 30px 0 60px; background: var(--page); }
.article-cover { aspect-ratio: 979/484; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article h1 { font-size: 22px; font-weight: 700; color: var(--accent); margin: 34px 0 12px; }
.article p { font-size: 12px; color: #545454; margin: 0 0 18px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
.gallery-item { display: block; aspect-ratio: 316/179; overflow: hidden; background: rgba(13,33,48,.8); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gallery-item:hover img { opacity: .85; }
.article-nav { display: flex; justify-content: space-between; margin-top: 40px; font-size: 16px; }
.article-nav a { color: var(--heading); text-decoration: none; }
.article-nav a:hover { color: var(--accent); }

/* contact page */
.contact-page { padding: 50px 0 60px; }
.map-box { width: 100%; max-width: 857px; height: 350px; margin: 0 auto; background: #e5e3df; }
.phone-band { background: #ffd23f; margin-top: 30px; padding: 12px 16px; }
.contact-phone { text-align: center; font-size: 19px; margin: 0; color: #414141; }
.contact-phone a { text-decoration: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.lightbox.on { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.lightbox button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); color: #fff; border: 0; font-size: 34px; width: 52px; height: 52px; cursor: pointer; border-radius: 50%; }
.lightbox .lb-prev { left: 16px; } .lightbox .lb-next { right: 16px; }
.lightbox .lb-close { top: 16px; right: 16px; transform: none; font-size: 26px; }

/* footer */
.site-footer { background: var(--footer); color: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 66px; padding-bottom: 50px; gap: 30px; }
.footer-logo img { width: 288px; }
.footer-contact { text-align: right; font-size: 14px; }
.footer-contact h2 { font-size: 14px; font-weight: 400; margin: 0 0 14px; }
.footer-contact p { margin: 0 0 4px; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.copyright { background: rgba(0,0,0,.12); font-size: 12px; text-align: center; padding: 20px 0; }

/* responsive */
@media (max-width: 860px) {
  .hero { height: 480px; }
  .hero-slogan { font-size: 22px; }
  .banner { height: 320px; }
  .cards { grid-template-columns: 1fr; }
  .cols.three, .cols.two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .goal p, .goal li { text-align: left; }
  .who p br { display: none; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact { text-align: center; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 78px; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.12); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav li { width: 100%; text-align: center; }
  .main-nav a, .main-nav button { padding: 14px 16px; width: 100%; }
  .main-nav .sub { position: static; transform: none; box-shadow: none; background: #f6f6f6; }
  .main-nav .has-sub .sub { display: flex; }
}
@media (max-width: 480px) {
  .hero { height: 400px; }
  .gallery { grid-template-columns: 1fr; }
  .card { padding: 20px; }
}

/* policy pages (hidden pages from Wix) */
.policy { padding: 50px 0 70px; }
.policy-wrap { max-width: 640px; }
.policy h1 { font-size: 24px; font-weight: 700; color: var(--heading); text-align: center; margin: 0 0 36px; }
.policy h2 { font-size: 17px; font-weight: 400; color: var(--heading); text-align: left; margin: 28px 0 8px; }
.policy p, .policy li { font-size: 13px; color: var(--text); margin: 0 0 12px; line-height: 1.6; }
.policy ul, .policy ol { padding-left: 22px; margin: 0 0 12px; }
.policy li { margin-bottom: 4px; }
.policy li p { margin: 0; }
.policy a { color: var(--heading); }
.hero p.hero-slogan { margin: 0; }
