/* === STYLE GLOBAL DU SITE BAND MAKER PRO === */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f1f1f1, #ffffff);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
}

h1 {
  color: #004080;
  font-size: 2em;
}

p {
  font-size: 1.2em;
}

/* === HEADER UNIFIÉ === */
header {
  background-color: #1e1e1e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
}

nav a:hover {
  color: #ffcb05;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-name {
  font-weight: 500;
  color: white;
}

.profile-icon {
  background-color: white;
  color: #1e1e1e;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-decoration: none;
}

.logout-button {
  background: none;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  margin-left: 10px;
}

.logout-button:hover {
  color: #ffcb05;
}

/* === BLOCS PROFIL UTILISATEUR === */
.musician-profile {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto 40px;
}

.musician-profile img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.profile-info h2 {
  margin-top: 0;
  color: #004080;
}

.profile-info p {
  margin: 5px 0;
}

.a-propos {
  background-color: #f7f7f7;
  padding: 30px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.a-propos h2 {
  color: #003366;
  margin-bottom: 15px;
}

.a-propos p {
  line-height: 1.6;
}

/* === PAGE ENVOYER MESSAGE === */
.formulaire-message {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulaire-message h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #004080;
}

.formulaire-message label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.formulaire-message input[type="text"],
.formulaire-message select,
.formulaire-message textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.formulaire-message textarea {
  resize: vertical;
  min-height: 150px;
}

.formulaire-message .bouton-nouveau {
  margin-top: 20px;
  padding: 10px 20px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.formulaire-message .bouton-nouveau:hover {
  background: #005fa3;
}

/* === MESSAGES SYSTÈME === */
.confirmation {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 6px;
  margin: 20px auto;
  max-width: 700px;
  font-weight: bold;
  text-align: center;
}

.erreur {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 6px;
  margin: 20px auto;
  max-width: 700px;
  font-weight: bold;
  text-align: center;
}

.info {
  text-align: center;
  color: #555;
  font-size: 0.95em;
  margin-top: 20px;
}
