#static-links {
    visibility: hidden;
}

/* Application de la police Orbitron aux éléments strong */
strong {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Option plus spécifique si vous voulez limiter aux strong dans certaines sections */
header strong, 
.cta strong, 
section h2 strong {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* color: #00e6d0; */
}

body {
     margin: 0;
     font-family: "Orbitron", sans-serif;
     background: radial-gradient(ellipse at top left, #0a0a0a, #000);
     color: #f2f2f2;
}

/* Typography Hierarchy - Desktop */
h1 {
    font-size: 2.75rem; /* Slightly smaller but still prominent */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #00ffe5;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

 header {
     background: linear-gradient(135deg, #00ffe5 0%, #005d53 100%);
     padding: 5rem 2rem;
     text-align: center;
     color: black;
}

/* Header-specific styles */
header h1 {
    font-size: 3rem; /* Keep the large header size */
    margin-bottom: 1rem;
}

header p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: auto;
    font-weight: 600;
}

 .hero {
     background-image: url("speedsoft.jpg?v1");
     height: 600px;
     background-size: cover;
     background-position: center;
     margin: 0.5rem auto;
     border-radius: 0px 0px 20px 20px;
     box-shadow: 0 10px 60px -10px #00ffe5aa;
/*
     margin: 3rem auto;
     border-radius: 20px;
     box-shadow: 0 0 60px #00ffe5aa; 
*/
}
 section {
     padding: 4rem 2rem;
     max-width: 1100px;
     margin: 0 auto;
}

 .features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
}
 .feature {
     background: #111;
     padding: 2rem;
     border-left: 5px solid #00ffe5;
     border-radius: 12px;
     font-size: 1.1rem;
     line-height: 1.6;
}
 .room-img, .play-img {
     height: 300px;
     background-size: cover;
     background-position: center;
     border-radius: 15px;
     margin: 2rem 0;
}
 .play-img {
     background-image: url("laser.jpg?v1");
}
 .room-img {
     background-image: url("escape.jpg?v1");
}
 .cta {
     background: #00ffe5;
     color: black;
     padding: 8rem 2rem 5rem;
     text-align: center;
     border-top: 10px solid #000;
     position: relative;
     overflow: hidden;
}
 .cta::before {
     content: "";
     position: absolute;
     top: 0.3rem;
     left: 50%;
     transform: translateX(-50%);
     width: 160px;
    /* Adjust logo size */
     height: 160px;
     background: url('logo.png?v1') no-repeat center center;
     background-size: contain;
     opacity: 0.2;
    /* Very subtle */
     pointer-events: none;
    /* Don't block clicking on buttons */
}

/* CTA section heading styles */
.cta h2 {    
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: black; /* Preserve original color */
}

 .cta a {
     display: inline-block;
     margin-top: 1rem;
     padding: 1rem 3rem;
     background: black;
     color: #00ffe5;
     text-decoration: none;
     font-size: 1.2rem;
     border-radius: 50px;
     box-shadow: 0 0 20px #000;
}


footer {
    background: #000;
    color: #f2f2f2;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #777777;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00e6d0;
}

footer p {
    margin-top: 1rem;
    color: #555;
}


/* CSS pour les liens rapides dans le footer */
.footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-section h3 {
    color: #f2f2f2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: #777777;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #777777;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00e6d0;
}

/* Pour le responsive */
@media (min-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-section {
        width: 45%;
        text-align: left;
    }
    
    .footer-links {
        width: 100%;
        margin-top: 1rem;
    }
    
    .footer-section ul {
        justify-content: flex-start;
    }
}

/* Pour centrer la ligne de copyright */
.footer-content > p {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    color: #555;
    clear: both;
}


 nav {
     background: #000;
     position: sticky;
     top: 0;
     z-index: 999;
     border-bottom: 2px solid #00ffe5;
}
 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     font-family: "Orbitron", sans-serif;
     font-size: 1.8rem;
     color: #00ffe5;
     text-decoration: none;
}
 .nav-links a {
     margin-left: 2rem;
     color: #f2f2f2;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s ease;
     position: relative;
     padding-bottom: 5px;
}
 .nav-links a:not(.cta-nav)::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: #00ffe5;
     transition: width 0.3s ease-in-out;
     box-shadow: 0 0 8px #00ffe5;
}
 .nav-links a:not(.cta-nav):hover::after {
     width: 100%;
}
 .nav-links a:hover {
     color: #00ffe5;
}
 .cta-nav {
     padding: 0.5rem 1.2rem;
     background: #00ffe5;
     color: black !important;
     border-radius: 30px;
     box-shadow: 0 0 10px #00ffe5aa;
     transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Typography Hierarchy - Mobile */
@media (max-width: 700px) {
    h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    /* Header-specific styles for mobile */
    header h1 {
        font-size: 2.25rem;
    }
    
    header p {
        font-size: 1.25rem;
    }
    
    /* CTA section heading styles for mobile */
    .cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    /* Case study heading for mobile */
    .case-study-text h2 {
        font-size: 1rem; /* More reasonable size than 1rem */
        margin-bottom: 0.75rem;
    }

     nav {
         position: relative;
    }
     .nav-container {
         flex-direction: column;
         align-items: flex-start;
    }
     .nav-links {
         margin-top: 1rem;
         display: flex;
         flex-direction: column;
         gap: 1rem;
    }
     .nav-links a {
         margin-left: 0;
    }
}

/* Tarifs */
 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
}
 .plan {
     background: #111;
     padding: 2rem;
     border-left: 5px solid #00ffe5;
     border-radius: 12px;
     font-size: 1.1rem;
     line-height: 1.6;
}
 .plan h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
     color: #00ffe5;
}
 .plan p {
     margin: 0.5rem 0;
}
/* --- Arena, Room --- */
 .main-img-arena {
     position: relative;
     width: 400px;
     height: 400px;
     margin: 3rem auto;
     border-radius: 20px;
     background-image: url("arena.jpg?v=1");
     background-size: cover;
     background-position: center;
     box-shadow: 0 0 60px #003b36aa;
     overflow: hidden;
}
 .main-img-room {
     position: relative;
     width: 400px;
     height: 400px;
     margin: 3rem auto;
     border-radius: 20px;
     background-image: url("room.jpg?v=1");
     background-size: cover;
     background-position: center;
     box-shadow: 0 0 60px #003b36aa;
     overflow: hidden;
}
 .calendar-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: contain;
     pointer-events: none;
}
 .top-text {
     position: absolute;
     top: 20px;
     width: 100%;
     text-align: center;
     font-size: 2rem;
     font-family: "Orbitron", sans-serif;
     color: #ffffff;
     text-shadow: 0 0 10px #000;
}
 .bottom-text {
     position: absolute;
     bottom: 20px;
     left: 20px;
     font-size: 1.2rem;
     font-family: "Orbitron", sans-serif;
     color: #ffffff;
     text-shadow: 0 0 10px #000;
}

/* ----------------- */

.image-container {
  position: relative;
  width: 100%;
  height: 600px; /* Ajuste selon tes besoins */
  overflow: hidden;
  perspective: 1200px; /* Pour un effet 3D */
  
  margin: 0.2rem auto;
  border-radius: 20px;
  box-shadow: 0 0 60px #003b36aa; 
}

/*
.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out, filter 1.5s ease-in-out;
  will-change: transform, opacity, filter;
}

.image-slide.active {
  opacity: 1;
  transform: rotateY(0deg) translateZ(0);
  filter: blur(0px) brightness(100%);
}

.image-slide.previous {
  opacity: 0;
  transform: rotateY(-60deg) translateZ(-1500px);
  filter: blur(10px) brightness(50%);
}

.image-slide.next {
  opacity: 0;
  transform: rotateY(60deg) translateZ(1500px);
  filter: blur(10px) brightness(50%);
}
*/

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.image-slide.active {
  opacity: 1;
  transform: scale(1);
}


@media (max-width: 700px) {
    /* Désactiver l'effet de surligné pour mobile */
    .nav-links a:not(.cta-nav)::after {
        display: none;
    }
    
    /* Style pour l'icône burger */
    .burger-menu {
        display: block;
        cursor: pointer;
    }
    
    /* Cacher les liens de nav par défaut sur mobile */
    .nav-links {
        display: none;
        width: 100%;
    }
    
    /* Style pour afficher les liens quand la classe 'active' est présente */
    .nav-links.active {
        display: flex;
    }
    
    /* Autres styles existants pour mobile... */
}


@media (max-width: 700px) {
    nav {
        position: sticky;
    }
}

/* Fix for smaller devices - ensure we keep a reasonable minimum size */
@media (max-width: 320px) {
    .case-study-text h2 {
        font-size: 1.35rem;
    }
}

/* temoignage client */

.testimonial {
    padding: 5rem 2rem;
    text-align: center;
    color: #f2f2f2;
}

.testimonial h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 2.25rem; /* Consistent with other h2 elements */
    color: #00ffe5;
    margin-bottom: 3rem;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
    color: #f2f2f2;
    transition: none; /* Suppression des effets hover */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;  /* Cette ligne fait en sorte que l'avatar soit rond */
    margin-bottom: 1.5rem;
    border: 3px solid #00ffe5;
    object-fit: cover;  /* Assure que l'image garde une forme correcte même si elle est trop grande */
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1.2rem;
    color: #00ffe5;
}

/* case study */

.case-study {
  background: #000;
  padding: 5rem 2rem;
}

.case-study-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.case-study-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px #00ffe544;
  object-fit: cover;
}

.case-study-text {
  flex: 1;
  min-width: 250px;
}

.case-study-text h2 {
  font-size: 2rem;
  color: #00ffe5;
  margin-bottom: 1rem;
}

.case-study-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #f2f2f2;
}

.case-study-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #00ffe5;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 15px #00ffe5aa;
  transition: background 0.3s ease, transform 0.3s ease;
}

.case-study-button:hover {
  background: #00e6d0;
  transform: translateY(-3px);
}

/* Responsive - simple 50/50 split */
@media (max-width: 700px) {
  .case-study {
    padding: 2rem 1rem;
  }
  
  .case-study-container {
    gap: 0.8rem;
  }
  
  .case-study-image {
    width: 50%; /* Exactement 50% */
  }
  
  .case-study-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .case-study-text {
    width: 50%; /* Exactement 50% */
    min-width: 0;
  }
  
  .case-study-text h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .case-study-text p {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  .case-study-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 15px;
  }
}

/* Pour les mini-téléphones (iPhone 5/SE, etc.) */
@media (max-width: 320px) {
  .case-study {
    padding: 1.5rem 0.8rem;
  }
  
  .case-study-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .case-study-image {
    width: 90%;
  }
  
  .case-study-image img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    border-radius: 12px;
  }
  
  .case-study-text {
    width: 100%;
    text-align: center;
  }
  
  .case-study-text h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .case-study-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .case-study-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}



/********************** Formulaires  ***************************/

.signup-section {
    font-family: 'Orbitron', sans-serif;
}

.signup-section h2 {
    font-family: 'Orbitron', sans-serif;
}

.signup-section input,
.signup-section select,
.signup-section option,
.signup-section button {
    font-family: 'Orbitron', sans-serif;
}

/* Reset global pour assurer une cohérence */
* {
    box-sizing: border-box;
}

/* Message de formulaire */
.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: red;
    text-align: center;
}

/* Sections de formulaire */
.login-section, .signup-section {
    background: #111;
    color: #f2f2f2;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border-left: 5px solid #00ffe5;
    border-radius: 12px;
    box-shadow: 0 0 30px #00ffe522;
}

.login-section h2, .signup-section h2 {
    font-size: 2rem;
    color: #00ffe5;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Formulaires */
.login-form, .signup-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Champs de formulaire */
.login-form input,
.signup-form input,
.signup-form select,
.login-form button,
.signup-form button {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #222;
    color: #f2f2f2;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: inset 0 0 5px #000;
}

/* Spécificités des boutons */
.login-form button, .signup-form button {
    background: #00ffe5;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 0 15px #00ffe5aa;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.login-form button:hover:enabled, .signup-form button:hover:enabled {
    background: #00e6d0;
    transform: translateY(-3px);
}

/* Apparence du select (optionnel selon navigateur) */
.signup-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Style des boutons désactivés */
button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 700px) {
    .login-section h2, .signup-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .domains-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
}



/* Section des domaines */
.domains-section {
    background: #111;
    color: #f2f2f2;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-left: 5px solid #00ffe5;
    border-radius: 12px;
    box-shadow: 0 0 30px #00ffe522;
    text-align: center;
}

.domains-section h3 {
    font-size: 1.5rem;
    color: #00ffe5;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.domains-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.domain-column {
    flex: 1;
    min-width: 0;
}

.domain-column h4 {
    color: #f2f2f2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-family: 'Orbitron', sans-serif;
}

.domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-list li {
    margin-bottom: 0.8rem;
}

.domain-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.domain-list a:hover {
    color: #00ffe5;
    background-color: rgba(0, 255, 229, 0.05);
}

/* Responsive pour mobile */
@media (max-width: 600px) {
    .domains-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .domain-column {
        width: 100%;
    }
    
    .domains-section {
        padding: 1.5rem;
    }
}