/* ====================================================
   ROTTERDAM DOCKERS - ETPL 2026
   Brand Colors:
     --green:  #1B3A2D  (Dockers Green)
     --gold:   #C9A84C  (Heritage Gold)
     --dark:   #0F2119  (Dark Anchor)
     --ivory:  #F5F0E8  (Ivory White)
     --grey:   #8A8D8B  (Mast Grey)
   ==================================================== */

@font-face {
  font-family: 'Lemon Milk';
  src: url('../fonts/LEMONMILK-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lemon Milk';
  src: url('../fonts/LEMONMILK-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lemon Milk';
  src: url('../fonts/LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #1B3A2D;
  --green-light: #244A3A;
  --green-dark: #0F2119;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A88B3A;
  --ivory: #F5F0E8;
  --ivory-dark: #E8E0D2;
  --dark: #0F2119;
  --grey: #8A8D8B;
  --grey-light: #B5B7B6;
  --white: #FFFFFF;
  --black: #111111;
  --shadow: rgba(15, 33, 25, 0.15);
  --shadow-lg: rgba(15, 33, 25, 0.25);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  color: var(--dark);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 18, 13, 0.98);
  padding: 10px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--ivory);
  letter-spacing: 2px;
}

.logo-name-gold {
  color: #C9A027;
}

.logo-league {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 3px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Gradient overlay to separate text from image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(15, 33, 25, 0.85) 0%, rgba(15, 33, 25, 0.55) 40%, rgba(15, 33, 25, 0.1) 70%, transparent 100%),
    linear-gradient(to top, rgba(15, 33, 25, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: left;
  z-index: 2;
  pointer-events: none;
}

.hero-text-rotterdam {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 7rem);
  color: #FFFFFF;
  letter-spacing: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  display: block;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-text-dockers {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 7rem);
  color: #C9A027;
  letter-spacing: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  display: block;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 3px;
  margin-top: 20px;
  display: block;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-est {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #C9A027;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-est-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A027, transparent);
}

.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 42px;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  color: #C9A027;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(201, 160, 39, 0.5);
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-cta:hover {
  color: var(--dark, #0d1f16);
  background: #C9A027;
  border-color: #C9A027;
}

/* ===== FOUNDING CREW ===== */
.founding-crew {
  background: var(--dark);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founding-crew::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(27, 58, 45, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.founding-crew .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.founding-crew .section-tag {
  display: inline-block;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #C9A027;
  letter-spacing: 8px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 12px;
}

.section-tag-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A027, transparent);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.founder-card {
  background: linear-gradient(180deg, rgba(27, 58, 45, 0.4) 0%, rgba(15, 33, 25, 0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.founder-card.reveal:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.06);
}

.founder-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-info {
  padding: 18px 22px 22px;
}

.founder-first {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ivory);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.founder-last {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #C9A027;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 2px 0 10px;
  line-height: 1.1;
}

.founder-role {
  display: inline-block;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  color: rgba(201, 160, 39, 0.9);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 7px 20px;
  background: rgba(201, 160, 39, 0.08);
  border-left: 3px solid #C9A027;
}

.founder-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.6;
  opacity: 0.85;
}

/* ===== WHAT'S COMING ===== */
.whats-coming {
  background: var(--dark);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.wc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.wc-title {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #C9A027;
  letter-spacing: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-header-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A027, transparent);
}

/* Track Bar */
.wc-track-bar {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 32px;
  padding: 0 80px;
}

.wc-track-line {
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  height: 2px;
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-50%);
}

.wc-track-progress {
  width: 20%;
  height: 100%;
  background: #C9A027;
}

.wc-track-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.wc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s ease;
}

.wc-dot.done {
  background: #C9A027;
  border-color: #C9A027;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35);
}

/* Flow Items */
.wc-flow {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.wc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

.wc-icon {
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.wc-item.done .wc-icon {
  color: #C9A027;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.2));
}

.wc-item:hover .wc-icon {
  color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.wc-item.done:hover .wc-icon {
  color: #C9A027;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
}

.wc-label {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.4s ease;
}

.wc-item.done .wc-label {
  color: var(--ivory);
}

.wc-status {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.5rem;
  color: rgba(201, 168, 76, 0.2);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.wc-item.done .wc-status {
  color: #C9A027;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  padding: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-top-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 0 48px;
}

.footer-brand-title {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--ivory);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}

.footer-brand-gold {
  color: #C9A027;
}

.footer-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--grey-light);
  margin-bottom: 24px;
  opacity: 0.6;
}

.footer-btn {
  display: inline-block;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  color: #C9A027;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 12px 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.footer-btn:hover {
  background: #C9A027;
  color: var(--dark);
  border-color: #C9A027;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  color: rgba(201, 168, 76, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #C9A027;
  color: #C9A027;
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(138, 141, 139, 0.45);
  letter-spacing: 1px;
}

.footer-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(138, 141, 139, 0.45);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #C9A027;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* Founding crew — tighten cards on tablet */
  .founders-grid {
    gap: 16px;
  }

  .founder-img {
    height: 280px;
  }

  /* What's Coming — reduce gutters so 5 items fit */
  .wc-track-bar {
    padding: 0 48px;
  }

  .wc-track-line {
    left: 48px;
    right: 48px;
  }

  .wc-flow {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Hero — tame letter-spacing so text doesn't overflow */
  .hero-text-rotterdam,
  .hero-text-dockers {
    letter-spacing: 6px;
  }

  .hero-tagline {
    letter-spacing: 2px;
    font-size: 12px;
  }

  .hero-est {
    letter-spacing: 4px;
    gap: 12px;
  }

  .hero-est-line {
    width: 40px;
  }

  /* Founding crew — let stacked cards flow naturally */
  .founding-crew {
    min-height: auto;
    padding: 64px 0 48px;
  }

  .founder-img {
    height: 360px;
  }

  /* Section header lines shrink on smaller screens */
  .section-tag-line,
  .wc-header-line {
    width: 48px;
  }

  /* What's Coming — break the single row into a grid */
  .wc-track-bar {
    display: none;
  }

  .wc-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 8px;
    padding: 0;
  }

  /* Footer bottom bar stacks */
  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Hero — tighten further on phones */
  .hero-text-rotterdam,
  .hero-text-dockers {
    letter-spacing: 4px;
  }

  .hero-tagline {
    letter-spacing: 1px;
  }

  /* Section headers */
  .founding-crew .section-tag,
  .wc-title {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .section-tag-line,
  .wc-header-line {
    width: 32px;
  }

  .founding-crew .section-header,
  .wc-header {
    gap: 14px;
  }

  .founder-img {
    height: 320px;
  }

  /* What's Coming — two per row on small phones */
  .wc-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:390px){
  .hero-text-rotterdam{
    font-size: 42px;
  }
}
