@import url('https://fonts.googleapis.com/css?family=Playball');

/* RESET ET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    font-family: "Lemon/Milk light", Arial, sans-serif;
    font-size: 9px;
    color: #222;
    background-color: #FBF8F8;
}

/* HEADER */
header {
  background-color: #071A33;
  color: white;
  text-align: center;
  margin-top: 10px;
  border-radius: 10px;
  padding: 10px;
}

header h1 {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #ECEBEB;
}

/* CONTENU PRINCIPAL */
.contents {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #FBF8F8;
  background-attachment: fixed;
  color: #FFFFFF;
  padding: 20px;
}

/* Texte et titres */
.contents p, h1 {
    text-align: center;
    font-size: medium;
}

.contents p {
  margin: 10px 0;
  font-size: 16px;
  color: rgba(80,119,188,.81);
}

h1 {
    font-size: 4px;
    color: #292727;
}

/* CONTAINER DES ARTICLES */
.ib-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto;
    max-width: 90%;
}

/* ARTICLE */
.ib-container article {
    width: 180px;
    background-color: #F4F2E9;
    cursor: pointer;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 10px rgba(216,215,212,1.00),
              1px 1px 3px 10px rgba(0,0,0,.2);
    transition: all 0.4s ease-in-out;
}

.ib-container article:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 10px rgba(255,255,255,1),
              1px 11px 15px 10px rgba(0,0,0,.4);
  z-index: 10;
}

/* TITRES ET TEXTES DANS LES ARTICLES */
.ib-container h5 a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: .8;
    width: auto;
}

.ib-container article header span {
  font-size: 10px;
  font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif;
  padding: 5px 0;
  display: block;
  color: rgba(255,210,82,1);
  text-transform: uppercase;
  opacity: .8;
}

.ib-container article p {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #333;
  opacity: .9;
  text-align: left;
}

/* LIENS */
a {
    color: #F3EFE6;
    font-weight: 700;
    text-decoration: none;
}

a:hover {
  color: #283AFF;
  font-size: 18px;
  font-family: "Lemon/Milk light";
}

/* ARRONDIS */
.arrondie {
  border-radius: 30px;
}

/* —————— MEDIA QUERIES —————— */

/* Tablettes (jusqu’à 992px) */
@media screen and (max-width: 992px) {
  .ib-container article {
    width: 45%;
  }

  header h1 {
    font-size: 1.6rem;
  }
}

/* Mobiles (jusqu’à 600px) */
@media screen and (max-width: 600px) {
  .ib-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .ib-container article {
    width: 90%;
    margin: 10px 0;
  }

  header h1 {
    font-size: 1.4rem;
  }

  .ib-container article p {
    font-size: 11px;
  }
}

/* Petits écrans (jusqu’à 400px) */
@media screen and (max-width: 400px) {
  .ib-container article {
    width: 90%;
  }

  header h1 {
    font-size: 1.2rem;
  }
}
