/* ===== Aegean Marine Club — Shared Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1a2b45;
  --navy-deep: #142136;
  --teal: #3aa9c4;
  --teal-soft: #d6eef4;
  --bg: #f7fafc;
  --surface: #ffffff;
  --text: #1f2d42;
  --muted: #5d6b80;
  --border: #e2e8ef;
  --shadow: 0 10px 30px rgba(20, 33, 54, 0.08);
  --radius: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 12px;}

.section { padding: 80px 0; }
.section--alt { background: var(--surface); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.section-lead { color: var(--muted); max-width: 640px; font-size: 17px; }
.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s ease;
}
.btn--primary { background: var(--teal); color: #062028; }
.btn--primary:hover { background: #2f93ab; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-1px); }
.btn--ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.22); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background:  rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
   padding: 40px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px;  }
.brand { display: flex; align-items: center; gap: 25px; }
.brand__mark {
  width: 120px; height: auto; border-radius: 9px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.brand__sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  padding: 9px 14px; border-radius: 7px; font-size: 18px; font-weight: 500;
  color: var(--text); transition: all 0.15s ease;
}
.nav__links a:hover { background: var(--teal-soft); color: var(--navy); }
.nav__links a.active { color: var(--teal); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: 8px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: 0.2s;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

@media (max-width: 880px) {
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px; box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 12px; border-radius: 8px; }
  .nav__toggle { display: flex; }
  .nav__cta .btn { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,33,54,0.82) 0%, rgba(20,33,54,0.55) 50%, rgba(20,33,54,0.35) 100%);
}
.hero__inner { position: relative; z-index: 2; color: #fff; max-width: 660px; padding: 60px 0; }
.hero__inner .eyebrow { color: var(--teal); }
.hero h1 { color: #fff; font-size: clamp(40px, 6vw, 68px); margin-bottom: 20px; }
.hero p { font-size: 19px; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.hero__dots button {
  width: 38px; height: 4px; border-radius: 2px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.4); transition: 0.2s;
}
.hero__dots button.active { background: var(--teal); }

/* ===== Page header (inner pages) ===== */
.page-hero {
  background: var(--navy); color: #fff; padding: 70px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(58,169,196,0.35), transparent 70%);
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 52px); position: relative; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin-top: 12px; position: relative; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 14px; position: relative; }
.breadcrumb a:hover { color: var(--teal); }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; background: var(--surface); border: 5px solid var(--border); border-radius: var(--radius); }
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--teal); }
.stat__label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ===== Grid cards ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px; border-radius: 10px; background: var(--teal-soft);
  display: grid; place-items: center; color: var(--navy); margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 23px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ===== Two-column feature ===== */
.feature2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-items: center; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature__img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.feature ul { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.feature li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.feature li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* ===== Members / team ===== */
.member { text-align: center; }
.member__avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600;
}
.member h4 { font-size: 20px; }
.member span { font-size: 14px; color: var(--teal); font-weight: 600; }

/* ===== Donations ===== */
.tier {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; display: flex; flex-direction: column;
}
.tier--featured { border-color: var(--teal); box-shadow: var(--shadow); position: relative; }
.tier--featured::before {
  content: 'Δημοφιλές'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #062028; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: 0.05em;
}
.tier h3 { font-size: 24px; }
.tier__price { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 700; color: var(--navy); margin: 10px 0; }
.tier__price small { font-size: 16px; color: var(--muted); font-weight: 400; }
.tier ul { list-style: none; text-align: left; margin: 20px 0 26px; display: grid; gap: 10px; }
.tier li { display: flex; gap: 8px; color: var(--muted); font-size: 15px; }
.tier li svg { color: var(--teal); flex-shrink: 0; }
.tier .btn { margin-top: auto; justify-content: center; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__item svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.contact-info__item strong { display: block; color: var(--navy); }
.contact-info__item span { color: var(--muted); font-size: 15px; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 15px; background: var(--bg); color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; }
.form__success { display: none; background: var(--teal-soft); color: var(--navy); padding: 14px; border-radius: 8px; margin-bottom: 18px; font-weight: 500; }
.form__success.show { display: block; }

.map-embed { border: 0; width: 100%; height: 280px; border-radius: var(--radius); margin-top: 16px; }

/* ===== CTA band ===== */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }
.cta-band .hero__actions { justify-content: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.78); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: 15px; transition: 0.15s; }
.footer-grid a:hover { color: var(--teal); }
.footer-brand p { font-size: 15px; margin-top: 14px; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 14px;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}



@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .feature2 { grid-template-columns: 1fr; }

}

.field input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #fff;
}
.sponsor_logo {
width: 120px; height: auto; border-radius: 9px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700;
}