/* FILE: assets/css/style.css */
:root{
  --yellow:#f5b73c;
  --bg:#070809;
  --bg2:#101214;
  --bg3:#0c0d0f;
  --text:#ffffff;
  --muted:#aaaaaa;
  --muted2:rgba(255,255,255,0.78);
  --stroke:rgba(255,255,255,0.08);
  --stroke2:rgba(255,255,255,0.06);
  --radius:18px;
  --radius2:26px;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Montserrat,sans-serif;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
strong{font-weight:800}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.5);
  border-bottom:1px solid var(--stroke);
}

.nav{
  width:92%;
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 0;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

/* Bloc principal de gauche : logo + burger + menu */
.nav-main{
  display:flex;
  align-items:center;
  gap:22px;
  flex:1;
  min-width:0;
}

/* Bloc de droite : sélecteur de langue */
.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Sélecteur de langue */
.lang-switch{
  display:flex;
  gap:6px;
  align-items:center;
}
.lang-switch a{
  padding:6px 10px;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(16,18,20,0.45);
  opacity:0.75;
  transition: opacity .15s ease, color .15s ease, border-color .15s ease;
}
.lang-switch a:hover{
  opacity:1;
  color:var(--yellow);
}
.lang-switch a.active{
  color:var(--yellow);
  opacity:1;
  border-color:rgba(245,183,60,0.35);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: auto;
  flex-shrink: 0;
}
.logo img{height:46px;width:auto;border-radius:12px;opacity:0.95}
.logo strong{letter-spacing:0.06em}

.menu{
  display:flex;
  gap:14px;
  font-size:12px;
  letter-spacing:0.10em;
  text-transform:uppercase;
  align-items:center;
  flex-wrap:nowrap;
  justify-content:flex-start;
  flex:1;
  white-space:nowrap;
}
.menu a{
  position:relative;
  padding:10px 2px;
  opacity:0.9;
}
.menu a:hover{color:var(--yellow);opacity:1}
.menu a.active{color:var(--yellow);opacity:1}
.menu a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:4px;
  height:2px;
  background:rgba(245,183,60,0.9);
  border-radius:99px;
}

.burger{
  display:none;
  background:transparent;
  border:1px solid var(--stroke);
  width:44px;height:44px;
  border-radius:14px;
  padding:10px;
  cursor:pointer;
  flex-shrink:0;
}
.burger span{
  display:block;
  height:2px;
  background:rgba(255,255,255,0.8);
  margin:6px 0;
  border-radius:99px;
  transition:transform .25s ease, opacity .2s ease;
}

/* Signature mobile dans la top bar (cachée par défaut, affichée sur mobile via JS) */
.nav-tagline{
  display:none;
  font-size:10px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.65);
  text-align:center;
  width:100%;
  padding-top:6px;
  margin-top:2px;
  border-top:1px solid var(--stroke2);
}

/* HERO */
.hero{
  padding:140px 0 86px;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(245,183,60,0.10), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.78), var(--bg3)),
    var(--hero-img);
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--stroke2);
}

.hero-inner{
  width:92%;
  max-width:var(--max);
  margin:auto;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(16,18,20,0.45);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.82);
  margin-bottom:18px;
}

.hero h1{
  font-size:58px;
  font-weight:800;
  line-height:1.05;
  margin:0;
}
.hero h1 span{color:var(--yellow)}
.hero p{
  max-width:760px;
  color:var(--muted2);
  line-height:1.9;
  margin:18px 0;
}

.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(16,18,20,0.55);
  color:rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(245,183,60,0.35)}
.btn.primary{
  background: linear-gradient(135deg, rgba(245,183,60,0.95), rgba(245,183,60,0.70));
  border-color: rgba(245,183,60,0.35);
  color:#0b0c0d;
  font-weight:800;
}
.btn.primary:hover{transform: translateY(-2px)}
.btn.ghost{
  background: rgba(16,18,20,0.35);
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:38px;
  max-width: 980px;
}
.metric{
  background: rgba(16,18,20,0.45);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.metric-top{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.70);
  margin-bottom:6px;
}
.metric-main{
  font-size:20px;
  font-weight:800;
  letter-spacing:0.02em;
}
.metric-sub{
  margin-top:8px;
  color: rgba(255,255,255,0.72);
  line-height:1.6;
  font-size:13px;
}

/* SECTIONS */
.section{
  width:92%;
  max-width:1100px;
  margin:120px auto;
}
.block p{
  max-width:950px;
  margin:0 0 18px;
  line-height:1.95;
  color:#ddd;
}

h2{
  font-size:26px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--yellow);
  margin:0 0 26px;
}

.highlight{
  background: var(--bg2);
  padding: 34px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke2);
  box-shadow: var(--shadow);
  margin-top: 26px;
}
.highlight p{margin:0 0 14px}
.highlight p:last-child{margin-bottom:0}

/* FULL BLEED */
.full-bleed{
  width:100%;
  max-width:none;
  margin:0;
}
.full-bleed img{
  width:100%;
  height:440px;
  object-fit:cover;
  opacity:0.82;
  border-top:1px solid var(--stroke2);
  border-bottom:1px solid var(--stroke2);
}

/* GRID + CARDS */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:22px;
}
.card{
  background: var(--bg2);
  padding: 24px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke2);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width:160px;height:160px;
  background: radial-gradient(circle at 30% 30%, rgba(245,183,60,0.18), transparent 60%);
  transform: rotate(12deg);
}
.card h3{margin:0 0 10px; position:relative}
.card p{margin:0; color:#ccc; line-height:1.75; position:relative}

/* STRIP */
.strip{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:26px;
  align-items:stretch;
}
.lead{
  color: rgba(255,255,255,0.82);
  line-height:1.9;
  margin:0 0 18px;
  max-width: 720px;
}
.bullets{
  list-style:none;
  padding:0;margin:18px 0 0;
}
.bullets li{
  padding:12px 0 12px 0;
  border-bottom:1px solid var(--stroke2);
  color:#ddd;
  line-height:1.8;
}
.bullets li:last-child{border-bottom:none}
.strip-right{
  display:flex;
  align-items:stretch;
  justify-content:stretch;
}
.media-card{
  width:100%;
  border-radius: var(--radius2);
  border:1px solid var(--stroke2);
  overflow:hidden;
  background: var(--bg2);
  box-shadow: var(--shadow);
}
.media-card img{
  width:100%;
  height: 360px;
  object-fit:cover;
  opacity:0.9;
}
.media-caption{
  padding: 18px;
}
.tag{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(245,183,60,0.25);
  background: rgba(245,183,60,0.10);
  color: rgba(245,183,60,0.95);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.caption-title{
  margin-top:12px;
  font-size:18px;
  font-weight:800;
}
.caption-sub{
  margin-top:8px;
  color: rgba(255,255,255,0.75);
  line-height:1.7;
  font-size:13px;
}

/* PAGE HERO (internal pages) */
.page-hero{
  padding:86px 0 56px;
  background:
    radial-gradient(900px 600px at 30% 0%, rgba(245,183,60,0.10), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.70), var(--bg3)),
    var(--hero-img);
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--stroke2);
}
.page-hero .hero-inner h1{font-size:44px}
.page-hero .hero-inner p{max-width:860px}

/* TABLE-like list */
.list{
  display:grid;
  gap:14px;
}
.list-item{
  background: var(--bg2);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.list-item .meta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:10px;
  color: rgba(255,255,255,0.72);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.pill{
  border:1px solid var(--stroke);
  background: rgba(16,18,20,0.35);
  padding:6px 10px;
  border-radius:999px;
}
.list-item h3{margin:0 0 8px}
.list-item p{margin:0;color:#d2d2d2;line-height:1.85}

/* FAQ */
.faq{
  display:grid;
  gap:14px;
}
.faq details{
  background: var(--bg2);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  letter-spacing:0.02em;
}
.faq .answer{
  margin-top:12px;
  color:#d2d2d2;
  line-height:1.9;
}

/* FOOTER */
.site-footer{
  border-top:1px solid var(--stroke2);
  padding:46px 0;
  color:var(--muted);
}
.footer-inner{
  width:92%;
  max-width:var(--max);
  margin:auto;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:flex-start;
  margin-bottom:22px;
}
.footer-brand{
  font-weight:800;
  letter-spacing:0.08em;
}
.footer-sub{margin-top:8px;color:rgba(255,255,255,0.70);line-height:1.7}
.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:12px;
}
.footer-links a:hover{color:var(--yellow)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid var(--stroke2);
  padding-top:18px;
}
.footer-mini{display:flex;gap:10px;flex-wrap:wrap;color:rgba(255,255,255,0.65)}

/* ===== PAYMENT ===== */

.payment-box{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap:26px;
  align-items:stretch;
}

.payment-copy,
.payment-card{
  background: var(--bg2);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:28px;
}

.payment-copy p{
  color:#d7d7d7;
  line-height:1.9;
  margin:0 0 16px;
}

.payment-note{
  color:rgba(255,255,255,0.68);
  font-size:14px;
}

.payment-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}

.payment-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:0 0 14px;
  border-bottom:1px solid var(--stroke2);
  color:#e2e2e2;
  line-height:1.7;
}

.payment-line-total{
  font-size:18px;
  font-weight:800;
}

.payment-btn{
  width:100%;
  justify-content:center;
}

.payment-status{
  min-height:22px;
  margin:0;
  color:rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.6;
}

/* ===== PRODUCT GALLERY ===== */

.product-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.product-shot{
  background: var(--bg2);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.product-shot img{
  width:100%;
  height:320px;
  object-fit:cover;
  opacity:0.92;
}

.product-shot .caption{
  padding:16px 18px 18px;
  color:rgba(255,255,255,0.74);
  line-height:1.7;
  font-size:14px;
}

/* ===== STATUS PAGES ===== */

.status-page{
  min-height:70vh;
  display:flex;
  align-items:center;
}

.status-card{
  width:min(760px, 100%);
  margin:0 auto;
  background: var(--bg2);
  border:1px solid var(--stroke2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:34px 28px;
  text-align:center;
}

.status-card h1{
  margin:0 0 16px;
  font-size:36px;
}

.status-card p{
  margin:0 auto;
  max-width:620px;
  color:#d6d6d6;
  line-height:1.9;
}

.status-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1250px){
  .hero h1{font-size:46px}
  .hero-metrics{grid-template-columns:1fr; max-width: 640px}
  .strip{grid-template-columns:1fr}
  .media-card img{height:320px}

  .payment-box{
    grid-template-columns:1fr;
  }

  .product-gallery{
    grid-template-columns:1fr;
  }
}

@media (max-width: 1250px){
  .site-header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav{
    position: relative;
    flex-wrap: wrap;
  }

  .nav-main{
    flex: 1;
    justify-content: space-between;
  }

  /* Le burger devient visible sur mobile */
  .burger{
    display: block;
  }

  /* Le menu est caché par défaut sur mobile */
  .menu{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 210;

    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    white-space: normal;

    background: rgba(10,10,12,0.95);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
  }

  /* Quand le menu a la classe "open", on l'affiche */
  .menu.open{
    display: flex;
  }

  .menu a{
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
  }

  .menu a:hover{
    background: rgba(255,255,255,0.05);
  }

  /* Sur mobile, on cache .nav-actions (le sélecteur de langue
     est déplacé dans le menu par le JS) */
  .nav-actions{
    display: none;
  }

  /* Style du sélecteur de langue quand il est dans le menu mobile */
  .menu .lang-switch{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--stroke2);
  }

  .menu .lang-switch a{
    padding: 8px 14px;
  }

  /* Affichage de la signature dans la top bar sur mobile */
  .nav-tagline{
    display: block;
  }

  /* Animation des barres du burger quand il est ouvert (en croix) */
  .burger.open span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .burger.open span:nth-child(2){
    opacity: 0;
  }
  .burger.open span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero{
    padding:110px 0 70px;
  }
}

@media (max-width: 520px){
  .logo{min-width:auto}
  .logo img{height:38px}
  .hero h1{font-size:38px}
}
