
h1{
	text-align: center;
	text-decoration: underline;
	font-style: italic;
	font-size: 24px;
	color:#ad956b;
  margin-bottom: 25px;
  margin-top: 15px;
}

h2{
  text-align: center;
	font-style: italic;
	font-size: 20px;
	font-style: italic;
	color:#00c3ff;
  margin-bottom: 15px;
  text-decoration: underline;
	
}

h3{
	text-align: center;
	font-size: 18px;
	color:#ad956b;	
  text-decoration: underline;
  font-style: italic;
}


p {
  margin: 0 0 5px 0; /* marge bas = 5px */
}

.p1{
    
    font-size: 18px;
    color:#ad956b;
    text-align: center;
    font-weight: 500;
    margin: 0 0 0 0; /* marge bas = 5px */
}

.p2{
    font-size: 12px;
    color:#ad956b;
    text-align: center;
    font-weight: 500;
    font-style: italic;
}

.p3{
    font-size: 16px;
    color:#ad956b;
    text-align: center;
  }

.a1:link, .a1:visited {
color:#ad956b;
font-size:16px;
font-weight:bold; 
text-decoration:blink;
font-style: italic ;
}

.a1:hover {
color:#C0C0C0;
font-size:16px;
font-weight:bold;
text-decoration:underline;
}

.a2:link, .a2:visited {
color:#ffffff;
font-size:16px;
font-weight:bold; 
text-decoration:blink;
text-decoration:underline;
}

.a2:hover {
color:#2B2B2B;
font-size:16px;
font-weight:bold;
font-style: italic ;
}

/* ====== MENU DESKTOP ====== */
#menu {
  background-color: #1988E9;
  color: white;
  font-family: sans-serif;
  border-radius: 11px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 3px;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center; /* Centrage horizontal */
  height: 40px;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s;
  z-index: 1001;
}

.menu-items {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.menu-items li {
  position: relative;
}

.menu-items a {
  text-decoration: none;
  color: white;
  padding: 12px 24px;
  display: block;
  transition: background 0.3s, color 0.3s;
  border-radius: 6px;
  font-size: 18px;
}

.menu-items a:hover {
  background-color: #F2F2F2;
  color: #1988E9;
}

/* Sous-menu */
.has-submenu:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  background-color: #28A2FF;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sub-menu li {
  width: 220px;
}

.sub-menu a {
  padding: 10px 16px;
  font-size: 15px;
  color: white;
  font-size: 16px;
}

.sub-menu a:hover {
  background-color: #F2F2F2;
  color: #1988E9;
}

.has-submenu > a::after {
  content: "▼"; /* ou "▾" */
  font-size: 18px;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.7;
}

/* ====== RESPONSIVE - MOBILE ====== */
@media screen and (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .menu-container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .menu-items {
    flex-direction: column;
    align-items: flex-start;
    background-color: #1988E9;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    max-height: 0;              /* effet slide fermé */
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 0;
    border-radius: 0 0 11px 11px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .menu-items.show {
    max-height: 500px;          /* effet slide ouvert */
    padding: 0;
  }

  .menu-items li {
    width: 100%;
    margin-bottom: 0;
  }

  .menu-items a {
    width: 100%;
    padding: 12px 10px;
    font-size: 17px;
    text-align: center;
  }

  .sub-menu {
    position: static;
    width: 100%;
    border-radius: 6px;
    margin-top: 6px;
    padding: 0;
    box-shadow: none;
  }

  .has-submenu .sub-menu a {
    padding-left: 25px;
  }

  .sub-menu li {
    margin-bottom: 5px;
  }
}

/* Mobile : sous-menu affiché avec JS */
.sub-menu {
  display: none;
}

.sub-menu.show-sub {
  display: block;
}

.intro {
    text-align: center;
    padding: 0px 20px;
}

section {
    padding: 10px 20px;
    max-width: 900px;
    margin: auto;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00c3ff;
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background-color: #00a0cc;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 70%;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: center;
  background: radial-gradient(circle, #ffffff, #aad4f5);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  gap: 1.5rem;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Image */
.service-image img {
  width: 100%;
  max-height: 300px;
  border-radius: 0.75rem;
  display: block;
  height: auto; 
  object-fit: contain;
}

/* Texte */
.service-content {
  flex: 1;
}

.service-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #222;
}

.service-content p {
  margin: 0 0 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    max-width: 100%;
  }

  .service-content h2 {
    font-size: 1.2rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }
}


    .competence {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 25px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card p {
  font-size: 1em;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2em;
  }
}

/* Section principale */

/* Cartes */
.pack-card {
  background: linear-gradient(to bottom right, #1e1e1e, #292929);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border-left: 5px solid transparent;
}

/* Hover effet */
.pack-card:hover {
  transform: translateY(-4px);
}

/* Texte général */
.pack-card p {
  margin: 0.5rem 0;
  line-height: 1.6;
  color: #ddd;
}

/* Listes */
.pack-card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.pack-card ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

/* Code couleur par pack */
.pack-card.starter {
  border-left-color: #00cc66;
}

.pack-card.premium {
  border-left-color: #ffaa00;
}

.pack-card.pro {
  border-left-color: #3399ff;
}

.pack-card.sur-mesure {
  border-left-color: #cc66cc;
}

.pack-card.options {
  border-left-color: #999999;
}

/* Responsive */
@media (max-width: 1024px) {
  .pack-card {
    padding: 1.2rem;
  }

  .offres-sites-web h2 {
    font-size: 1.5rem;
  }

  .pack-card h3 {
    font-size: 1.2rem;
  }

  .pack-card ul li {
    font-size: 0.95rem;
  }
}

/* Table dans la carte OPTIONS */
.pack-card.options table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #1f1f1f;
  color: #eee;
  text-align: left;
  border-radius: 0.5rem;
  overflow: hidden;
}

.pack-card.options th,
.pack-card.options td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #333;
}

.pack-card.options th {
  background-color: #2a2a2a;
  font-weight: 600;
  color: #00cc66;
}

.pack-card.options tr:hover {
  background-color: #2f2f2f;
}

/* fomulaire */
  form {
    background: linear-gradient(to bottom right, #1e1e1e, #292929);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 70%;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    color: #ddd;
    font-family: Arial, sans-serif;
  }

  label {
    display: block;
    margin-bottom: 0.7rem;
    cursor: pointer;
    font-weight: 500;
    color: #ccc;
  }

  input[type="radio"],
  input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
  }

  button[type="submit"] {
    background-color: #3399ff;
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
  }

  button[type="submit"]:hover {
    background-color: #007acc;
  }

  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 2rem 0;
  }

textarea,select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #555;
  background-color: #1e1e1e;
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 1rem;
}

textarea::placeholder,
select option {
  color: #aaa;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 90%;               /* Largeur du champ */
  max-width: 100%;         /* Largeur max pour éviter trop grand */
  padding: 12px 15px;        /* Espacement interne */
  margin-bottom: 15px;       /* Espacement avec le champ suivant */
  border: 2px solid #ccc;    /* Bordure grise */
  border-radius: 12px;       /* Coins arrondis */
  background-color: #fefefe; /* Couleur de fond */
  font-size: 16px;           /* Taille du texte */
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1); /* Effet d’ombre interne */
  transition: border-color 0.3s;
  text-align: center;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #007BFF;     /* Couleur au focus */
  outline: none;
}


  /* Responsive */
  @media (max-width: 1024px) {
    form {
      padding: 1rem 1.5rem;
      max-width: 100%;
    }
  }

  