/* Corps de page */
body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

.banner {
    background-image: url('images/bannière4_vps.jpg'); /* Remplacez par le chemin de votre image */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px; /* Vous pouvez ajuster la hauteur selon vos besoins */
      /* Utilisation de Flexbox pour centrer le contenu */
  display: flex;
  align-items: center;
  justify-content: center;
  }  

  .banner h1 {
    position: relative;
    z-index: 2; /* Pour s'assurer que le titre reste au-dessus de l'image */
    color: #ff99cc; /* Choisissez une couleur contrastée */
    font-size: 3em;  /* Ajustez la taille selon vos besoins */
    text-align: center;
    margin-bottom: 310px;
  }

/* Logo */
#logo {
    position: absolute;
    top: 170px;
    left: 585px;
}

#logo img {
    width: 180px;
    height: auto;
}

/* Titres principaux */

h2 {
    text-align: center;
    font-size: 1.5em;
    color: #ff99cc;
    margin-bottom: 1em;
}

button {
    display: block;
    margin: 1.2rem auto;
    background: linear-gradient(135deg, #ffe6f0, #ff99cc);
    border: none;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
    

/* Conteneurs des projets */
#travauxSemestre1,
#travauxSemestre2 {
    max-width: 800px;
    margin: 1em auto 2em auto;
    text-align: center;
}

/* Listes de projets */
ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

li {
    background: #fff;
    border: 1px solid #ff99cc;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Liens */
a {
    text-decoration: none;
    color: #d81b60;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #f06292;
}

/* Nouveau style pour le footer */
footer {
    background-color: #2c2c2c; /* Fond sombre */
    color: #ccc;             /* Texte clair */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
  }
  
  .footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1 1 300px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.2em;
    border-bottom: 2px solid #ff99cc;
    padding-bottom: 5px;
  }
  
  .footer-section p,
  .footer-section a,
  .footer-section li {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 5px 0;
  }

  /* Style spécifique pour le lien de portfolio dans le footer */
.footer-section.links a {
    display: inline;      /* Affiché en ligne, comme du texte */
    background: none;     /* Pas d'arrière-plan */
    border: none;         /* Pas de bordure */
    padding: 0;           /* Pas d'espacement interne */
    margin: 0;            /* Pas de marge spécifique */
    font-weight: 500;     /* Poids de police modéré */
    text-decoration: none;/* Pas de soulignement par défaut */
    color: #d81b60;       /* Couleur en accord avec votre charte */
    transition: color 0.3s ease;
  }
  
  .footer-section.links a:hover {
    color: #d81b60;       /* Change la couleur au survol */
    text-decoration: underline; /* Ajoute un soulignement pour indiquer le survol */
  }
  
  
  /* Liens du footer : affichés en texte simple */
  .footer-section a {
    color: #ff99cc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  /* Section de bas du footer pour les copyrights */
  .footer-bottom {
    max-width: 1100px;
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 0.8em;
    color: #777;
    text-align: center;
  }  