/* ============================================
   VYRO TALENT — Global Styles
   Colors: White (#fff), Black (#0a0a0a), Red (#ff3b35)
   Fonts: Montserrat (headings), Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --red: #ff3b35;
  --gray: #888;
  --light-gray: #f5f5f5;
  --dark-gray: #1a1a1a;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ── Typography ────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
}

.all-caps { text-transform: uppercase; }
.red { color: var(--red); }

/* ── Layout ────────────────────────────── */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm { padding: 3rem 0; }

.line {
  width: 100%;
  height: 1px;
  background: rgba(10,10,10,0.1);
}

.line-dark {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ── NAVBAR ────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navbar .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar .logo span { color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.menu-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--black);
}

.menu-btn .arrow {
  width: 20px;
  height: 20px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.menu-btn:hover .arrow {
  background: var(--red);
  border-color: var(--red);
}

.menu-btn .arrow svg { width: 10px; height: 10px; }

/* ── FULL-SCREEN MENU ─────────────────── */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 200;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}

.menu-overlay.active { transform: translateY(0); }

.menu-overlay .menu-inner {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 6rem 4rem 3rem;
}

.menu-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-left h2 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.menu-left h2 span { color: var(--red); }

.menu-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.menu-card {
  background: var(--dark-gray);
  border-radius: 16px;
  padding: 2.5rem;
  width: 320px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.menu-card-header span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mc-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
}

.menu-card a {
  display: block;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s, padding-left 0.3s;
}

.menu-card a:last-child { border-bottom: none; }
.menu-card a:hover { color: var(--red); padding-left: 0.5rem; }

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-socials {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  gap: 2rem;
}

.menu-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.menu-socials a:hover { color: var(--white); }

.menu-copyright {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* ── V LOGO ────────────────────────────── */

.v-logo {
  width: 28px;
  height: 26px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── HERO WITH COLLAGE BACKGROUND ──────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Collage grid sits behind everything — fills entire hero */
.collage-bg {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transform: rotate(-5deg);
  z-index: 1;
  will-change: transform;
}

.collage-track {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  transition: transform 0.1s linear;
}

.collage-img {
  width: 22vw;
  height: 28vh;
  min-width: 200px;
  min-height: 160px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.06);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay so text is readable */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Hero content floats on top */
.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 span { color: var(--red); }

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ───────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--black);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-filled {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-filled:hover {
  background: #a01e23;
  border-color: #a01e23;
}

.btn-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-light:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ── SERVICES / WHAT WE DO ─────────────── */

.services-section { background: var(--black); color: var(--white); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.3s;
}

.service-item:hover { padding-left: 1rem; }

.service-item .hash {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
}

.service-item h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.services-quote {
  margin-top: 3rem;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

/* ── STATS ─────────────────────────────── */

.stats-section {
  background: var(--red);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-item h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── DIVISIONS GRID ────────────────────── */

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.division-card {
  position: relative;
  background: var(--black);
  border-radius: 16px;
  padding: 3rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.3s;
}

.division-card:hover { transform: translateY(-4px); }

.division-card .card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.division-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.division-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.division-card .btn-light {
  align-self: flex-start;
  font-size: 0.7rem;
  padding: 0.75rem 1.5rem;
}

.division-card .card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
}

/* ── CLIENTS MARQUEE ───────────────────── */

.marquee-section { padding: 3rem 0; overflow: hidden; }

.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.15);
  flex-shrink: 0;
}

.marquee-item .dot {
  color: var(--red);
  margin: 0 1.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA SECTION ───────────────────────── */

.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8rem 2rem;
}

.cta-section h2 { margin-bottom: 2rem; }

/* ── NEWS LIST ─────────────────────────── */

.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-header h1 { margin-bottom: 1rem; }

.page-header-line {
  width: 100%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

.news-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light-gray);
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-item:hover .news-img img { transform: scale(1.03); }

.news-content h4 { margin-bottom: 1rem; font-weight: 700; }

.news-content .news-date {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.news-content .btn {
  margin-top: 1rem;
  font-size: 0.7rem;
  padding: 0.6rem 1.25rem;
}

/* ── ROSTER GRID ───────────────────────── */

.roster-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.25rem;
  border: 2px solid rgba(10,10,10,0.15);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.athlete-card {
  background: var(--black);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.athlete-card:hover { transform: translateY(-4px); }

.athlete-card .card-img {
  aspect-ratio: 3/4;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.athlete-card .card-info {
  padding: 1.5rem;
}

.athlete-card .card-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.athlete-card .card-info .card-meta {
  font-size: 0.75rem;
  color: var(--gray);
}

.athlete-card .card-info .card-meta span {
  color: var(--red);
}

/* ── DIVISION SINGLE PAGE ──────────────── */

.division-hero {
  min-height: 60vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.division-hero h1 { color: var(--white); }
.division-hero .hero-sub { color: rgba(255,255,255,0.5); }

.division-marquee {
  overflow: hidden;
  background: var(--black);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.division-marquee .marquee-item {
  color: rgba(255,255,255,0.08);
  font-size: 2rem;
}

.division-services { background: var(--white); }

.division-next {
  background: var(--black);
  padding: 4rem 0;
  text-align: center;
}

.division-next .label { color: var(--gray); margin-bottom: 1rem; }

.division-next h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.division-next h2:hover { color: var(--red); }

/* ── CAREERS ───────────────────────────── */

.careers-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.job-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(196,35,42,0.08);
}

.job-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }

.job-card .job-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.job-card .btn {
  font-size: 0.65rem;
  padding: 0.5rem 1rem;
  flex-shrink: 0;
}

/* ── CONTACT FORM ──────────────────────── */

.contact-section { background: var(--light-gray); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(10,10,10,0.12);
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ────────────────────────────── */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-links-col a:hover { color: var(--white); }

.footer-links-col .col-label {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom .footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .footer-socials a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-bottom .footer-socials a:hover { color: var(--red); }

/* ── RESPONSIVE ────────────────────────── */

@media (max-width: 991px) {
  .divisions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 3rem; }
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 767px) {
  .navbar { padding: 1rem 1.25rem; }
  .section { padding: 4rem 0; }
  .news-item { grid-template-columns: 1fr; }
  .menu-overlay .menu-inner { padding: 5rem 2rem 2rem; flex-direction: column; }
  .menu-left { flex: none; margin-bottom: 2rem; }
  .menu-right { flex: none; align-items: stretch; }
  .menu-card { width: 100%; }
  .menu-socials { left: 2rem; bottom: 2rem; }
  .menu-copyright { right: 2rem; bottom: 2rem; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
