/* Polices et général */
* {
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1E1E1E;
    color: #F5F5F5;
  }
  
  header {
    background-color: #FF6A00;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
  }
  
  .logo .white {
    color: white;
  }
  
  .logo .orange {
    color: #1E1E1E;
  }
  
  header p {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: #f2f2f2;
  }
  
  .hero-full {
    background: url('/assets/images/port.jpeg') center/cover no-repeat;
    height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-overlay {
    background-color: rgba(0,0,0,0.6);
    padding: 3rem;
    color: white;
    z-index: 2;
    border-radius: 10px;
  }
  
  .hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .button-contact-centered {
  background-color: #FF6A00;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease;

  width: 150px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}

.button-contact-centered:hover {
  background-color: #e55a00;
}

  
  .button {
    display: inline-block;
    background-color: #FF6A00;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .button:hover {
    background-color: #e55d00;
    transform: scale(1.05);
  }
  
  .produits-titre {
  text-align: center;
  padding: 40px 0;
  background-color: #1E1E1E;
}

.produits-titre h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #FF6A00;
}

.produits-phares-intro {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #1E1E1E; /* ou garde le fond du site */
}

.produits-phares-intro h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #ff6600;
  border-radius: 12px;
  color: #ffffff;
  background-color: transparent;
}

.produits-phares-intro .highlight {
  color: #ff6600;
}



   /******************************************************************************************/
  /************************************** Ressources ****************************************/
  /******************************************************************************************/
  
  .resource {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    transition: transform 0.4s ease;
  }
  
  .resource:hover {
    transform: scale(1.02);
  }
  
  .overlay {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
  }
  
  .resource h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .resource p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  form {
    background-color: #2C2C2C;
    padding: 2rem;
    border-radius: 10px;

    margin: 3rem auto;
    box-shadow: 0 0 15px #000;
    text-align: center;
  }
  
  form h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  input, button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
    font-family: inherit;
  }
  
  input {
    background-color: #3A3A3A;
    color: #F5F5F5;
  }
  
  button[type="submit"] {
    background-color: #FF6A00;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #e65a00;
  }
  
  footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #CCCCCC;
    padding: 1rem 0;
  }
  /* Section À propos */
  
.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  .about-card {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }
  
  .about-card:hover {
    transform: translateY(-5px);
  }
  
  .about-card h3 {
    color: #FF6A00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .about-card p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .about-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
  }
  
  .about-card li {
    margin-bottom: 0.5rem;
  }
  
 /* Section contact */ 

.contact-hero {
  background-color: #ff6600;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-form-section {
  background-color: #1E1E1E;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}

.contact-form-container {
  
  border-radius: 16px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input,
textarea {
  background-color: #1E1E1E;
  color: white;
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

textarea {
  min-height: 120px;
}

.button {
  background-color: #FF6A00;
  color: white;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: center;
  text-align: center;
}

.button:hover {
  background-color: #e55a00;
}
  /*HEADER*/
  /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}


.logo {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6600;
}

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

.nav-links a {
  text-decoration: none;
  color: #f0f0f0; /* clair mais pas blanc pur */
  font-weight: bold;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links .active {
  color: #222222; /* lisible sur fond orange */
  border-bottom: 2px solid #222222;
}

  
/*FOOTER*/

.site-footer {
  background-color: #2a2a2a; 
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ffffff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 2.2rem; /* icônes plus grandes */
  color: #ffffff;
  transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover {
  color: #FF6A00; /* effet hover foncé pour contraste sur fond orange */
  transform: scale(1.1);
}

  
  
  /*nav bar connexion/inscription*/


.header-top-right {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 15px;
}

.header-top-right a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.header-top-right a:hover {
  color: #1f1f1f;
}

.header-center {
  margin-bottom: 15px;
}

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}




  