/* --- RAINA FITNESS CENTER – STYLE LUXE PREMIUM v8 --- */
/* Version complète + fix select + header + hero + contact button */

:root{
  --bg: #05060a;
  --card: #0f1116;
  --accent: #00f5ff;
  --accent2: #f2c94c;
  --muted: #9aa6b2;
  --glass: rgba(255,255,255,0.03);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.6);
  --radius: 14px;
  --max-w: 1120px;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  background:var(--bg);
  color:#fff;
  font-family:var(--font-sans);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
}

/* WRAP */
.wrap{
  max-width:var(--max-w);
  margin:20px auto;
  padding:20px;
  padding-top:35px !important; /* FIX HEADER */
}

/* HEADER */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: var(--card);
  padding:14px 20px;
  border-radius:12px;
  box-shadow: var(--shadow-lg);
  position:relative;
  z-index:99;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-img{
  width:60px;
  height:60px;
  object-fit:contain;
  border-radius:12px;
  padding:6px;
  background:rgba(255,255,255,0.03);
}

.brand-title{
  font-size:20px;
  font-weight:800;
  color:var(--accent);
}

.small-muted{color:var(--muted);font-size:13px}

/* NAV */
.nav-toggle{
  background:none;
  border:0;
  color:#fff;
  font-size:26px;
  cursor:pointer;
  padding:6px 10px;
}

.main-nav{
  display:none;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.main-nav a{
  text-decoration:none;
  color:var(--accent);
  font-weight:700;
}

.main-nav a.active,
.main-nav a:hover{
  color:var(--accent2);
}

.nav-open .main-nav{
  display:flex;
}

/* CARD */
.card{
  background:var(--card);
  padding:22px;
  border-radius:16px;
  box-shadow: var(--shadow-lg);
  margin-bottom:20px;
}

/* HERO */
.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding:35px 22px;
}

.hero-content{
  max-width:620px;
  text-align:center;
}

.hero h2{
  font-size:32px;
  font-weight:800;
  color:var(--accent2);
  margin-bottom:12px;
}

.hero p{
  color:var(--muted);
  font-size:16px;
}

/* BOUTONS HERO */
.hero-cta{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  background: linear-gradient(90deg, var(--accent), #8a2be2);
  padding:12px 18px;
  border-radius:14px;
  color:#021018;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-outline{
  padding:12px 18px;
  border-radius:14px;
  border:2px solid var(--accent);
  background:transparent;
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.btn-outline:hover{
  background:var(--accent);
  color:#021018;
}

/* GRID */
.grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}
@media(min-width:980px){
  .grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* PRICING */
.pricing{
  display:flex;
  flex-direction:column;
  gap:12px;
}
@media(min-width:900px){
  .pricing{
    flex-direction:row;
    flex-wrap:wrap;
  }
}

.price{
  background:rgba(255,255,255,0.03);
  padding:12px 14px;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,0.05);
}

.price strong{
  color:var(--accent2);
}

/* SLIDER */
.slider{
  width:100%;
  height:300px;
  overflow:hidden;
  border-radius:14px;
  position:relative;
}

.slides{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .6s ease;
}

.slides img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.45);
  border:0;
  padding:10px 14px;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
  z-index:20;
}

.arrow.left{left:12px}
.arrow.right{right:12px}

/* TESTIMONIALS */
.testimonials-grid{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
}
@media(min-width:900px){
  .testimonials-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

.testimonial{
  background:rgba(255,255,255,0.03);
  padding:14px;
  border-radius:12px;
  border-left:4px solid var(--accent2);
}
.testimonial p{margin-bottom:8px}
.testimonial cite{color:var(--muted);font-size:13px}

/* MAP */
.map-wrap{
  width:100%;
  height:320px;
  border-radius:14px;
  overflow:hidden;
}

/* FORMS */
form label{
  display:block;
  margin:10px 0 6px;
  color:var(--muted);
}

input, textarea, select{
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  padding:12px;
  border-radius:10px;
  outline:none;
  margin-bottom:6px;
}

textarea{min-height:120px}

/* FIX LISTE DÉROULANTE */
select option{
  background:#0f1116;
  color:#fff;
}

/* FOOTER */
footer{
  text-align:center;
  color:var(--muted);
  padding:16px 0;
  font-size:14px;
}

/* QUERIES */
@media(max-width:980px){
  .hero h2{ font-size:26px }
  .slider{ height:220px }
  .logo-img{ width:55px; height:55px }
}

/* ACTIVE BUTTON CLICK */
a.btn:active{
  transform:translateY(2px);
}
.open-map {
  margin-bottom: 14px !important;
  display: inline-block;
  position: relative;
  z-index: 2;
}
/* ===== HERO VIDÉO ULTRA LUXE ===== */
.hero-video{
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.hero-bg-video{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 90%;
  max-width: 700px;
}

.hero-content h2{
  font-size: 32px;
  color: var(--accent2);
  margin-bottom: 10px;
  font-weight: 900;
}

.hero-content p{
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 16px;
}

.hero-cta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media(max-width: 900px){
  .hero-video{ height: 300px; }
  .hero-content h2{ font-size: 24px; }
}
