/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: "Lust", sans-serif;
  background-color: #fff;
  color: #fff;
}

/* Layout écran partagé */
.split-screen {
  display: flex;
  height: 100vh;
  flex-direction: row;
}

/* Moitié gauche/droite */
.half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  border: 1px solid #555;
}
.left {
  background: linear-gradient(to bottom right, #f9f6f1, #efe7dd);
}
.right {
  background: linear-gradient(to bottom right, #f5f0e6, #e8dcc7);
}

/* Contenu */
.content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: #bfa76f;
  text-transform: uppercase;
}

/* Boutons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.btn {
  background-color: rgba(255, 255, 255, 0.65);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #222;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  font-family: "Helvetica", sans-serif;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .split-screen {
    flex-direction: column;
  }
  .half {
    height: 50vh;
  }
  .buttons {
    flex-direction: column;
  }
}
