@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: #e0e0e0;
}

/* Login */
.login-body {
  background-image: /home/adminmquetty/site-deploy/site/images/background.jpg ; /* Chemin de ton image */
  background-size: cover;                 /* Pour couvrir tout l’écran */
  background-position: center;            /* Centrage esthétique */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
                                                                                                                                                                                                                                                                                          background: radial-gradient(circle at 20% 20%, #0f2027, #203a43, #2c5364);
}

.login-container {
  background: rgba(20, 20, 20, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px #00f5ff;
  width: 320px;
  text-align: center;
}

.login-container h2 {
  color: #00f5ff;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #111;
  border: 1px solid #00f5ff;
  color: #fff;
  border-radius: 5px;
}

input:focus {
  outline: none;
  box-shadow: 0 0 10px #00f5ff;
}

.btn-login, .btn-neon {
  width: 100%;
  padding: 10px;
  background: #00f5ff;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-login:hover, .btn-neon:hover {
  box-shadow: 0 0 20px #00f5ff, 0 0 40px #00f5ff;
  transform: scale(1.03);
}

.login-options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.error-message {
  color: #ff3b3b;
  margin-top: 10px;
}

/* Présentation */
.presentation-body {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a, #101820);
}

header h1 {
  color: #00f5ff;
  font-size: 2.5rem;
}

.bio {
  max-width: 700px;
  margin: 40px auto;
  line-height: 1.6;
}

/* Projets */
.projets-body {
  padding: 40px;
  background: linear-gradient(135deg, #0a0a0a, #1b2735);
}

.header-projets {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.projets-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.projet-card {
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid #00f5ff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.projet-card h3 {
  color: #00f5ff;
}
