/*initialisation*/
:root {
  /* Couleurs */
  --principal-color: #002533;
  --secondary-color: #f7efe7;
  --tertiary-color: #f2621f;
  --bleupale-color: #d1dbe4;
  /* Titres et texte */
  --h2-size-desktop: 64px;
  --h2-size-mobile: 48px;
  --h3-size-desktop: 48px;
  --h3-size-mobile: 36px;
  --h4-size-desktop: 36px;
  --h4-size-mobile: 24px;
  --p-size-desktop: 16px;
  --p-size-mobile: 12px;
  --p-button: 20px;
  /* Margin et padding */
  --margin-x-desktop: 10vw;
  --margin-y-desktop: 5vh;
  --padding-y-desktop: 5vh;
  --padding-x-desktop: 5vw;
  --margin-x-mobile: 5vw;
  --margin-y-mobile: 3vh;
  --padding-y-mobile: 2vh;
  --padding-x-mobile: 2vw;
  --row-gap: 30px;
  --column-gap: 30px;
  /* Effets */
  --border-radius: 40px;
  --img-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
  --transition-time: 400ms;
}

body {
  background-color: var(--secondary-color);
  font-family: 'Lexend', sans-serif;
}

/*HEADER*/
* , *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/*DÃ©but navbar*/

.navbar {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 37, 51, 0.5);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  border-radius: 0px 0px 10px 10px;
  padding: 1rem;
  height: 4rem;
  z-index: 999;
  text-decoration: none;
}

.logo {
  height: 3.5rem;
}

nav ul li {
  text-decoration: none;
  list-style: none;
  padding: 1rem;
}

.list-general {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  font-family: "Playfair Display", serif;
  font-size: var(--h5-size-desktop);
  text-decoration: none;
  list-style: none;
}

.listeN a {
  color: var(--secondary-color);
  text-decoration: none;
  list-style: none;
}

.listeN a:hover {
  color: var(--tertiary-color);
  text-decoration: none;
  list-style: none;
}

.listeN:hover>ul {
  display: block;
  text-decoration: none;
  list-style: none;
}

.listeN {
  cursor: pointer;
  margin: 0 1.5rem;
  color: var(--tertiary-color);
  text-decoration: none;
  list-style: none;
}

.listeN-pointer {
  height: 50%;
  width: 50%;
}

.sousMenu {
  display: none;
  position: absolute;
  top: 4rem;
  background-color: rgba(0, 37, 51, 0.5);
  border-radius: 0px 0px 10px 10px;
  text-decoration: none;
  list-style: none;
}

.sousListe {
  color: #f7efe7;
  font-family: 'Lexend Regular';
  font-size: var(--p-button);
  text-align: left;
  text-decoration: none;
  list-style: none;
}

/*Fin navbar*/
.title-top {
  font-family: Playfair Display Semibold;
  font-style: italic;
  text-align: left;
  font-size: 8rem;
  color: #f7efe7;
  position: absolute;
  bottom: 30vh;
  margin-left: 5vw;
  mix-blend-mode: soft-light;
}

.img-top {
object-fit: cover;
object-position: center;
height: 75vh;
width: 100%;
margin: 0;
border-radius: 0px 0px 30px 30px;
}
/*Menu burger*/
/* Styles pour l'icône du menu */
#icons {
  cursor: pointer;
  display: none;
}

/* Styles pour la barre de navigation lorsque le menu est actif */



@media (max-width: 1000px) {
  #icons {
    display: block;
  }

  .navbar.active ul {
    left: 0;
    margin-top: 8.5vh;
  }
  
  .sousMenu li {
    margin-top: 6vh;
  }

 nav {
    width: 100%;
  }

  #icons::before {
    content: "\2630"; /* Icône du menu hamburger */
    color: var(--secondary-color); /* Couleur de l'icône */
  }

  .navbar.active #icons::before {
    content: "\2715"; /* Icône de fermeture du menu */
  }

  /* Styles pour la barre de navigation */
  nav ul {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(0, 37, 51, 0.5);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.5s; /* Transition plus rapide */
  }

  nav li {
    padding: 3px 0;
  }

  nav li:hover {
    background: #01749e;
  }
}
/* Afficher la barre de navigation en cas de clic sur l'icône du menu */

/*Fin navbar*/
/*Acceuil*/
.headerG header {
  background: url(/assets-julien/masashi-wakui-12.jpg);
  background-size: cover;
  background-position: center;
  padding: 10%;
  border-radius: 0px 0px 15px 15px;
}

.headerG h1 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: 3px 4px #f2621f;
  padding: 5rem;
}

.titre-texte-acceuil {
  display:flex;
  align-items: center;
  flex-direction: column;
  margin: 0rem 25%;
}

.titre-texte-acceuil h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  padding: 2rem;
  color: var(--principal-color);
  margin: 0;
}

.ligne-acceuil-dessus-h1 {
  border: var(--principal-color) solid 1px;
  width: 80%;
  height: 2px;
  margin-bottom: 2rem;
}

.titre-texte-acceuil p {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

.ligne2-acceuil {
  border: var(--principal-color) solid 1px;
  width: 80%;
  margin-left: 10%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px){
  .headerG header {
    padding: 2rem;
}

.headerG  h1 {
    font-size: 2rem;
    padding: 5rem 0rem;
}

.titre-texte-acceuil {
  margin: 20%;
}

.titre-texte-acceuil h2 {
  font-size: 2.5rem;
}

.titre-texte-acceuil p {
  font-size: 0.8rem;
}
}

/*Fin acceuil*/

/*page yacine*/

.headerY header{
  background: url(/assets-yacine/pexels-cats-coming-1907229.jpg);
  background-size: cover;
  background-position: center;
  padding: 10%;
  border-radius: 0px 0px 15px 15px;
}
.headerY h1 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: 3px 4px #f2621f;
  padding: 5rem;
}

.texte-yacine {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 45rem 30rem;
  margin-right: 30px;
  margin-left: 30px;
}

.contenu-yacine {
    font-family: "Lexend";
    font-size: xx-large;
    grid-column: 2;
    margin: 3%;
    background: rgb(247, 239, 231);
    background: linear-gradient(90deg, rgba(247, 239, 231, 1) 90%, #f2621f 45%);
}

.image-sushi {
    background-image: url(assets-yacine/pexels-airam-datoon-9424914.jpg);
    grid-row: 2;
    background-size: cover;
    background-position: center;
    border-radius: 15%;
    margin: 3%;
}

@media screen and (max-width: 1000px) { 
  .cards-yacine {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
    gap:5rem;
  }

  .contenu-yacine {
    flex-wrap: nowrap;
  }

  .texte-yacine {
    grid-template-columns: 2fr;
    grid-template-rows: 1fr;
  }

  .contenu-yacine {
    grid-row: 1;
  }
}

@media screen and (max-width: 900px) {
  .image-sushi {
    display: none;
  }
}

.card5y {
  width: 14rem;
  height: 20rem;
  border-radius: 30px;
  background: url(/assets-yacine/ai-generated-7955585_1920.jpg);
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
  background-size: cover;
  background-position: center;
}

/*fin page yacine*/

/*page Daniel*/
.headerD header {
  background: url(/assets-daniel/jaeyoon-jeong-haTl7gFp5KQ-unsplash.jpg);
  background-size: cover;
  background-position: center;
  padding: 10%;
  border-radius: 0px 0px 15px 15px;
}

.headerD h1 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: 3px 4px #f2621f;
  padding: 5rem;
}

.texte-img-daniel1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 5rem;
}

.img1-daniel{
  background-image: url(/assets-daniel/pexels-cottonbro-studio-4828253.jpg);
  padding: 10rem 15rem;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 10px 10px rgba(0, 37, 51, 1);
}

.text-daniel-1{
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  background-color: #E0CEBC;
  border-radius: 15px;
  margin: 2rem 5rem;
  padding: 4.5rem;
  box-shadow: 15px 15px rgba(0, 37, 51, 1);
}

.ligne-daniel {
  border: solid 2px rgba(0, 37, 51, 1);
  width: 70%;
  height: 2px;
  border-radius: 15px;
  margin:0 15%;
  opacity: 70%;
}

.texte-img-daniel2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 5rem;
  color: rgba(0, 37, 51, 1);
}

.img2-daniel{
  background-image: url(/assets-daniel/pexels-cottonbro-studio-4828248.jpg);
  padding: 10rem 15rem;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 10px 10px rgba(0, 37, 51, 1);
}

.text-daniel-2{
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  background-color: #E0CEBC;
  border-radius: 15px;
  margin: 2rem 5rem;
  padding: 4.5rem;
  box-shadow: 15px 15px rgba(0, 37, 51, 1);
  color: rgba(0, 37, 51, 1);
}

.ligne2-daniel {
  border: solid 2px rgba(0, 37, 51, 1);
  width: 70%;
  height: 2px;
  border-radius: 15px;
  margin:0 15%;
  opacity: 70%;
}

.articles-fin {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: rgba(0, 37, 51, 1);
  text-align: center;
  padding: 2rem;
}

@media screen and (max-width: 768px){
  .headerD header {
      padding: 2rem;
  }

  .headerD  h1 {
      font-size: 2rem;
      padding: 5rem 0rem;
  }

  .texte-img-daniel1 {
      display: flex;
      flex-direction: column;
      margin: 2rem 0.5rem;
  }

  .text-daniel-1 {
      font-size: 1rem;
      margin: 1rem;
      padding: 1.2rem;
  }

  .img1-daniel {
      margin: 1rem;
      padding: 5.5rem 9rem;
  }

  .texte-img-daniel2 {
      display: flex;
      flex-direction: column-reverse;
      margin: 2rem 0.5rem;
  }

  .text-daniel-2 {
      font-size: 1rem;
      margin: 1rem;
      padding: 1.2rem;
  }

  .img2-daniel {
      margin: 1rem;
      padding: 5.5rem 9rem;
  }

}

/*fin page Daniel*/

/*page StephV*/

.header-stephV {
  background: url(assets-stephV/nature.jpg);
  background-size: cover;
  background-position: center;
  padding: 10%;
  border-radius: 0px 0px 15px 15px;
}

.header-stephV h1 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: 3px 4px #f2621f;
  padding: 5rem 5rem 5rem 0rem;
}

.pagestephV {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
}

/* ARTICLE 1 STEPH V PRESENTATION */
.articl1stephV {

  font-family: 'Lexend', sans-serif;
  color: black;
  font-size: 2rem;
  background-image: url(assets-stephV/coucherdesoleil.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 2rem 10rem 20rem 5rem;
  text-align: justify;
  margin: 4rem;
  box-shadow: var(--tertiary-color) 20px 20px;
}

.imgarticl1stephV {
  object-fit: url(assets-stephV/carte_Libourne.jpg);
  object-position: right;
}

.h2articl1stephV {
  color: var(--tertiary-color);
  font-size: 3rem;
  font-weight: bold;
  text-align: justify;

}

/* ARTICLE 2 STEPH V */
.article2stephV {

  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  color: black;
  background-image: url(assets-stephV/cyclo2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 5rem 10rem 5rem 5rem;
  text-align: justify;
  margin: 4rem;
  box-shadow: var(--principal-color) -20px -20px;
}

.h2article2stephV {
  color: var(--principal-color);
  font-size: 3rem;
  font-weight: bold;
  text-align: justify;
}


.liencyclopierro {
  color: var(--principal-color);
}


/* ARTICLE 3 STEPH V */
.article3stephV {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  color: black;
  background-image: url(assets-stephV/LE_DRIVE_TOUT_NU.png);
  background-position: auto;
  background-color: #FDD2CC;
  border-radius: 20px;
  padding: 5rem 10rem 5rem 5rem;
  background-repeat: no-repeat;
  text-align: justify;
  margin: 4rem;
  box-shadow: var(--tertiary-color) 20px 20px;
}

.h2article3stephV {
  color: var(--tertiary-color);
  font-size: 3rem;
  font-weight: bold;
  text-align: justify;
}

.liendrivetoutnu {
  color: var(--tertiary-color);
}

/* ARTICLE 4 STEPH V */
.article4stephV {

  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  color: black;
  background-image: url(assets-stephV/recyclage2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 5rem 10rem 5rem 5rem;
  text-align: justify;
  margin: 4rem;
  box-shadow: var(--principal-color) -20px -20px;
}

.h2article4stephV {
  color: var(--principal-color);
  font-size: 3rem;
  font-weight: bold;
  text-align: justify;
}

.lienbbot {
  color: var(--principal-color);
}

/* ARTICLE 5 STEPH V */
.article5stephV {

  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  color: black;
  background-image: url(assets-stephV/koozumain2.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 5rem 5rem 20rem 10rem;
  text-align: right;
  margin: 4rem;
  box-shadow: var(--tertiary-color) 20px 20px;
}

.h2article5stephV {
  color: var(--tertiary-color);
  font-size: 3rem;
  font-weight: bold;
  text-align: justify;
}

.lienkoozumain {
  color: var(--tertiary-color);
}

/* FIN PAGE STEPH V */

/*page StephM*/

.header-stephm {
  background: url(/assets-stephM/couché-de-soleil-plage.jpg);
  background-size: cover;
  background-position: bottom;
  padding: 10%;
  border-radius: 0px 0px 15px 15px;
}

.header-stephm h1 {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: 3px 4px #f2621f;
  padding: 5rem;
}

.texte-stephm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    font-family: 'Lexend', sans-serif;
    font-size: 1, 2rem;
    grid-gap: .5rem;
    grid-template-areas:
        "1 2"
        "3 4"
        "5 6"
        "7 8";
    text-align: center;
    padding: 3rem;
}

.texte-stephm p1 {
  grid-area: 1;
  font-size: 1.1rem;
  align-self: center;
  justify-self: center;
  width: 70%;
  padding: 2rem;
}

.img1stephm {

    grid-area: 1;
    background: url(/assets-stephM/Baie-des-Sables-d-Olonne.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    align-self: center;
    justify-self: center;
    padding: 10rem 17rem;
}

.img2stephm {
    grid-area: 2;
    background: url(/assets-stephM/images.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    align-self: center;
    justify-self: center;
    padding: 10rem 17rem;
}

.texte-stephm p2 {
  font-size: 1.1rem;
  align-self: center;
  justify-self: center;
  width: 70%;
  padding: 2rem;
}

.texte-stephm p3 {
  grid-area: 3;
  font-size: 1.1rem;
  align-self: center;
  justify-self: center;
  width: 70%;
  padding: 2rem;
}

.img3stephm {

  grid-area: 3;
  background: url(/assets-stephM/Plage.webp);
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  align-self: center;
  justify-self: center;
  padding: 10rem 17rem;
}

.img4stephm {
  grid-area: 4;
  background: url(/assets-stephM/image.png);
  background-size: cover;
  background-position: top;
  border-radius: 15px;
  align-self: center;
  justify-self: center;
  padding: 10rem 17rem;
}

.texte-stephm p4 {
  font-size: 1.1rem;
  align-self: center;
  justify-self: center;
  width: 70%;
  padding: 2rem;
}

.cards-stephm {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5rem;
}

.card1 {
  width: 20rem;
  height: 14rem;
  border-radius: 30px;
  background-image: url(/assets-stephM/download.jpg);
  box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #aaaaaa;
  background-size: cover;
  background-position: center;
}

.card2 {
  width: 14rem;
  height: 20rem;
  border-radius: 30px;
  background-image: url(/assets-stephM/Forêt.webp);
  box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #aaaaaa;
  background-size: cover;
  background-position: center;
}

.card3 {
  width: 20rem;
  height: 14rem;
  border-radius: 30px;
  background-image: url(/assets-stephM/download\ \(1\).jpg);
  box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #aaaaaa;
  background-size: cover;
  background-position: center;
}

.card4 {
  width: 14rem;
  height: 20rem;
  border-radius: 30px;
  background-image: url(/assets-stephM/istockphoto-1172051173-612x612.jpg);
  box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #aaaaaa;
  background-size: cover;
  background-position: center;
}

.presentation-stephm {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  align-items: center;
  justify-items: center;
  margin: 2rem;
  margin-left: 4rem;
}

.card5 {
  background: url(/assets-stephM/carte.jpg);
  background-size: cover;
  background-position: right;
  border-radius: 15px;
  align-self: center;
  justify-self: center;
  width: 10rem;
  height: 10rem;
}

@media screen and (max-width: 960px) {
  .header-stephm h1{
    font-size: 3rem;
  }
  .texte-stephm{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
  }
  .img1stephm .img2stephm .img3stephm .img4stephm{
    width: auto;
  }
  .cards-stephm{
    padding: 0.5rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .presentation-stephm{
    grid-template-columns: none;
  }
  .card5{
    margin-top: 1.5rem;
  }
}
/*fin page StephM*/

/*debut cartes*/
h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: Playfair display;
  font-size: var(--h2-size-desktop);
  color: var(--principal-color);
  margin-bottom: 50px;
}

h3 {
  font-family: Playfair display;
  font-size: var(--h3-size-desktop);
  color: var(--principal-color);
}

.centrer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Articles récents */

.articles-recents {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 70%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

hr {
  background-color: var(--tertiary-color);
  border: none;
  height: 1px;
  margin-bottom: 40px;
}

.article-h3 {
  font-size: var(--h3-size-desktop);
  text-align: left;
  padding-bottom: 20px;
}

.article-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 3vw;
  grid-template-areas:
      "col2-1", "col2-2";
  padding: 0;
  justify-content: center;
}

.article-col2-1 {
  grid-area: col2-1;
  grid-column-start: 1;
  grid-column-end: 2;
}

.article-col2-2 {
  grid-area: col2-2;
  grid-column-start: 2;
  grid-column-end: 3;
  row-gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-img {
  object-fit: cover;
  height: 30vh;
  width: 40vw;
  justify-content: left;
  border-radius: 30px;
  box-shadow: var(--img-box-shadow);
  margin: 0;
}

.article-img:hover {
  filter: opacity(0.85);
  transition: var(--transition-time);
}

.article-col2 h4 {
  font-size: var(--h4-size-desktop);
  color: var(--principal-color);
  text-align: left;
  font-family: Playfair Display Semibold;
}

.article-col2 p {
  font-size: var(--p-size-desktop);
  color: var(--principal-color);
  text-align: left;
  font-family: Lexend Regular;
}


/* Bouton "Lire plus" et "Découvrir plus"*/

.button-lire-plus {
  display: flex;
  flex-direction: column;
  background-color: var(--principal-color);
  color: var(--secondary-color);
  font-size: var(--p-button);
  font-family: Playfair Display Regular;
  justify-content: left;
  padding-left: 8%;
  padding-right: 8%;
  margin-bottom: var(--margin-y-desktop);
}

.button-lire-plus:hover {
  background-color: var(--tertiary-color);
  color: var(--secondary-color);
}


/* Cards responsive */

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}

.card__h3 {
  font-size: var(--h3-size-desktop);
  text-align: center;
  padding-bottom: 20px;
}

.card__image {
  max-width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: var(--img-box-shadow);
  border-radius: 0 0 2em 2em;
  background-color: var(--principal-color);
  color: var(--secondary-color);
}



.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__body h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  text-align: left;
  font-family: Playfair Display Semibold;
}

.card__body p {
  font-size: var(--p-size-desktop);
  color: var(--secondary-color);
  text-align: left;
}

.card__body a {
  font-size: 1.2rem;
  color: var(--tertiary-color);
  text-align: left;
  font-family: Playfair Display Semibold;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.card__button:hover {
  transition: var(--transition-time);
  text-decoration: underline var(--tertiary-color);
}

.user {
  display: flex;
  gap: .5rem;
}

.user__image {
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.user__info {
  color: var(--secondary-color);
}



/* Media queries - MOBILE */

@media screen and (max-width: 480px) {

  h2 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      font-family: Playfair display;
      font-size: var(--h2-size-mobile);
      color: var(--principal-color);
      margin-bottom: var(--margin-y-mobile);
  }

  h3 {
      font-family: Playfair display;
      font-size: var(--h3-size-mobile);
      color: var(--principal-color);
  }

  .description-center {
      width: 70%;
      text-align: center;
      color: var(--principal-color);
      font-size: var(--p-size-desktop);
      margin-top: var(--margin-y-mobile);
      margin-bottom: var(--margin-y-mobile);
  }


  /* Cards responsive */

  .card__h3 {
      font-size: var(--h3-size-mobile);
      text-align: center;
      padding-bottom: 20px;
  }

  /* Articles récents */

  .articles-recents {
      padding-top: 40px;
      padding-bottom: 40px;
      width: 90%;
      display: flex;
      flex-direction: column;
      margin: auto;
  }

  hr {
      background-color: var(--tertiary-color);
      border: none;
      height: 1px;
      margin-bottom: 20px;
  }

  .article-h3 {
      font-size: var(--h3-size-mobile);
      text-align: left;
      padding-bottom: 20px;
  }

  .article-col2 {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .article-col2-1 {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .article-col2-2 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .article-img {
      object-fit: cover;
      object-position: center;
      height: 30vh;
      width: 90vw;
      justify-content: left;
      border-radius: 15px;
      box-shadow: var(--img-box-shadow);
      margin-left: auto;
      margin-right: auto;
      margin-bottom: var(--margin-y-mobile);
  }

  .article-img:hover {
      filter: opacity(0.85);
      transition: var(--transition-time);
  }

  .article-col2 h4 {
      font-size: var(--h4-size-mobile);
      color: var(--principal-color);
      text-align: left;
      font-family: Playfair Display Semibold;
  }

  .article-col2 p {
      font-size: var(--p-size-mobile);
      color: var(--principal-color);
      text-align: left;
      font-family: Lexend Regular;
  }
}

/*fin cartes*/

/*Contact*/
.body-contact {
  background: url(/assets-daniel/aaron-burden-6DD9FJYj0Vo-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

.headerC header {
  background: url();
  background-size: cover;
  background-position: center;
  padding: 5% 10% 1% 10%;
  border-radius: 0px 0px 15px 15px;
}

.headerC h1 {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 4rem;
  color: #f7efe7;
  text-shadow: var(--principal-color) 3px 4px;
  padding: 0rem 2rem 2rem 2rem;
}

.form section form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 0 35%;
  z-index: 998;
}

.form section form input {
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 15px;
  border: none;
}

.form section form textarea {
  font-family: "Lexend", sans-serif;
  padding: 1rem;
  margin: 1rem;
  border-radius: 15px;
  border: none;
}

.form section form button {
  padding: 1rem;
  margin: 1rem;
  border-radius: 15px;
  border: none;
}

form {
  padding: 0.5rem;
  background-color: rgba(0, 37, 51, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.box-form {
  padding: 0rem 5rem 5rem;
}

.p-contact{
  font-family: "Lexend", sans-serif;
  background-color: rgb(170, 6, 6);
  border-radius: 5px;
  text-align: center;
  margin: 0 1rem;
  color: var(--secondary-color);
}

@media screen and (max-width: 768px){
  .form section form {
    margin: 0rem;
  }

  .box-form {
    padding: 1rem;
  }

  .headerC h1 {
    padding: 3rem 3rem 0rem 3rem;
    font-size: 3rem;
  }

  .headerC header {
  padding: 1rem;
}
}
/*fin du contact*/

/*footer*/

footer {
  padding: 1rem;
  width: 100%;
  background-color: var(--principal-color);
}

footer .bas-footer {
  display: flex;
  justify-content:center ;
  align-items: end;
}

footer .bas-footer p {
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

footer .footer-central {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-central div p {
  font-size: 0.7rem;
  color: var(--secondary-color);
}

.blog {
  margin-right: 3rem;
}

/*fin du footer*/