/* ── Variables ── */
:root {
  --red:       #6b0f0f;
  --red-light: #8b1a1a;
  --gold:      #c9a84c;
  --gold-light:#e8c96a;
  --dark:      #111111;
  --mid:       #444444;
  --muted:     #888888;
  --border:    #e8e8e8;
  --bg:        #ffffff;
  --bg-soft:   #f7f7f7;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ── Language Toggle ── */
.lang-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--muted);
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.8rem; font-weight: 700; color: var(--muted);
  padding: 0.2rem 0.3rem; transition: color 0.2s;
}
.lang-btn.active { color: var(--red); }
.lang-btn:hover { color: var(--red); }

/* ── Topbar ── */
.topbar {
  background: var(--dark); color: rgba(255,255,255,0.6);
  font-size: 0.78rem; padding: 0.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-right a {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.topbar-right a:hover { color: var(--gold); }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--bg); border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-title { font-weight: 800; font-size: 1rem; color: var(--dark); }
.nav-sub { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 100px);
  background: var(--bg-soft);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shape {
  position: absolute; right: -100px; top: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,15,15,0.06) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--dark); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-desc { font-size: 1.05rem; color: var(--mid); max-width: 440px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--red); color: #fff;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-outline {
  background: transparent; color: var(--dark);
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--dark); }

.hero-logo-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-logo-ring {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
}
.hero-logo {
  width: 280px; height: 280px; object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(107,15,15,0.2));
  position: relative; z-index: 1;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); }

/* ── Info Strip ── */
.info-strip { background: var(--red); padding: 1.5rem 2rem; }
.info-strip-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.info-item { text-align: center; padding: 0.5rem 3rem; }
.info-num { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); }
.info-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ── Section helpers ── */
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem; display: block;
}
.section-eyebrow.center { text-align: center; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--dark); margin-bottom: 2.5rem; }
h2.center { text-align: center; }

/* ── About ── */
.about { padding: 7rem 0; background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-badge {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--bg-soft); border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; z-index: 1;
}
.about-badge img { width: 220px; object-fit: contain; }
.about-accent-block { display: none; }
.about-content p { color: var(--mid); font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-ground {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-top: 2rem; padding: 1.25rem;
  background: var(--bg-soft); border-radius: 10px;
  border: 1px solid var(--border);
}
.ground-icon-wrap { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-ground strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.about-ground span { font-size: 0.88rem; color: var(--muted); }

/* ── Carousel ── */
.carousel-wrap {
  display: flex; align-items: center; gap: 0.5rem; position: relative;
}
.carousel-track {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-behavior: smooth; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none; flex: 1;
  /* peek effect: show partial next card */
  padding-right: 3rem;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .player-card {
  flex: 0 0 160px; scroll-snap-align: start;
}
.carousel-btn {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--dark);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Dot indicators */
.carousel-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 0.5rem;
}
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--red); transform: scale(1.3); }

@media (hover: none) and (pointer: coarse) {
  .carousel-btn { display: none; }
}

/* ── Squad ── */
.squad { padding: 7rem 0; background: var(--bg-soft); }
.squad-block { margin-bottom: 3.5rem; }
.squad-group-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.players-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }

.staff-card, .player-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem 1rem;
  text-align: center; transition: box-shadow 0.2s, transform 0.2s;
}
.staff-card:hover, .player-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.staff-avatar-wrap, .player-avatar-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-soft); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.staff-avatar, .player-avatar { font-size: 1.8rem; }
.player-num-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 0.75rem; font-weight: 800; padding: 0.2rem 0.55rem;
  border-radius: 4px; margin-bottom: 0.5rem;
}
.player-name, .staff-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.player-pos, .staff-role { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

/* ── Contact ── */
.contact { padding: 7rem 0; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-desc { color: var(--mid); margin-bottom: 2rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-wrap { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: var(--red); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }
.contact-row span { color: var(--mid); font-size: 0.95rem; line-height: 1.7; }

.instagram-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 700; font-size: 0.9rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; transition: opacity 0.2s;
}
.instagram-btn:hover { opacity: 0.88; }

/* ── Contact Form ── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.8rem 1rem; font-size: 0.95rem; font-family: inherit;
  color: var(--dark); background: var(--bg);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-success { display: none; color: #2e7d32; font-size: 0.9rem; text-align: center; font-weight: 600; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 2.5rem 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 40px; opacity: 0.9; }
.footer-brand strong { display: block; color: #fff; font-size: 0.95rem; }
.footer-brand span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-logo-wrap { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .info-item { padding: 0.5rem 1.5rem; }
  .info-divider { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
}
