 /* RESET ET BASE */

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
     color: #e0e0e0;
     display: flex;
     flex-direction: column;
 }

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .containerr {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* HEADER ET NAVIGATION */

 header {
     background: rgba(10, 14, 39, 0.95);
     backdrop-filter: blur(10px);
     padding: 20px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     border-bottom: 2px solid #00ff41;
     box-shadow: 0 4px 20px rgba(0, 255, 65, 0.2);
 }

 .logo {
     font-size: 28px;
     font-weight: bold;
     color: #00ff41;
     text-transform: uppercase;
     letter-spacing: 3px;
     text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
 }

 .nav-links {
     display: flex;
     gap: 30px;
     list-style: none;
 }

 .nav-links a {
     color: #e0e0e0;
     text-decoration: none;
     font-size: 16px;
     transition: all 0.3s;
     padding: 8px 16px;
     border-radius: 4px;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
 }

 .nav-links a:hover {
     color: #00ff41;
     background: rgba(0, 255, 65, 0.1);
     transform: translateY(-2px);
 }



 /* HERO SECTION */

 .hero {
     text-align: center;
     padding: 100px 20px;
     background: linear-gradient(180deg, rgba(0, 255, 65, 0.1) 0%, transparent 100%);
 }

 .hero h1 {
     font-size: 64px;
     color: #00ff41;
     margin-bottom: 20px;
     text-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
     letter-spacing: 4px;
 }

 .hero p {
     font-size: 22px;
     color: #b0b0b0;
     max-width: 800px;
     margin: 0 auto 40px;
     line-height: 1.6;
 }

 .cta-button {
     display: inline-block;
     padding: 15px 40px;
     background: linear-gradient(45deg, #00ff41, #00cc33);
     color: #0a0e27;
     text-decoration: none;
     border-radius: 30px;
     font-weight: bold;
     font-size: 18px;
     transition: all 0.3s;
     text-transform: uppercase;
     letter-spacing: 2px;
     box-shadow: 0 8px 30px rgba(0, 255, 65, 0.3);
     cursor: pointer;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 40px rgba(0, 255, 65, 0.5);
 }

 /* FEATURES SECTION */

 .features {
     display: flex;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     padding: 80px 20px;
 }

 .feature-card {
     background: rgba(26, 31, 58, 0.6);
     padding: 40px;
     border-radius: 15px;
     border: 1px solid rgba(0, 255, 65, 0.2);
     transition: all 0.3s;
     text-align: center;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     border-color: #00ff41;
     box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
 }

 .feature-card h3 {
     color: #00ff41;
     font-size: 24px;
     margin-bottom: 15px;
 }

 .feature-card p {
     color: #b0b0b0;
     line-height: 1.6;
 }

 /* SECTION PRODUITS */

 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 30px;
     padding: 60px 20px;
 }

 .product-card {
     background: rgba(26, 31, 58, 0.8);
     border-radius: 15px;
     overflow: hidden;
     border: 1px solid rgba(0, 255, 65, 0.2);
     transition: all 0.3s;
     cursor: pointer;
 }

 .product-card:hover {
     transform: translateY(-10px);
     border-color: #00ff41;
     box-shadow: 0 15px 50px rgba(0, 255, 65, 0.3);
 }

 .product-image {

     background-size: cover;
     width: 100%;
     height: 250px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 80px;
     border-bottom: 2px solid rgba(0, 255, 65, 0.3);
 }

 .product-info {
     padding: 25px;
 }

 .product-info h3 {
     color: #00ff41;
     font-size: 20px;
     margin-bottom: 10px;
 }

 .product-info p {
     color: #b0b0b0;
     font-size: 14px;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .product-price {
     color: #fff;
     font-size: 22px;
     font-weight: bold;

 }

 .product-nom {
     height: 100px;
     display: flex;
     justify-content: space-between;

 }

 .product-desc {
     height: 150px;
 }

 /* SECTION HISTOIRE */

 .timeline {
     padding: 60px 20px;
     max-width: 900px;
     margin: 0 auto;
 }

 .timeline h2 {
     text-align: center;
     color: #00ff41;
     font-size: 42px;
     margin-bottom: 60px;
     text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
 }

 .timeline-item {
     background: rgba(26, 31, 58, 0.6);
     padding: 35px;
     border-radius: 15px;
     margin-bottom: 30px;
     border-left: 4px solid #00ff41;
     transition: all 0.3s;
 }

 .timeline-item:hover {
     transform: translateX(10px);
     box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
 }

 .timeline-year {
     color: #00ff41;
     font-size: 28px;
     font-weight: bold;
     margin-bottom: 15px;
 }

 .timeline-title {
     color: #fff;
     font-size: 22px;
     margin-bottom: 12px;
 }

 .timeline-description {
     color: #b0b0b0;
     line-height: 1.8;
     font-size: 16px;
 }

 /* SECTION PERSONNAGE */

 .cta-background {
     background-size: cover;
     background-position: center center;
     bottom: 0;
     filter: blur(50px);
     left: 0;
     position: absolute;
     right: 0;
     top: 0;
     width: 100%;
     z-index: -1;
 }

 .cta {
     background: rgba(26, 31, 58, 0.6);
     box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
     height: 450px;
     overflow: hidden;
     position: relative;
     width: 300px;
 }

 .cta:hover img {
     top: -10%;
     filter: brightness(70%);
 }

 .cta:hover .text {
     bottom: 0;
 }

 .cta img {
     bottom: 0;
     filter: brightness(100%);
     left: 0;
     position: relative;
     align-items: stretch;
     right: 0;
     top: 0;
     transition: 0.5s ease-in-out;
     width: 115%;
     height: 100%;
 }

 .cta .text {
     bottom: -40%;
     padding: 15px;
     position: absolute;
     transition: 0.5s ease-in-out;
 }

 .cta .text h2 {
     color: #fff;
     display: inline-block;
     font-weight: 300;
     margin-bottom: 5px;
     position: relative;
 }

 .cta .text p {
     color: #fff;
     font-weight: 300;
 }

 #main {
     display: flex;
     align-items: center;
     flex-direction: column;
     text-align: center;
 }

 #container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     gap: 50px;
     max-width: 1175px;
 }

 #titre-personnage {

     color: #00ff41;
     font-weight: bolder;
     font-size: 25px;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 50px;
     padding-bottom: 75px;
     background: linear-gradient(180deg, rgba(0, 255, 65, 0.1) 0%, transparent 100%);
     text-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
 }

 /* SECTION CONTACT */

 .contact-section {
     max-width: 600px;
     margin: 60px auto;
     padding: 50px;
     background: rgba(26, 31, 58, 0.6);
     border-radius: 15px;
     border: 1px solid rgba(0, 255, 65, 0.2);
 }

 .contact-section h2 {
     color: #00ff41;
     font-size: 36px;
     margin-bottom: 30px;
     text-align: center;
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     color: #00ff41;
     margin-bottom: 8px;
     font-size: 16px;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 15px;
     background: rgba(10, 14, 39, 0.8);
     border: 1px solid rgba(0, 255, 65, 0.3);
     border-radius: 8px;
     color: #e0e0e0;
     font-size: 16px;
     transition: all 0.3s;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #00ff41;
     box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 150px;
 }

 .submit-button {
     width: 100%;
     padding: 15px;
     background: linear-gradient(45deg, #00ff41, #00cc33);
     color: #0a0e27;
     border: none;
     border-radius: 8px;
     font-size: 18px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .submit-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(0, 255, 65, 0.4);
 }

 .success-message {
     display: none;
     background: rgba(0, 255, 65, 0.2);
     border: 1px solid #00ff41;
     color: #00ff41;
     padding: 15px;
     border-radius: 8px;
     margin-bottom: 20px;
     text-align: center;
     font-weight: bold;
 }

 /* FOOTER */

 footer {
     background: rgba(10, 14, 39, 0.95);
     padding: 30px 20px;
     text-align: center;
     margin-top: 80px;
     border-top: 2px solid #00ff41;
 }

 footer p {
     color: #b0b0b0;
     font-size: 14px;
 }

 /* RESPONSIVE */

 @media (max-width: 1049px) {
     #container {
         display: flex;
         justify-content: space-around;

     }

 }

 @media (max-width: 850px) {
     .nav-links {
         display: none;
     }

     .features {
         display: flex;
         flex-direction: column;
     }

     .menu {
         position: absolute;
         top: 80px;
         right: 0;
         background-color: rgba(10, 14, 39, 0.95);
         width: 100%;
         text-align: center;
         display: none;
         flex-direction: column;
     }

     .menu ul {
         flex-direction: column;
     }

     .menu li {
         margin: 15px 0;
     }

     .burger {
         display: flex;
     }

     .toggle-menu:checked~.menu {
         display: flex;
     }

     .ver {
         color: #00ff41;
         text-shadow: 0 0 30px rgba(0, 255, 65, 1);
         transition: 0.3s ease;
     }

     .ver:hover {
         transform: scale(1.3);
     }

     ul {
         border-bottom: 2px solid #00ff41;
     }
 }

 @media(max-width:800px) {
     #titre-personnage {
         font-size: 15px;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         gap: 15px;
     }

     .nav-links a {
         font-size: 14px;
         padding: 6px 12px;
     }

     .hero h1 {
         font-size: 42px;
     }

     .hero p {
         font-size: 18px;
     }

     .logo {
         font-size: 22px;
     }

     .contact-section {
         padding: 30px 20px;
     }

     .timeline h2 {
         font-size: 32px;
     }
 }

 @media(max-width:520px) {
     #titre-personnage {
         font-size: 12px;
     }
 }

 @media(max-width:430px) {
     #titre-personnage {
         font-size: 11px;
     }
 }

 .toggle-menu {
     display: none;
 }

 .menu {
     display: none;
 }

 .menu ul {
     list-style: none;
     display: flex;
     margin: 0;
     padding: 0;
 }

 .menu li {
     margin-left: 25px;
 }

 .menu a {
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }

 .burger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .burger span {
     height: 3px;
     width: 25px;
     background: white;
     margin: 4px 0;
     border-radius: 2px;
     transition: all 0.3s;
 }