/* GROUPE LYNX VISION — Styles */
:root {
  --red: #E10600;
  --blue: #0B3D91;
  --gold: #D4AF37;
  --black: #000000;
  --white: #FFFFFF;
  --dark: #0F172A;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; font-family: 'Poppins', system-ui, -apple-system, Arial, sans-serif; color: var(--white); background: var(--dark); }

.container { width: min(1200px, 92%); margin-inline: auto; }

.topbar {
  position: sticky; top: 0; z-index: 20; background: rgba(15,23,42,.9); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-weight: 700; letter-spacing: .5px; }
.logo { width: 42px; aspect-ratio: 1; }
.menu a { color: var(--white); text-decoration: none; margin: 0 10px; opacity: .9; }
.menu a:hover { opacity: 1; }
#lang-toggle { margin-left: 10px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--white); padding: 8px 10px; border-radius: 8px; cursor: pointer; }

.hero {
  position: relative; min-height: 68vh; display: grid; place-items: center; text-align: center;
  background: radial-gradient(1000px 400px at 20% 20%, rgba(212,175,55,.15), transparent 60%),
              radial-gradient(1000px 400px at 80% 20%, rgba(11,61,145,.15), transparent 60%),
              url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat fixed;
}
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.7)); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(28px, 4vw, 52px); margin: 0 0 10px; }
.subtitle { opacity: .95; max-width: 900px; margin: 0 auto 26px; }
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; border: 1px solid rgba(255,255,255,.25); padding: 12px 18px; border-radius: 999px; text-decoration: none; color: var(--white); box-shadow: var(--shadow); }
.btn.primary { background: linear-gradient(90deg, var(--red), var(--blue)); border: none; }
.btn.ghost { background: rgba(255,255,255,.06); }
.btn.small { padding: 8px 12px; font-size: 14px; }

.section { padding: 64px 0; background: var(--dark); }
.section.alt { background: #0b1224; }
.section-title { text-align: center; font-size: clamp(24px, 3vw, 36px); margin: 0 0 28px; }

.grid { display: grid; gap: 18px; }
.services { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow); }
.card h3 { margin-top: 0; color: var(--gold); }

.media { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.player-card { background: linear-gradient(180deg, rgba(11,61,145,.4), rgba(225,6,0,.25)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.player { aspect-ratio: 16/9; background: rgba(0,0,0,.4); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.player iframe { width: 100%; height: 100%; border: 0; background: transparent; }

.shop { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.product { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 14px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.product .thumb { height: 140px; border-radius: 10px; margin-bottom: 10px; background:
  linear-gradient(135deg, rgba(212,175,55,.25), rgba(11,61,145,.25)), 
  repeating-linear-gradient(45deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 10px, transparent 10px, transparent 20px);
  border: 1px dashed rgba(255,255,255,.2);
}
.price { font-weight: 700; color: var(--gold); }

.contact { display: grid; gap: 20px; grid-template-columns: 1.2fr .8fr; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form input, .form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: var(--white); }
.form button { margin-top: 8px; }

.socials a { color: var(--white); opacity: .85; margin-right: 10px; }
.socials a:hover { opacity: 1; color: var(--gold); }

.footer { padding: 30px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.08); background: #0b0f1c; }

/* Responsive */
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
}
