@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
*,
*::after,
*::before {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family:'Poppins', sans-serif;
}

body {
  margin: 0;
}

:focus-visible {
    outline: rgb(85, 131, 228) solid 3px;
}


.skip-link {
    background-color: #d28a66;
    border: solid 3px #935332;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.4em 0.5em;
    text-decoration: none;
}

.skip-link:not(:focus):not(:active) {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.navbar {
  position: fixed;
  overflow: hidden;
  background-color:rgba(32,59,58, 0.7);
  width: 100%;
  padding-block: 20px;
  z-index: 1000;
  
}

.nav-links {
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding-inline: 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content:center;
}

.nav-links li a {
  margin-inline: 50px;
  text-decoration: none;
  font-size: 1.4rem;
  color: rgb(255, 255, 255);
  transition: all 0.5s linear;
  font-family:'Poppins', sans-serif;
}

.nav-links li a:hover {
  text-shadow: 
    0 0 6px rgba(206, 142, 24, 70%), /* middle magenta */
    0 0 4px rgba(218, 255, 69, 70%); /* outer cyan */ ;
}

.nav-links ul li:nth-child(4) a {
  color: #d28a66;
}

.contenu{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding-top: 50px;
  background-color: rgb(32,59,58);
  padding-inline: 100px;
}

.contenu h1, ul{
  color: #ffffff;
  margin: 0;
}

.contenu h1{
  margin-bottom: 16px;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
}

.contenu .paragraphe1 ul li{ 
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 30px;
  margin-bottom: 50px;
}

.contenu .paragraphe1 ul li a{
  color: #ffffff;
}

@media (width<=850px) {

 
  .nav-links ul {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      justify-content: center;
      align-items: center;
  }
  .contenu {display: flex;
    flex-direction: column;
    padding-top: 230px;
    align-content: center;
    align-items: center;
  }
  .contenu .paragraphe1 {
    text-align: center;
  }

   .contenu .paragraphe2 {
    text-align: center;
  }
}

.centrer {
    text-align: center;
    color: white;
}

.centrer a{
    color: white;
    font-size: 1.2rem;
}

/* footer */
.footer {
  background-color: rgba(32,59,58);
  padding: 70px 0;
}
.container{
  max-width: 1200px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.footer-col{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-col h2{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin: 0;
	font-weight: 500;
	position: relative;
  margin-bottom: 20px;
}



.footer-col h2::before {
  content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: rgb(255, 255, 255);
  box-shadow:
    0 2px 14px #f8ffd6, /* inner white */
    0 2px 50px rgb(206, 142, 24), /* middle magenta */
    0 2px 14px rgb(218, 255, 69);
	height: 2px;
	box-sizing: border-box;
	width: 0px;
  transition: all 0.3s ease;
}

.footer-col h2:hover::before {
	width: 50px;
}

.footer-col h2 a{
	text-decoration: none;
  color: rgb(255, 255, 255);
}




.icon-wrapper {
  background-color: #ffffff; /* Fond rouge foncé */
  border-radius: 50%; /* Forme ronde */
  width: 40px; /* Taille du cercle */
  height: 40px; /* Taille du cercle */
  display: inline-flex; /* Pour centrer l'image */
  align-items: center;
  justify-content: center;
  margin-inline: 5px; /* Espacement entre les icônes */
  transition: all 0.5s ease;
}

.icon-wrapper:hover {
  box-shadow: 
    0 0 14px #f8ffd6, /* inner white */
    0 0 8px rgb(206, 142, 24), /* middle magenta */
    0 0 4px rgb(218, 255, 69); /* outer cyan */ ;
}


@media(width<=850px){
  .footer-col{
    width: 100%;
    margin-bottom: 30px;
}
}