/* ============================================================
   SPORTSMED 2026 — Brand stylesheet
   Layout (grid/flex/spacing) is handled by Bootstrap 5 utilities.
   This file only carries brand tokens, typography & components.
   ============================================================ */

:root {
  --teal-900: #074856;   /* darkest brand teal */
  --teal-800: #063b47;   /* footer */
  --teal-700: #0a6173;
  --teal-600: #0a6e82;
  --cyan-500: #13a6bd;
  --cyan-400: #1b9bb8;
  --cyan-200: #9fe2f0;
  --cyan-100: #cdeaf1;
  --gold:     #E6B25B;
  --gold-600: #d6921f;
  --gold-700: #a9791f;
  --gold-hover:#f0bf6a;
  --ink:      #0e2a31;   /* headings */
  --ink-700:  #284851;
  --ink-600:  #3d5860;
  --muted:    #5a7780;
  --muted-2:  #6b8891;
  --surface:  #F4FAFB;   /* light section bg */
  --line:     #e2eef1;   /* hairline border */
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Sofia Sans', system-ui, sans-serif;
  color: var(--ink-600);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .2em;
  color: var(--cyan-400); text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow--light { color: var(--cyan-200); }
.section-title {
  margin: 0; font-weight: 800; color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -.02em;
}
.section-title--light { color: #fff; }
.lead-muted { font-size: 18px; line-height: 1.55; color: var(--muted); font-weight: 500; }

.section { padding: 84px clamp(24px, 5vw, 72px); }
.section--surface { background: var(--surface); }
.section--teal {
  background: linear-gradient(165deg, #0a6173 0%, #073f4c 100%);
  position: relative; overflow: hidden;
}
.wrap { max-width: 1180px; margin: 0 auto; }
.wrap--narrow { max-width: 1120px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block; background: var(--gold); color: #13323a;
  font-weight: 800; font-size: 16px; padding: 16px 30px; border-radius: 30px;
  text-decoration: none; box-shadow: 0 12px 26px rgba(0,0,0,.18);
  transition: background .2s ease;
}
.btn-gold:hover { background: var(--gold-hover); color: #13323a; }
.btn-ghost {
  display: inline-block; background: transparent; color: #fff;
  font-weight: 700; font-size: 16px; padding: 15px 30px; border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.5); text-decoration: none;
  transition: background .2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Navbar ---------- */
.site-header { position: sticky; top: 0; z-index: 1030; background: var(--teal-900); border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -.03em; flex: none;
}
.brand-name { font-weight: 800; font-size: 14px; color: #fff; letter-spacing: .01em; line-height: 1.1; }
.brand-sub  { font-size: 10px; font-weight: 700; color: #bfe6ef; letter-spacing: .16em; }
.navlink {
  position: relative; font-size: 1.1rem; font-weight: 600; color: #eaf6f9;
  text-decoration: none; white-space: nowrap; padding: 6px 0;
}
.navlink::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.navlink:hover { color: #eaf6f9; }
.navlink:hover::after,
.navlink.active::after { right: 0; }
.navlink.active { color: var(--gold); }
.lang-toggle {
  font-size: 11.5px; font-weight: 700; color: #fff; border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 20px; padding: 6px 12px; letter-spacing: .05em; white-space: nowrap; cursor: pointer;
}
.lang-toggle .off { opacity: .55; }
.lang-toggle .sep { opacity: .45; }
.navbar-toggler { border-color: rgba(255,255,255,.4); }

/* ---------- Hero (homepage) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; background: var(--teal-900); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 76%; z-index: 1; }
.hero__scrim-v { position: absolute; inset: 0; z-index: 2; background: linear-gradient(177deg, rgba(7,72,86,.95) 0%, rgba(7,72,86,.78) 30%, rgba(8,90,108,.38) 56%, rgba(255,255,255,0) 80%); }
.hero__scrim-h { position: absolute; inset: 0; z-index: 2; background: linear-gradient(96deg, rgba(7,72,86,.55) 0%, rgba(7,72,86,0) 52%); }
.hero__watermark { position: absolute; top: 34px; right: 46px; width: 300px; height: auto; z-index: 2; opacity: .5; pointer-events: none; }
.hero__content { position: relative; z-index: 4; flex: 1; display: flex; align-items: center; padding: 24px clamp(24px,4vw,56px); }
.hero__kicker { font-size: 15px; font-weight: 700; letter-spacing: .24em; color: var(--cyan-200); margin-bottom: 18px; }
.hero__title { margin: 0; font-weight: 800; font-size: clamp(46px,6.4vw,94px); line-height: .94; letter-spacing: -.03em; color: #fff; }
.hero__title .accent { color: var(--gold); }
.hero__meta { margin-top: 24px; font-size: 16px; font-weight: 800; letter-spacing: .14em; color: var(--cyan-100); }
.hero__meta .accent { color: var(--gold); }

/* ECG pulse line */
.ecg-svg { position: absolute; left: 0; width: 100%; overflow: visible; }
.ecg-path { fill: none; stroke: #7fe0f0; stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 2900; stroke-dashoffset: 2900; opacity: .55; }
.ecg-path.is-drawn { animation: ecgDraw 2.8s .4s ease forwards; }
@keyframes ecgDraw { to { stroke-dashoffset: 0; } }

/* Countdown */
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.count-box {
  min-width: 104px; text-align: center; border-radius: 18px; padding: 16px 12px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.count-box--accent { background: rgba(230,178,91,.22); border-color: rgba(230,178,91,.55); }
.count-num { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.02em; }
.count-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--cyan-100); margin-top: 8px; }
.count-box--accent .count-label { color: #f3d39a; }

/* Auspices pill */
.auspices {
  display: inline-flex; align-items: center; gap: 20px; background: #fff;
  border-radius: 30px; padding: 14px 16px 14px 26px; box-shadow: 0 16px 44px rgba(0,0,0,.2);
}
.auspices__label { font-size: 11px; font-weight: 800; letter-spacing: .13em; color: #6b8891; line-height: 1.35; max-width: 96px; }
.auspices__sep { width: 1px; background: #e3edf0; flex: none; }

/* ---------- Inner-page banner ---------- */
.page-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #074856 0%, #0a6173 60%, #0a6e82 100%);
  padding: 64px clamp(24px,5vw,72px) 70px;
}
.page-banner__wm { position: absolute; top: -40px; right: 40px; width: 280px; opacity: .1; pointer-events: none; }
.breadcrumb-row { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--cyan-200); margin-bottom: 16px; }
.breadcrumb-row a { color: var(--cyan-200); text-decoration: none; }
.breadcrumb-row a:hover { color: #fff; }
.breadcrumb-row .sep { opacity: .5; }
.page-banner__kicker { font-size: 13px; font-weight: 800; letter-spacing: .24em; color: var(--cyan-200); margin-bottom: 12px; }
.page-banner__title { margin: 0; font-weight: 800; font-size: clamp(38px,5vw,66px); line-height: .96; letter-spacing: -.03em; color: #fff; }
.page-banner__intro { margin: 18px 0 0; font-size: 18px; line-height: 1.55; color: var(--cyan-100); max-width: 640px; font-weight: 500; }

/* ---------- Deadline strip ---------- */
.deadline-strip { background: var(--gold); padding: 15px clamp(24px,5vw,72px); }
.deadline-strip__inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.deadline-strip__dot { width: 9px; height: 9px; border-radius: 50%; background: #13323a; }
.deadline-strip__text { font-size: 14px; font-weight: 800; letter-spacing: .04em; color: #13323a; }

/* ---------- Cards ---------- */
.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 12px 32px rgba(14,42,49,.06);
}
.card-soft--surface { background: var(--surface); }
.card-pad { padding: 32px clamp(24px,3vw,40px); }

/* CTA gradient box */
.cta-box {
  position: relative; overflow: hidden; border-radius: 26px;
  background: linear-gradient(125deg, #0a6e82 0%, #13a6bd 100%);
  padding: 40px 38px; box-shadow: 0 24px 54px rgba(10,110,130,.28);
}
.cta-box__wm { position: absolute; right: -20px; bottom: -34px; width: 200px; opacity: .14; pointer-events: none; }
.cta-box__kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: #bdeef6; margin-bottom: 12px; }
.cta-box__title { margin: 0; font-size: 26px; font-weight: 800; color: #fff; line-height: 1.15; }
.cta-box__text { margin: 14px 0 26px; font-size: 15px; line-height: 1.55; color: #dff1f5; font-weight: 500; }
.cta-box__url { margin-top: 16px; font-size: 13px; font-weight: 600; color: #bdeef6; text-align: center; word-break: break-word; }

/* Big abstract CTA banner (homepage) */
.cta-banner {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(115deg, #0a6e82 0%, #13a6bd 62%, #22b6cf 100%);
  padding: clamp(36px,5vw,60px); box-shadow: 0 26px 60px rgba(10,110,130,.3);
}
.cta-banner__wm { position: absolute; right: -26px; top: -46px; width: 280px; opacity: .16; pointer-events: none; }
.cta-banner__badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.32); padding: 7px 16px; border-radius: 30px; margin-bottom: 20px;
}
.cta-banner__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.cta-banner__badge span:last-child { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: #fff; }
.cta-banner__title { margin: 0; font-size: clamp(30px,3.8vw,48px); font-weight: 800; color: #fff; line-height: 1.02; letter-spacing: -.02em; }
.cta-banner__text { margin: 16px 0 0; font-size: 17px; line-height: 1.55; color: #dff1f5; font-weight: 500; max-width: 580px; }

/* Welcome Address */
.readmore-link { font-size: 1rem; color: var(--teal-600); text-decoration: none; font-weight: 600; transition: color .6s ease; }
.readmore-link:hover { color: var(--gold); }

/* ---------- Topic tiles (homepage θεματολογία) ---------- */
.topic {
  display: flex; gap: 18px; align-items: center; height: 100%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 22px 24px; transition: background .2s, transform .2s;
}
.topic:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.topic__icon { flex: none; width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.topic__icon--cyan { background: linear-gradient(135deg, #13a6bd, #0a6e82); }
.topic__icon--gold { background: linear-gradient(135deg, #E6B25B, #d6921f); }
.topic__text { font-size: 17px; font-weight: 700; color: #eaf6f9; line-height: 1.25; }

/* ---------- Timeline (key dates) ---------- */
.timeline { position: relative; }
.timeline__line { position: absolute; left: 12.5%; right: 12.5%; top: 11px; height: 2px; background: linear-gradient(90deg, var(--gold), #13a6bd 60%, #0a6e82); z-index: 1; }
.timeline__node { position: relative; z-index: 2; text-align: center; }
.timeline__dot { width: 24px; height: 24px; border-radius: 50%; border: 4px solid #fff; margin: 0 auto 22px; }
.timeline__date { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -.01em; }
.timeline__cap { font-size: 14px; font-weight: 600; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ---------- Committee members ---------- */
.role-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 16px; padding: 22px 22px 24px; box-shadow: 0 10px 28px rgba(14,42,49,.05); height: 100%;
}
.role-card__role { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--gold-700); text-transform: uppercase; }
.role-card__name { font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 10px; line-height: 1.25; }
.member { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 600; color: var(--ink-700); line-height: 1.3; }
.member__dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.member__dot--cyan { background: var(--cyan-500); }
.member__dot--gold { background: var(--gold); }
.pres-card {
  display: flex; gap: 24px; align-items: center; background: var(--surface);
  border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: 0 14px 38px rgba(14,42,49,.07); height: 100%;
}
.pres-card__photo { width: 128px; height: 128px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 24px rgba(14,42,49,.15); }
.tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .12em; padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; }
.tag--cyan { color: var(--teal-600); background: #dcf0f4; }
.tag--gold { color: var(--gold-700); background: #f6ead0; }
.pres-card__name { font-size: 23px; font-weight: 800; color: var(--ink); line-height: 1.15; }
.pres-card__role { font-size: 14px; font-weight: 600; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.pill-president {
  display: inline-flex; align-items: center; gap: 16px;
  background: linear-gradient(115deg, #0a6e82, #13a6bd); border-radius: 16px;
  padding: 18px 28px 18px 22px; box-shadow: 0 14px 32px rgba(10,110,130,.22);
}
.pill-president__label { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: #bdeef6; text-transform: uppercase; }
.pill-president__sep { width: 1px; height: 30px; background: rgba(255,255,255,.3); }
.pill-president__name { font-size: 21px; font-weight: 800; color: #fff; }

/* ---------- Pricing tiers (registration) ---------- */
.tier { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 32px 30px 34px; box-shadow: 0 14px 38px rgba(14,42,49,.07); height: 100%; display: flex; flex-direction: column; }
.tier__name { font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.3; min-height: 48px; }
.tier__note { font-size: 14px; font-weight: 600; color: #7b949c; margin-top: 4px; line-height: 1.4; min-height: 20px; }
.tier__price { display: flex; align-items: baseline; gap: 8px; margin-top: 24px; }
.tier__price b { font-size: 54px; font-weight: 900; color: var(--teal-600); letter-spacing: -.03em; line-height: 1; }
.tier__price span { font-size: 24px; font-weight: 800; color: var(--teal-600); }
.tier__early { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; margin-top: 12px; background: #dcf0f4; color: var(--teal-600); font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 6px 13px; border-radius: 20px; }
.tier__hr { height: 1px; background: #eef3f5; margin: 22px 0; }
.tier__late { display: flex; align-items: center; justify-content: space-between; }
.tier__late span { font-size: 14px; font-weight: 700; color: var(--muted); }
.tier__late b { font-size: 22px; font-weight: 900; color: var(--ink); }

/* check list */
.check-item { display: flex; align-items: center; gap: 16px; }
.check-item__box { flex: none; width: 38px; height: 38px; border-radius: 11px; background: #dcf0f4; display: flex; align-items: center; justify-content: center; }
.check-item__text { font-size: 17px; font-weight: 600; color: var(--ink-700); }

/* info cards */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 26px 28px; box-shadow: 0 10px 28px rgba(14,42,49,.05); height: 100%; }
.info-card__title { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--cyan-400); text-transform: uppercase; margin-bottom: 12px; }
.info-card__body { font-size: 15.5px; font-weight: 500; color: var(--ink-600); line-height: 1.55; }

/* abstract specs */
.spec-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--cyan-500); border-radius: 18px; padding: 26px 24px 28px; box-shadow: 0 10px 28px rgba(14,42,49,.05); height: 100%; }
.spec-card__label { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--cyan-400); text-transform: uppercase; }
.spec-card__value { font-size: 26px; font-weight: 900; color: var(--ink); margin-top: 10px; line-height: 1.1; letter-spacing: -.02em; }
.spec-card__note { font-size: 14px; font-weight: 600; color: #7b949c; margin-top: 6px; line-height: 1.4; }
.step-chip { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px 14px 14px; }
.step-chip__n { flex: none; width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, #13a6bd, #0a6e82); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.step-chip__label { font-size: 16px; font-weight: 700; color: var(--ink); }
.rule { display: flex; gap: 15px; background: var(--surface); border: 1px solid #e6eff1; border-radius: 16px; padding: 20px 22px; height: 100%; }
.rule__box { flex: none; width: 30px; height: 30px; border-radius: 9px; background: #dcf0f4; display: flex; align-items: center; justify-content: center; }
.rule__text { font-size: 15.5px; font-weight: 500; color: #33525b; line-height: 1.5; }
.present-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px clamp(24px,3vw,36px); box-shadow: 0 12px 32px rgba(14,42,49,.06); height: 100%; }
.present-card__icon { flex: none; width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.present-card__big { font-size: 48px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }

/* ---------- Venue ---------- */
.venue-card { background: #fff; border-radius: 24px; padding: 38px; box-shadow: 0 18px 44px rgba(14,42,49,.1); display: flex; flex-direction: column; height: 100%; }
.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 44px rgba(14,42,49,.12); min-height: 440px; height: 100%; }
.map-wrap iframe { border: 0; width: 100%; height: 100%; min-height: 440px; display: block; }

/* quote block (greeting) */
.quote-portrait { width: 100%; height: 420px; object-fit: cover; border-radius: 22px; box-shadow: 0 20px 44px rgba(14,42,49,.16); display: block; }
.quote-mark { font-size: 84px; line-height: .4; color: var(--gold); font-weight: 900; height: 42px; }
.quote-byline { border-left: 3px solid var(--gold); padding-left: 16px; margin-top: 22px; }

/* placeholder for production images */
.img-placeholder {
  background:
    repeating-linear-gradient(135deg, #e7f0f2 0 12px, #eff6f8 12px 24px);
  display: flex; align-items: center; justify-content: center;
  color: #6b8891; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-size: 12px; text-align: center; padding: 12px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-800); padding: 54px clamp(24px,5vw,72px) 40px; }
.footer-brand-mark { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 19px; flex: none; }
.site-footer p { font-size: 14px; line-height: 1.6; color: #9fc6d0; }
.footer-head { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: #5f97a3; margin-bottom: 14px; }
.footer-link { font-size: 14px; color: #cfe5ea; text-decoration: none; font-weight: 600; transition: color .6s ease; }
.footer-link:hover { color: var(--gold); }
.footer-contact { font-size: 14px; color: #cfe5ea; font-weight: 600; }
.footer-base { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: #6f9aa4; margin-top: 36px; }

/* entrance */
.fade-up { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { transform: translateY(20px); opacity: .4; } to { transform: none; opacity: 1; } }

/* honor reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .ecg-path.is-drawn { animation: none; stroke-dashoffset: 0; }
  .fade-up { animation: none; }
}
