body{
    font-family:'Arial', sans-serif;
    margin:0;
    padding:0;
    background-color:#f8f8f8;
    color:#333;
}

header{
    background-color:#fff;
    display:flex;
    justify-content:space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom:2px solid #eee;
}

header img{
    height:40px;
}

/* Menu horizontal */
.navbar {
  text-align: center;
  margin-top: 20px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  padding: 10px 15px;
  display: inline-block;
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

/* Élément actif */
.nav-list li a.active {
  background-color: #eee;
  border-bottom: 3px solid #008ca2; /* bleu foncé */
  border-radius: 2px;
}
.hero{
    positon:relative;
    height:250px;
    background: url('../images/banner1.jpg');
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}

.hero .intro {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  color: #e60073;
  font-weight: bold;
}

blockquote {
  font-style: italic;
  background-color: #e6f2f7;
  padding: 20px;
  text-align: center;
  border-left: 5px solid #0e2f44;
  margin: 30px auto;
  width: 80%;
}

.section-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
  margin: 30px 0 10px;
}

.articles,
.interviews {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px;
}

.card {
  background-color: white;
  width: 45%;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  color: #0e2f44;
}

.card .date {
  font-size: 0.9em;
  color: #666;
}

.card p {
  font-size: 0.95em;
}

.card .btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #0e2f44;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
}

footer {
  background-color: #e60073;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer input[type="email"] {
  padding: 8px;
  width: 250px;
  margin: 10px 0;
}

footer button {
  background-color: white;
  color: #e60073;
  padding: 8px 15px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

footer .socials i {
  margin: 0 10px;
  font-size: 1.5em;
}

.footer-bottom {
  background-color: #3d3d3d; /* gris foncé */
  color: #ffffff; /* texte blanc */
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
}

.footer-bottom img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #e76f51; /* couleur orange clair */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
/* 🌐 VERSION TABLETTE */
@media screen and (min-width: 780px) {
  .footer-bottom {
    font-size: 13px;
    padding: 25px 15px;
  }

  .footer-bottom img {
    width: 50%;
  }

  .footer-bottom p {
    line-height: 1.6;
    padding: 0 10px;
  }
}
