/* ── EUROPEAN CRIBS — NAV & FOOTER ── */

/* NAV */
.ec-nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,237,242,0.6);
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  box-sizing: border-box;
}
.ec-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #0f172a;
  text-decoration: none;
  justify-self: start;
  letter-spacing: 0.01em;
}
.ec-nav-logo em { font-style: italic; color: #5595b6; font-weight: 300; }

/* Nav links — pill style */
.ec-nav-links { display: flex; gap: 2px; justify-self: center; }
.ec-nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #64748b;
  padding: 7px 16px;
  text-decoration: none;
  transition: all 0.15s;
  border-radius: 100px;
  white-space: nowrap;
  font-family: 'Inter', 'DM Sans', sans-serif;
}
.ec-nav-link:hover { color: #0f172a; background: #f1f5f9; }
.ec-nav-link.active { color: #0f172a; font-weight: 600; background: #f1f5f9; }

/* CTA buttons — fully rounded */
.ec-nav-cta { display: flex; gap: 8px; justify-self: end; align-items: center; }
.ec-nav-login {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  padding: 7px 18px;
  border-radius: 100px;
  transition: all 0.15s;
  text-decoration: none;
  border: 1px solid #e8edf2;
  font-family: 'Inter', 'DM Sans', sans-serif;
}
.ec-nav-login:hover { color: #0f172a; background: #f8fafc; border-color: #cbd5e1; }
.ec-nav-join {
  font-size: 13px;
  font-weight: 600;
  background: #0f172a;
  color: #fff;
  padding: 8px 22px;
  border-radius: 100px;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-family: 'Inter', 'DM Sans', sans-serif;
}
.ec-nav-join:hover { background: #334155; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,23,42,0.2); }

/* HAMBURGER */
.ec-nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px; justify-self: end; border-radius: 100px;
  transition: background 0.15s;
}
.ec-nav-hamburger:hover { background: #f1f5f9; }
.ec-nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #0f172a; border-radius: 2px;
  transition: all 0.25s; transform-origin: center;
}
.ec-nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ec-nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ec-nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.ec-mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 199;
  flex-direction: column;
  padding: 32px 32px 48px;
  overflow-y: auto;
  border-top: 1px solid #e8edf2;
}
.ec-mobile-menu.open { display: flex; }
.ec-mobile-links { list-style: none; padding: 0; margin: 0 0 32px; }
.ec-mobile-links li a {
  display: block; padding: 14px 0;
  font-size: 1.3rem; font-weight: 600;
  color: #0f172a; text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  letter-spacing: -0.02em;
  transition: color 0.15s;
  font-family: 'Inter', 'DM Sans', sans-serif;
}
.ec-mobile-links li a:hover { color: #5595b6; }
.ec-mobile-join {
  display: block; padding: 14px;
  background: #0f172a; color: #fff;
  font-size: 13px; font-weight: 600;
  text-decoration: none; border-radius: 100px;
  text-align: center; margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-family: 'Inter', 'DM Sans', sans-serif;
}
.ec-mobile-login {
  display: block; padding: 14px;
  border: 1.5px solid #e8edf2; color: #64748b;
  font-size: 13px; font-weight: 500;
  text-decoration: none; border-radius: 100px;
  text-align: center;
  font-family: 'Inter', 'DM Sans', sans-serif;
}

@media(max-width: 900px) {
  .ec-nav { grid-template-columns: 1fr auto; padding: 0 24px; }
  .ec-nav-links, .ec-nav-cta { display: none; }
  .ec-nav-hamburger { display: flex; }
}
@media(max-width: 480px) {
}
