:root { 
	--color-primary: #1D4ED8; /* bright blue */ 
	--color-secondary: #0EA5E9; /* sky/sea blue */ 
	--color-accent: #10B981; /* green */ 
	--color-bg: #FFFFFF; --color-bg-alt: #E5E7EB; 
	--color-text: #111827; 
	--color-muted: #6B7280; 
	--shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08); 
	--radius-card: 14px; --transition-fast: 0.2s ease; 
	--hero-strip-height: 72px; 
} 


/* RESET-ish */ *
, *::before, *::after {
 box-sizing: border-box;
 } 
html, body {
 margin: 0;
 padding: 0;
 } 
body { 
font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 color: var(--color-text);
 background: var(--color-bg);
 line-height: 1.6;
 } 

/* Container & layout helpers */
 .container {
 width: 100%;
 max-width: 1100px;
 margin: 0 auto;
 padding: 0 1.5rem;
 } 

.section {
 padding: 4rem 0;
 } 

.section-alt {
 background: var(--color-bg-alt);
 } 

.section-inner {
 display: flex;
 flex-direction: column;
 gap: 2rem;
 } 

.section-header {
 max-width: 720px;
 } 

.section-header h2 {
 font-family: 'Poppins', sans-serif;
 font-size: 1.8rem;
 margin: 0 0 0.5rem;
 } 

.section-header p {
 margin: 0;
 color: var(--color-muted);
 }
 
/* Header / Nav */ 
.site-header {
 position: sticky;
 top: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(209, 213, 219, 0.7);
 } 

.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0.75rem 0;
 } 

.logo img {
 height: 100px;
 width: auto;
 } 

/* Hamburger */ 
.nav-toggle {
 border: none;
 background: transparent;
 padding: 0.3rem;
 display: inline-flex;
 flex-direction: column;
 gap: 5px;
 cursor: pointer;
 } 

.nav-toggle span {
 display: block;
 width: 22px;
 height: 2px;
 background: var(--color-text);
 border-radius: 999px;
 } 

.nav-drawer {
 position: fixed;
 top: 0;
 right: 0;
 width: 260px;
 height: 100vh;
 background: #FFFFFF;
 box-shadow: -8px 0 20px rgba(15, 23, 42, 0.15);
 transform: translateX(100%);
 transition: transform var(--transition-fast);
 padding: 1.5rem 1.25rem;
 display: flex;
 flex-direction: column;
 } 

.nav-drawer ul {
 list-style: none;
 padding: 0;
 margin: 1rem 0 0;
 } 

.nav-drawer li {
 margin-bottom: 0.75rem;
 } 

.nav-drawer a {
 text-decoration: none;
 color: var(--color-text);
 font-weight: 500;
 } 

.nav-drawer a:hover {
 color: var(--color-primary);
 } 

.nav-close {
 align-self: flex-end;
 border: none;
 background: transparent;
 font-size: 1.6rem;
 cursor: pointer;
 color: var(--color-text);
 } 

.nav-separator {
 border-top: 1px solid #E5E7EB;
 margin: 0.75rem 0;
 } 


/* Overlay */ 
.overlay {
 position: fixed;
 inset: 0;
 background: rgba(15, 23, 42, 0.35);
 opacity: 0;
 visibility: hidden;
 transition: opacity var(--transition-fast), visibility var(--transition-fast);
 z-index: 900;
 } 


/* When nav is open */ 
body.nav-open 
.nav-drawer {
 transform: translateX(0);
 } 

body.nav-open 
.overlay {
 opacity: 1;
 visibility: visible;
 } 


/* Hero */ 
.hero {
 background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
 color: #FFFFFF;
 padding: 4.5rem 0 4rem;
 } 

.hero-inner {
 display: flex;
 flex-direction: column;
 } 

.hero-text h1 {
 font-family: 'Poppins', sans-serif;
 font-size: 2rem;
 margin: 0 0 1rem;
 } 

.hero-text p {
 margin: 0 0 1.25rem;
 max-width: 640px;
 } 

.hero-highlights {
 list-style: none;
 padding: 0;
 margin: 0 0 1.5rem;
 } 

.hero-highlights li {
 position: relative;
 padding-left: 1.3rem;
 margin-bottom: 0.4rem;
 } 

.hero-highlights li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.55rem;
 width: 7px;
 height: 7px;
 border-radius: 999px;
 background: var(--color-accent);
 } 

.hero {
 position: relative;
 min-height: 100vh;
 padding-bottom: var(--hero-strip-height);
 } 

.eu-strip {
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: var(--hero-strip-height);
 background: rgba(255,255,255,0.95);
 border-top: 1px solid rgba(0,0,0,0.08);
 display: flex;
 align-items: center;
 } 

.eu-strip-inner {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 16px;
 display: flex;
 align-items: center;
 gap: 14px;
 font-size: 0.85rem;
 color: #1f2937;
 } 

.eu-strip-inner img {
 height: 32px;
 width: auto;
 } 


/* HERO EU bar (footer-style overlay) */ 
.eu-hero-bar { 
position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 /* match footer style */ background: #0f172a;
 /* change to your footer bg if different */ color: #fff;
 border-top: 1px solid rgba(255,255,255,0.12);
 padding: 10px 0;
 transition: transform 300ms ease, opacity 200ms ease;
 } 

.eu-hero-bar-inner {
 display: flex;
 align-items: center;
 gap: 14px;
 } 

.eu-hero-bar-inner img {
 height: 70px;
 width: auto;
 flex: 0 0 auto;
 } 

.eu-hero-bar-inner p {
 margin: 0;
 font-size: 0.96rem;
 line-height: 1.25;
 color: rgba(255,255,255,0.92);
 } 


/* hidden state after first scroll */ 
.eu-hero-bar.is-hidden {
  opacity: 0 !important;
  transform: translateY(140%) !important;
  visibility: hidden !important;
  pointer-events: none !important;
} 

@media (max-width: 600px) {
 :root { --hero-strip-height: 88px;
 } 

.eu-strip-inner {
 font-size: 0.75rem;
 } .eu-strip-inner img { height: 26px; } }


/* Hero watermark logo */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero-watermark {
  position: absolute;
  right: 1%;
  top: 52%;
  transform: translateY(40%);
  width: 500px;
  max-width: 32vw;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-watermark {
    right: 4%;
    width: 260px;
    max-width: 42vw;
    opacity: 0.09;
  }
}

@media (max-width: 768px) {
  .hero-watermark {
    right: -20px;
    bottom: 110px;
    top: auto;
    transform: none;
    width: 190px;
    max-width: 50vw;
    opacity: 0.07;
  }
}

/* Buttons & links */ 
.btn-primary {
 display: inline-block;
 padding: 0.75rem 1.5rem;
 background: var(--color-accent);
 color: #FFFFFF;
 border-radius: 999px;
 text-decoration: none;
 font-weight: 600;
 font-family: 'Poppins', sans-serif; box-shadow: var(--shadow-soft);
 transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
 } 

.btn-primary:hover {
 background: #059669;
 transform: translateY(-1px);
 box-shadow: 0 16px 30px rgba(16, 185, 129, 0.25);
 } 

.link-more {
 font-weight: 600;
 color: var(--color-primary);
 text-decoration: none;
 } 

.link-more:hover {
 text-decoration: underline;
 } 


/* Cards & grids */ 
.two-column {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.5rem;
 } 

.info-card {
 background: #FFFFFF;
 border-radius: var(--radius-card);
 padding: 1.5rem;
 box-shadow: var(--shadow-soft);
 } 

.info-card h4 {
 margin-top: 0;
 margin-bottom: 0.75rem;
 font-family: 'Poppins', sans-serif;
 } 

.info-card ul {
 list-style: none;
 padding: 0;
 margin: 0 0 0.75rem;
 } 

.info-card li {
 margin-bottom: 0.35rem;
 color: var(--color-muted);
 } 

.card-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.5rem; 
} 

.card {
 background: #FFFFFF;
 border-radius: var(--radius-card);
 padding: 1.5rem;
 box-shadow: var(--shadow-soft);
 } 

.section-alt .card {
 background: #FFFFFF;
 } 

.card h3 {
 margin-top: 0;
 font-family: 'Poppins', sans-serif;
 } 

.card p {
 margin-bottom: 0;
 color: var(--color-muted);
 } 

.card-icon {
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 } 


/* Beneficiaries */ 
.beneficiaries {
 margin-top: 2rem;
 } 

.beneficiaries h3 {
 font-family: 'Poppins', sans-serif;
 margin-bottom: 1rem;
 } 

.beneficiaries-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1rem;
 } 

.beneficiary h4 {
 margin: 0 0 0.25rem;
 font-family: 'Poppins', sans-serif;
 } 

.beneficiary p {
 margin: 0;
 color: var(--color-muted);
 } 


/* Partners grid */ 
.partners-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.5rem;
 } 

.partner-card {
 background: #FFFFFF;
 border-radius: var(--radius-card);
 padding: 1.25rem;
 box-shadow: var(--shadow-soft);
 text-align: center;
 } 

.section-alt .partner-card {
 background: #FFFFFF;
 } 

.partner-card img {
 max-width: 140px;
 max-height: 70px;
 object-fit: contain;
 margin-bottom: 0.75rem;
 } 

.partner-card h3 {
 margin: 0 0 0.25rem;
 font-family: 'Poppins', sans-serif;
 } 

.partner-card p {
 margin: 0;
 color: var(--color-muted);
 } 


/* News */ 
.news-list {
 display: flex; 
flex-direction: column; gap: 1.5rem; 
} 

.news-item {
 border-left: 3px solid var(--color-primary);
 padding-left: 1rem; 
} 

.news-date {
 margin: 0;
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 color: var(--color-muted); 
} 

.news-title {
 margin: 0.2rem 0 0.4rem;
 font-family: 'Poppins', sans-serif;
 } 

/* Contact */
 .contact-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.5rem;
 } 

.social-links {
 list-style: none;
 padding: 0;
 margin: 0;
 } 

.social-links li {
 margin-bottom: 0.35rem;
 } 

.social-links a {
 text-decoration: none;
 color: var(--color-primary);
 } 

.social-links a:hover {
 text-decoration: underline;
 } 

.contact-note {
 margin-top: 1.5rem;
 font-size: 0.9rem;
 color: var(--color-muted);
 } 


/* Utilities */ 
.text-right {
 text-align: right;
 } 


/* Footer */ 
.site-footer {
 background: #0F172A;
 color: #E5E7EB;
 padding: 1.5rem 0;
 margin-top: 2rem;
 } 

.footer-inner {
 text-align: center;
 font-size: 0.9rem;
 } 

.footer-meta {
 margin: 0.35rem 0 0;
 color: #9CA3AF;
 } 

.footer-eu {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 10px;
 } 

.footer-eu img {
 height: 80px;
 width: auto;
 } 

.footer-eu p {
 font-size: 0.8rem;
 color: #6b7280;
 max-width: 900px;
 } 


/* Responsive (tablet/desktop) */ 
@media (min-width: 768px) {
 .hero {
 padding: 5rem 0 5rem;
 } 

.hero-text h1 {
 font-size: 2.4rem;
 } 

.two-column {
 grid-template-columns:
 2fr 1.4fr;
 } 

.card-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 } 

.beneficiaries-grid {
 grid-template-columns: repeat(4, minmax(0, 1fr));
 } 

.partners-grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 } 

.contact-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 } 
} 


/* Larger desktops */ 
@media (min-width: 1024px) {
 .hero-inner {
 min-height: 320px;
 align-items: center;
 } 
}

/* Accessibility Widget */
.accessibility-widget {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 12000;
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.accessibility-toggle {
  width: 56px;
  height: 56px;
  border: none;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
  background: #1E40AF;
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 3px;
}

.accessibility-toggle svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accessibility-toggle svg .icon-fill {
  fill: #ffffff;
  stroke: none;
}

.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
  background: #1E40AF;
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 3px;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: 3.4rem;
  width: 240px;
  background: #ffffff;
  color: var(--color-text);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.accessibility-panel h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.accessibility-panel button {
  width: 100%;
  border: 1px solid #D1D5DB;
  background: #F9FAFB;
  color: var(--color-text);
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  margin-bottom: 0.45rem;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.accessibility-panel button:last-child {
  margin-bottom: 0;
}

.accessibility-panel button:hover,
.accessibility-panel button:focus-visible {
  background: #E5E7EB;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

html.a11y-font-large {
  font-size: 112.5%;
}

html.a11y-font-xlarge {
  font-size: 125%;
}

body.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

body.a11y-high-contrast {
  background: #000000 !important;
  color: #ffffff !important;
}

body.a11y-high-contrast .site-header,
body.a11y-high-contrast .nav-drawer,
body.a11y-high-contrast .section,
body.a11y-high-contrast .section-alt,
body.a11y-high-contrast .card,
body.a11y-high-contrast .info-card,
body.a11y-high-contrast .partner-card,
body.a11y-high-contrast .accessibility-panel {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

body.a11y-high-contrast .hero,
body.a11y-high-contrast .eu-hero-bar,
body.a11y-high-contrast .site-footer {
  background: #000000 !important;
  color: #ffffff !important;
}

body.a11y-high-contrast p,
body.a11y-high-contrast li,
body.a11y-high-contrast h1,
body.a11y-high-contrast h2,
body.a11y-high-contrast h3,
body.a11y-high-contrast h4,
body.a11y-high-contrast a,
body.a11y-high-contrast .footer-meta,
body.a11y-high-contrast .section-header p,
body.a11y-high-contrast .card p,
body.a11y-high-contrast .info-card li,
body.a11y-high-contrast .partner-card p,
body.a11y-high-contrast .contact-note {
  color: #ffffff !important;
}

body.a11y-high-contrast a,
body.a11y-high-contrast .link-more {
  color: #ffff00 !important;
  text-decoration: underline !important;
}

body.a11y-high-contrast .btn-primary,
body.a11y-high-contrast .accessibility-toggle {
  background: #ffff00 !important;
  color: #000000 !important;
}

@media (max-width: 600px) {
  .accessibility-widget {
    right: 0.75rem;
    bottom: 5rem;
  }

  .accessibility-panel {
    width: 220px;
  }

    .accessibility-toggle {
    width: 50px;
    height: 50px;
  }

  .accessibility-toggle svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 70px;
  }
}

/* =========================
   Landing page partners alignment
   Only affects #partners section on index.html
========================= */

#partners .partners-grid {
  align-items: stretch;
}

#partners .partner-card {
  min-height: 270px;
  display: grid;
  grid-template-rows: 78px 64px 1fr;
  align-items: start;
  justify-items: center;
  padding: 1.5rem 1.25rem;
}

/* Fixed logo area */
#partners .partner-card img {
  grid-row: 1;
  width: 170px;
  height: 68px;
  max-width: 170px;
  max-height: 68px;
  object-fit: contain;
  margin: 0;
  align-self: center;
}

/* Fixed two-line title area */
#partners .partner-card h3 {
  grid-row: 2;
  min-height: 58px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

/* Description starts always from same height */
#partners .partner-card p {
  grid-row: 3;
  margin: 0;
  text-align: center;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 280px;
}

/* =========================
   Landing partners logo visual balancing
========================= */

#partners .partner-card img {
  width: 170px;
  height: 72px;
  max-width: 170px;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  transform-origin: center;
}

/* UAEGEAN appears visually small */
#partners .partner-card img[src*="UAEGEAN"] {
  transform: scale(1.35);
}

/* Klaipeda logo appears very small */
#partners .partner-card img[src*="KU_LT"] {
  transform: scale(1.45);
}

/* KSMA is already quite strong */
#partners .partner-card img[src*="KSMA"] {
  transform: scale(1.05);
}

/* NUOMA circular logo */
#partners .partner-card img[src*="NUOMA"] {
  transform: scale(1.15);
}

/* KMSTC appears small */
#partners .partner-card img[src*="KMSTC"] {
  transform: scale(1.25);
}

/* CRETHIDEV is wide, keep it controlled */
#partners .partner-card img[src*="CRETHIDEV"] {
  transform: scale(1.1);
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}
html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* =========================
   Partners full page layout
========================= */

.partners-page-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.partners-page-header {
  max-width: 760px;
}

.partner-profile-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partner-profile-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

.partner-profile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #E5E7EB;
  padding-right: 1.5rem;
}

.partner-profile-logo img {
  width: 170px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.partner-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E5E7EB;
  color: #111827;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.partner-profile-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-profile-content header {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0.8rem;
}

.partner-number {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-weight: 700;
}

.partner-profile-content h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #111827;
}

.partner-profile-block {
  padding-top: 0.25rem;
}

.partner-profile-block h4 {
  margin: 0 0 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: #111827;
}

.partner-profile-block p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Mobile / tablet */
@media (max-width: 768px) {
  .partner-profile-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .partner-profile-logo {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .partner-profile-logo img {
    width: 160px;
    height: 90px;
  }

  .partner-profile-content h3 {
    font-size: 1.15rem;
  }
}