/* Reset et base */
body {
  background-color: #f4f4f4;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  flex-direction: column;
}

/* Container */
.container {
  text-align: center;
}

.container h1 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

/* Boutons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.card-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.card-button:hover {
  background-color: #004999;
  transform: translateY(-2px);
}

/* Carte (pour pages individuelles) */
.card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 380px;
  padding: 25px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

/* Logo */
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* Photo de profil */
.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ccc;
}

/* Textes */
.card h1 {
  margin: 0;
  font-size: 1.8em;
  color: #333;
}

.card h2 {
  margin: 5px 0 15px 0;
  font-size: 1.1em;
  color: #777;
  font-weight: normal;
}

.card p {
  font-size: 1em;
  color: #555;
  margin: 5px 0;
}

/* Liens */
.card .email,
.card .phone,
.card .website {
  color: #0066cc;
  text-decoration: none;
}

/* Ligne séparatrice */
.card .line {
  margin: 15px auto;
  width: 80%;
  height: 1px;
  background-color: #ddd;
}

/* Responsive mobile */
@media (max-width: 480px) {
  .card {
    padding: 20px;
  }

  .logo,
  .profile-pic {
    width: 90px;
    height: 90px;
  }

  .card h1 {
    font-size: 1.5em;
  }

  .card h2 {
    font-size: 1em;
  }

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

  .card-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}
