/* General styles */
body {
  font-family: 'Lato', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

/* Navigation */
nav {
  background-color: #2c3e50;
  padding: 15px;
  text-align: center;
  position: relative; /* pour placer le logo */
}
nav a {
  color: #ecf0f1;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #1abc9c;
}

/* Hero banner (plus compact) */
.hero {
  background: linear-gradient(90deg,rgba(48, 62, 78, 1) 0%, rgba(70, 151, 188, 1) 100%);
  color: white;
  text-align: center;
  padding: 40px 20px; /* réduit par rapport aux 80px initiaux */
}
.hero h1 {
  font-size: 2.5em; /* un peu plus petit */
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 15px;
}
.hero .btn {
  background-color: #1abc9c;
  padding: 8px 16px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero .btn:hover {
  background-color: #16a085;
}
hero-logo {
  display: block;      /* reste dans le flux */
  text-align: right;   /* aligne le contenu à droite */
  margin-top: 10px;    /* petit espace sous le texte */
  opacity: 0.8;        /* discret */
}

.hero-logo img {
  max-height: 76px;    /* ≈ 1 cm */
  width: auto;
  height: auto;
  display: inline-block;
}
/* Main content */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: #ffffff; /* texte en blanc */
  margin-top: 40px;
}

footer a {
  color: #ffffff;       /* liens en blanc */
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #1abc9c;       /* vert clair au survol */
  text-decoration: underline;
}
