/* =========================
   RESET / BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#111;
  color:#fff;
  line-height:1.6;
  padding-bottom:60px;
}

img{ max-width:100%; }

/* Conteneur */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:60px 24px;
}

/* Titres */
h2{
  text-align:center;
  margin:0 0 18px 0;
}
p{ margin: 0 0 18px 0; }

.list{
  margin: 0 0 26px 0;
  padding-left: 18px;
}
.list li{ margin: 6px 0; }

/* =========================
   HEADER (comme l'image)
========================= */
.lux-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.88);
  padding:14px 40px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.7);
  border-bottom:2px solid #c00000;
  min-height:180px;
}

/* LOGO */
.lux-logo img{
  height:160px !important;
  width:auto !important;
  max-height:none !important;
  display:block;
}


/* NAV */
.lux-nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.lux-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:0.25s;
  position:relative;
  padding-bottom:6px;
}

.lux-nav a:hover{
  color:#ff2a2a;
}

.lux-nav a:hover::after,
.lux-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background:#ff2a2a;
}

.btn-contact{
  border:2px solid #ff2a2a;
  padding:7px 18px;
  border-radius:8px;
}

.btn-contact:hover{
  background:#ff2a2a;
  color:#fff;
}

/* =========================
   HERO (texte unique)
========================= */
.hero{
  position:relative;
  height:600px;
  background-image: url("images/rs6.jpg");
  background-repeat:no-repeat;
  background-position:center center;

  /* IMPORTANT */
  background-size: cover;   /* plein écran propre */
  image-rendering: auto;
}


/* voile sombre pour lisibilité */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 60%,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.70)
  );
}

/* Bloc titres centré */
.hero-title{
  position:absolute;
  top:32%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  width:92%;
  max-width:1100px;
  z-index:2;
}

/* Titre blanc */
.hero-title h1{
  margin:0 0 14px 0;
  font-size:58px;
  letter-spacing:3px;
  text-transform:uppercase;
  text-shadow:0 10px 28px rgba(0,0,0,0.65);
}

/* Bande rouge inclinée */
.hero-title h2{
  margin:0;
  display:inline-block;
  padding:10px 30px;
  font-size:24px;
  font-weight:900;
  text-transform:uppercase;
  background:linear-gradient(90deg,#6f0000,#ff2a2a);
  box-shadow:0 12px 28px rgba(0,0,0,0.55);
  transform:skewX(-12deg);
}
.hero-title h2 span{
  display:inline-block;
  transform:skewX(12deg);
}

/* =========================
   SERVICES
========================= */
.service-thumbs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  padding: 10px 0 40px;
}

.service-thumbs a{
  width:170px;
  background:rgba(0,0,0,0.6);
  padding:14px 12px;
  border-radius:12px;
  text-decoration:none;
  text-align:center;
  transition:0.25s;
  border:1px solid rgba(255,255,255,0.06);
}

.service-thumbs a img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
}

.service-thumbs a span{
  color:#ff2a2a;
  font-weight:800;
  display:block;
}

.service-thumbs a:hover{
  transform:scale(1.06);
  box-shadow:0 0 20px rgba(255,42,42,0.45);
}

/* =========================
   FOOTER FIXE
========================= */
.footer-fixed{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.85);
  text-align:center;
  padding:10px;
  font-size:14px;
  z-index:999;
}

.footer-fixed,
.footer-fixed a{
  color:#fff;
  text-decoration:none;
}
.footer-fixed a:hover{
  text-decoration:underline;
}

/* =========================
   RESPONSIVE
========================= */
/* =========================
   RESPONSIVE
========================= */
@media(max-width: 900px){
  .lux-header{
    padding:12px 18px;
    min-height:180px;
  }
  .lux-logo img{ height:130px !important; }

  .hero-title{ top:35%; }
  .hero-title h1{
    font-size:38px;
    letter-spacing:2px;
  }
  .hero-title h2{
    font-size:16px;
    padding:8px 16px;
  }
}

@media(max-width: 600px){
  .hero{ height:520px; }
  .lux-logo img{ height:110px !important; }
  .lux-nav{ justify-content:center; }
}

/* Cacher le texte MACAUTOSERVICE sur l'image */
.hero-title{
  display:none !important;
}

/* FIX logo trop petit (parent étroit + max-width global) */
.lux-logo{
  flex: 0 0 320px;      /* réserve de la place au logo */
  display: flex;
  align-items: center;
}

.lux-logo img{
  height:160px !important;
  width:auto !important;
  max-width:none !important;   /* IMPORTANT : ignore img{max-width:100%} */
}

/* si besoin, on augmente un peu le header */
.lux-header{
  min-height:180px;
}

/* FORCE logo header (écrase tout le reste) */
.lux-header .lux-logo{
  min-width: 360px !important;   /* donne de la place au logo */
  display:flex !important;
  align-items:center !important;
}

.lux-header .lux-logo img{
  height: 170px !important;      /* taille visible */
  width: auto !important;
  max-width: none !important;     /* ignore img{max-width:100%} */
  max-height: none !important;
  display:block !important;
}

/* =========================
   CONTACT CLEAN
========================= */
.contact-section{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  background:radial-gradient(circle at top,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.95)
  );
}

.contact-box{
  width:100%;
  max-width:520px;
  background:rgba(0,0,0,0.75);
  border-radius:16px;
  padding:40px 36px;
  box-shadow:0 0 40px rgba(0,0,0,0.8);
  border:1px solid rgba(255,255,255,0.08);
}

.contact-box h1{
  margin-bottom:8px;
  text-align:center;
  font-size:28px;
}
.contact-box h1 span{
  color:#ff2a2a;
}

.contact-sub{
  text-align:center;
  color:#bbb;
  margin-bottom:22px;
  font-size:14px;
}

.contact-infos{
  margin-bottom:26px;
  text-align:center;
}
.contact-infos p{
  margin:6px 0;
}
.contact-infos a{
  color:#ff2a2a;
  text-decoration:none;
  font-weight:700;
}
.contact-infos a:hover{
  text-decoration:underline;
}

/* FORM */
.contact-form .field{
  margin-bottom:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.15);
  background:#111;
  color:#fff;
  font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#ff2a2a;
  box-shadow:0 0 0 2px rgba(255,42,42,0.25);
}

.contact-form button{
  width:100%;
  margin-top:10px;
  padding:12px;
  background:#ff2a2a;
  border:none;
  border-radius:10px;
  color:#fff;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  transition:0.25s;
}

.contact-form button:hover{
  background:#d80000;
  transform:translateY(-1px);
}

/* Responsive */
@media(max-width:600px){
  .contact-box{
    padding:30px 22px;
  }
}

/* =========================
   CONFIRMATION PAGE
========================= */
.confirm-page{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:70vh;
}

.confirm-box{
  text-align:center;
  background:rgba(0,0,0,0.75);
  padding:40px 36px;
  border-radius:16px;
  max-width:520px;
  box-shadow:0 0 40px rgba(0,0,0,0.8);
  border:1px solid rgba(255,255,255,0.08);
}

.confirm-box h1{
  margin-bottom:14px;
  color:#ff2a2a;
}

.confirm-box p{
  margin-bottom:12px;
  color:#ddd;
}

.redirect-info{
  font-size:13px;
  color:#aaa;
  margin-top:10px;
}
/* =========================
   MOBILE – INDEX (header + services)
========================= */

/* Tablette */
@media (max-width: 900px){
  .lux-header{
    padding: 10px 14px;
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .lux-logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .lux-logo img{
    height: 90px !important;
    max-width: none !important;
  }

  .lux-nav{
    width: 100%;
    justify-content: center;
    gap: 12px 14px;
  }

  .lux-nav a{
    font-size: 13px;
    padding-bottom: 4px;
  }

  .hero{
    height: 420px;
  }
}

/* Téléphone */
@media (max-width: 600px){
  .lux-header{
    padding: 10px 12px;
  }

  .lux-logo img{
    height: 78px !important;
  }

  .lux-nav{
    gap: 10px 12px;
  }

  .lux-nav a{
    font-size: 12px;
  }

  /* les gros boutons prennent trop de place sur mobile */
  .btn-contact{
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
  }

  .hero{
    height: 320px;
  }

  /* Services en grille 2 colonnes */
  .service-thumbs{
    gap: 12px;
  }
  .service-thumbs a{
    width: calc(50% - 6px);
  }
}

/* =========================
   AVIS CLIENTS
========================= */
.avis-section{
  text-align:center;
}

.avis-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px;
  margin-top:30px;
}

.avis-card{
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:24px 20px;
  box-shadow:0 0 20px rgba(255,0,0,0.12);
  transition:.3s;
}

.avis-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 28px rgba(255,0,0,0.35);
}

.avis-text{
  font-style:italic;
  margin-bottom:14px;
  line-height:1.6;
}

.avis-author{
  color:#ff2a2a;
  font-weight:800;
}
.avis-stars{
  margin: 6px 0 10px;
  color:#ff2a2a;
  font-weight:800;
}

.avis-form-section{ text-align:center; }
.avis-form{
  max-width:520px;
  margin:28px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.avis-form input, .avis-form select, .avis-form textarea{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  background:#0e0e0e;
  color:#fff;
  font-size:14px;
}
.avis-form textarea{ min-height:120px; resize:vertical; }

