/* ---------------------------------------------------  Base ------------------------------------------------------------------- */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 0;
  margin: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover dynamique */
.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 50%;
  background: white;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.navbar a:hover::after {
  width: 100%;
  left: 0;
}

.navbar a:hover {
  color: #fffeff;
  transform: translateY(-3px);
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar a.active {
  color: #fff;
}

.navbar a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 5px;
  left: 0;
  background: white;
  border-radius: 5px;
}

.selfie{
    float: right;
     max-width: 100%;
     width: 12%;
     overflow: auto;
  }

  .presentation{
  background-color: #efefef;
  color: black;
  border-bottom: 1px solid;
  border-top: 1px solid;
  }

  .endpage{
  text-align: center;
  padding: 3px;
  background-color: black;
  color: white;
  margin-top: 50px;
}

.icon
{
  background-color: black;
}


/* ---------------------------------------------------   ------------------------------------------------------------------- */


#play{
  background-color: blue;
}

#play:hover{
  background-color: #3a6dfe;
}

#xbox{
  background-color: green;
}

#xbox:hover{
  background-color: #3dae40;
}

#nin{
  background-color: red;
}

#nin:hover{
  background-color: #f95f5a;
}

#surchauffe{
  background-image: linear-gradient(black,white);
  background-image: url(Photo_consoles_blanche.jpg);
  background-size: cover;
  background-position: center;
  height: 600px;
  margin-top: 20px;
}

td{
  border: none;
  height: 25%;
  width: 25%;
  text-align: center;
  padding:25px;
}

a{
  color:black;
  text-decoration : none;
}

.imgselect{
  font-size: 20px;
  color: black;
  float: right;
  line-height: 10px;
  margin-right: 10px;
}


.txtselect{
  font-size: 20px;
  color: black;
  float: left;
  line-height: 10px;
  margin-left: 10px;
}

.boutselect{
  background-color: white;
  background-size: 100%;
  background-position: center;
  height: 50px;
  width: 45%;
  border: 4px solid;
  border-radius: 20px;
  margin:10px;
}

.boutselect:hover {
  .txtselect{
    color: lime;
  }

  .imgselect{
    color:lime;
  }

  background-color: black;
  background-size: 100%;
  background-position: center;
  height: 50px;
  width: 45%;
  border: 4px solid lime;
  border-radius: 20px;
}

.pssp{
  width: 7%;
  float:right;
  margin-right: 80px;
  margin-top: 50px;
}

.estimate {
    text-align: center;
    padding: 50px 20px;
  }

  .estimate h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-decoration: underline;
  }

  .estimate p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #333;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .brand img {
    width: 80px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .brand img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.6));
  }

  .sitepres{
    width:10%;
  }


.service-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }

    .service-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(135deg, #2c2c2c, #000000);
      color: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:nth-child(2) {
      background: linear-gradient(135deg, #2c2c2c, #000000);
    }

     .service-card:hover {
      transform: translateY(-5px);
      background: linear-gradient(135deg, #000000, #434343);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .service-text {
      max-width: 70%;
    }

    .service-text h2 {
      margin: 0;
      font-size: 1.5rem;
    }

    .service-text p {
      margin: 10px 0;
      line-height: 1.5;
    }

    .service-btn {
      display: inline-block;
      background: black;
      color: white;
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .service-btn:hover {
      background: white;
      color: black;
      transform: scale(1.05);
    }

    .index-btn {
      display: inline-block;
      background: white;
      color: black;
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .index-btn:hover {
      background: black;
      color: white;
      transform: scale(1.05);
    }

    .service-icon {
      font-size: 60px;
    }

    .hero {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 60vh;
    border-bottom: 5px solid #000000;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .hero .intro {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000000;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #000000;
  }

  .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #000000;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }

  .cta-btn:hover {
    background: #grey;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  }

  .tarifxbox {
      width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #fff;
  table-layout: fixed; /* clé pour colonnes de même largeur */
    }


    .tarifxbox th {
      background: linear-gradient(135deg, green, lime);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.5px;
    }

    .tarifxbox td {
      padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
    }

    .tarifpsn tr:nth-child(even) {
  background: #f8f9fa;
}

.tarifpsn tr:hover {
  background: rgba(0, 110, 255, 0.1);
  transition: 0.3s;
}


.tabletarif{
  color: #333;
}

@media (max-width: 760px) {

     .navbar {
    flex-direction: column;
    background: black;
  }
  .navbar li {
    margin: 10px 0;
  }

      .tarifxbox thead {
        display: none;
      }
      .tarifxbox, .tarifxbox tbody, .tarifxbox tr, .tarifxbox td {
        display: block;
        width: 100%;
      }
      .tarifxbox tr {
        margin-bottom: 20px;
        background: #141414;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
      }
      .tarifxbox td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
      }
      .tarifxbox td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #00ff88;
      }

      .tabletarif {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }

      .tabletarif::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
      }

      table.tarifpsn, thead, tbody, th, td, tr {
        display: block;
      }

      .tarifpsn thead tr {
        display: none;
      }

      .tarifpsn tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
      }

      .tabletarif {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }

      .tabletarif::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
      }

      table.tarifnin, thead, tbody, th, td, tr {
        display: block;
      }

      .tarifnin thead tr {
        display: none;
      }

      .tarifnin tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
      }

      .tabletarif {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }

      .tabletarif::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
      }

      table.tarifpc, thead, tbody, th, td, tr {
        display: block;
      }

      .tarifpc thead tr {
        display: none;
      }

      .tarifpc tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
      }

      .tabletarif {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }

      .tabletarif::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
      }

      .service-card {
        flex-direction: column;
        text-align: center;
      }

      .service-text {
        max-width: 25%;
      }

      .service-icon {
        margin-top: 15px;
      }

      .hero {
      padding: 15px 15px;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 0.95rem;
    }

    .brand img {
      width: 60px;
    }

    .pricing h2 {
      font-size: 1.8rem;
    }
    .card-header {
      font-size: 1.1rem;
    }
    .card-price {
      font-size: 1rem;
    }
    }

    
.tarifxbox .lignexbox {
      background-color: #008000;
      color: white;
      font-weight: bold;
    }

 .tarifpsn {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #fff;
  table-layout: fixed; /* clé pour colonnes de même largeur */
}

.tarifpsn th {
  background: linear-gradient(135deg, #003087, #006eff);
  color: white;
  padding: 40px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.tarifpsn td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.tarifpsn tr:nth-child(even) {
  background: #f8f9fa;
}

.tarifpsn tr:hover {
  background: rgba(0, 110, 255, 0.1);
  transition: 0.3s;
}

    .tarifnin {
  width: 80%;              /* le tableau prend 90% de la largeur */
  max-width: 1000px;       /* limite la taille max */
  margin: 50px auto;       /* centre horizontalement + marge en haut/bas */
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #fff;
}

.tarifnin th {
  background: linear-gradient(135deg, #ff6e6e, red);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
}

.tarifnin td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.tarifnin tr:nth-child(even) {
  background: #f9f9f9;
}

.tarifnin tr:hover {
  background: rgba(13, 202, 240, 0.1);
  transition: 0.3s;
}

    .tabletarif {
      color: #333;
    }

   .tarifpc {
  width: 90%;              
  max-width: 800px;        
  margin: 50px auto;       
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #fff;
}

.tarifpc th {
  background: linear-gradient(135deg, #6610f2, #0dcaf0);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
}

.tarifpc td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.tarifpc tr:nth-child(even) {
  background: #f9f9f9;
}

.tarifpc tr:hover {
  background: rgba(102, 16, 242, 0.1);
  transition: 0.3s;
}

    .tabletarif {
      color: #333;
    }

.presentation {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .presentation-text {
      flex: 1 1 400px;
    }

    .presentation-text h2 {
      font-size: 28px;
      color: #1a237e;
      margin-bottom: 20px;
    }

    .presentation-text p {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin-bottom: 15px;
    }

    .presentation-photo {
      flex: 0 0 250px;
      max-width: 250px;
    }

    .presentation-photo img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .presentation {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
      }

      .presentation-text h2 {
        font-size: 24px;
      }

      .presentation-text p {
        font-size: 15px;
      }

      .presentation-photo {
        margin-top: 20px;
      }
    }
/* From Uiverse.io by BHARGAVPATEL1244 */ 
#gf{
 outline: none;
 cursor: pointer;
 border: none;
 padding: 0.9rem 2rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: #66ff66;
 color: ghostwhite;
}

#gf span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

#gf:hover span {
 color: black;
}

#gf::before,
#gf::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

#gf::before {
 content: "";
 background: #000;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

#gf:hover::before {
 transform: translate3d(100%, 0, 0);
}

.tablea{
  display: inline-block;
  vertical-align: top;
  border: 1px solid black;
  border-radius: 10px;
  width:28%;
  margin: 5px;
}

.ttablea{
  background-color: black;
  color: white;
  font-size: 100%;
  text-align: center;
  border-radius: 10px;
}

.prixsite{
  background-color: #efefef;
  font-size: 100%%;
  text-align: center;
  border-radius: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    opacity: 0;
    animation: fadeUp 0.6s ease 1.2s forwards;
}

.barre{
  width: 95%;
  height: 3px;
  background-color: black;
}

.titre{
  margin: 40px;
}

.logoedit{
  height: 80px;
  width: 4%;
  margin: 30px;
}

.logochoix{
  height: 8%;
  margin-top: 50px;
  margin-right: 100px;
  margin-left: 100px;
}

.entredeux{
  background-color: #efefef;
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

td{
  text-align: left;
}

 /* Grille responsive */
    .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin: 30px;
    }

    .portfolio img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
      transition: transform 0.3s;
    }

    .portfolio img:hover {
      transform: scale(1.05);
    }
*/


<style>
  :root { --bg:#0f172a; --card:#111827; --text:#e5e7eb; --muted:#94a3b8; --accent:#38bdf8; }
  * { box-sizing:border-box; }
  body { margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif; color:var(--text); }
  .container { width:min(1100px, 92%); margin-inline:auto; }


  .cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
  .btn {
    display:inline-block; padding:12px 18px; border-radius:10px; text-decoration:none; 
    background:var(--accent); color:#001018; font-weight:600; transition:.2s ease;
  }
  .btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
  .btn--outline { background:transparent; color:var(--text); border:1px solid rgba(148,163,184,.35); }
  .btn--outline:hover { border-color: var(--accent); color: var(--accent); }

  .services { padding: 56px 0; }
  .services .service {
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
    border: 1px solid rgba(148,163,184,.15);
    border-radius:16px; padding:22px; margin-bottom:18px;
  }
  .service .icon { font-size:28px; margin-bottom:6px; }
  .service h2 { margin:0 0 6px; font-size: clamp(20px, 2.5vw, 26px); }
  .service p { margin:0; color: var(--muted); line-height:1.6; }

  .promise { text-align:center; margin-top:22px; color:var(--muted); }
</style>

<style>
  .contact { padding: 70px 0; background: #0f172a; color: #white; }
  .contact h2 { font-size: 28px; margin-bottom: 12px; text-align:center; }
  .contact .subtitle { text-align:center; margin-bottom: 40px; color: limegreen; }

  .contact-form { max-width: 600px; margin: auto; display: grid; gap: 20px; }
  .form-group { display: flex; flex-direction: column; }
  .form-group label { margin-bottom: 6px; font-size: 14px; color: #white; }
  .form-group input, 
  .form-group textarea {
    padding: 12px; border-radius: 8px; border: 1px solid #334155; 
    background: white; color: #black; font-size: 15px;
  }
  .form-group input:focus,
  .form-group textarea:focus { outline: none; border-color: #38bdf8; }

  .btn {
    background: black; color: white; border: none; 
    padding: 14px; border-radius: 8px; font-size: 16px; 
    font-weight: 600; cursor: pointer; transition: 0.2s;
  }
  .btn:hover { background: limegreen; }

  .lien{
    margin: 50px;
    color: blue;
  }

  .lien:hover{
    margin: 50px;
    color: black;
  }
</style>


