/* EUROSPORTS — brand site styles */

@font-face {
  font-family: 'Bai Jamjuree Light';
  src: url('fonts/BaiJamjuree-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Bai Jamjuree';
  src: url('fonts/BaiJamjuree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Bai Jamjuree SemiBold';
  src: url('fonts/BaiJamjuree-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Bai Jamjuree';
  src: url('fonts/BaiJamjuree-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --blue: #367fc2;
  --gray-light: #e5e8eb;
  --gray-mid: #9aa0a6;
  --gray-dark: #1f1f1f;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: 'Bai Jamjuree Light', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img.badge { height: 30px; width: auto; }
.nav-logo img.wordmark { height: 16px; width: auto; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: 'Bai Jamjuree SemiBold';
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}
.hero img.badge { width: 110px; height: auto; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 0.1s; }
.hero img.wordmark { width: min(480px, 80vw); height: auto; opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 0.25s; }
.hero .eyebrow {
  margin-top: 2.5rem;
  font-family: 'Bai Jamjuree SemiBold';
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--blue);
  opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 0.4s;
}
.hero .statement {
  margin-top: 1.25rem;
  max-width: 640px;
  font-family: 'Bai Jamjuree';
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--white);
  opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 0.5s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Section shared ---------- */
.section {
  padding: 7rem 0;
}
.section.dark { background: var(--black); color: var(--white); }
.section.light { background: var(--white); color: var(--black); }

.numbered {
  display: block;
  font-family: 'Bai Jamjuree';
  font-weight: 700;
  font-size: 4rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.section.dark .numbered { color: var(--gray-dark); }

.label {
  display: block;
  font-family: 'Bai Jamjuree SemiBold';
  font-size: 1.5rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.statement-lg {
  font-family: 'Bai Jamjuree';
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 780px;
  line-height: 1.3;
}
.section.light .statement-lg.accent { color: var(--blue); }

.body-text {
  font-family: 'Bai Jamjuree Light';
  font-size: 1.15rem;
  max-width: 620px;
  line-height: 1.6;
}

/* Two-column split (How / What) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
}
.split-grid .divider { background: rgba(255,255,255,0.15); }
.section.light .split-grid .divider { background: #d9d9d9; }
@media (max-width: 720px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-grid .divider { display: none; }
}

.who-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 3rem;
}
.who-grid img { width: 100%; max-width: 220px; justify-self: center; }
@media (max-width: 720px) {
  .who-grid { grid-template-columns: 1fr; text-align: center; }
  .who-grid img { margin: 0 auto; }
}

/* Wholesale CTA */
.wholesale {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}
.wholesale .label { color: var(--white); }
.wholesale h2 {
  font-family: 'Bai Jamjuree';
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.wholesale p {
  font-family: 'Bai Jamjuree Light';
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'Bai Jamjuree SemiBold';
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.95rem 2.2rem;
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { background: #1a1a1a; transform: translateY(-2px); }

/* Footer */
.footer {
  background: var(--black);
  color: var(--gray-mid);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}
.footer img { height: 26px; margin-bottom: 1rem; }
.footer .addr {
  font-family: 'Bai Jamjuree Light';
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer .copy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #555;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
