@charset "UTF-8";
/* VARIABLES UTILITAIRES */
/* Texte principal sur fond sombre */
/* Texte principal sur fond clair */
/* Texte secondaire (infos, placeholders...) */
/* Fond clair */
/* Fond intermédiaire */
/* Fond sombre */
/* Fond pour éléments mis en avant */
/* Bordures sur fond clair */
/* Bordures sur fond sombre */
/* Effet hover */
/* NOUVELLES VARIABLES HAZELNOTE */
/* HAZELNOTE SATURATED */
/* POLICES ET TAILLES */
/* VARIABLES GPT */
body {
  margin: 0;
  font-family: "", Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-between;
  height: 100vh;
  width: 100%;
}

.mark_accueil {
  height: 80%;
  width: auto;
}

.title-area {
  width: fit-content;
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #1f1f1f;
  height: 82px;
}

.site-title {
  font-size: 32px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0 2.5rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.sidebar {
  background-color: #1a1a1a;
  padding: 1rem;
  width: 200px;
}

.sidebar ul {
  text-decoration: none;
  list-style: none;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.sidebar li {
  height: 2rem;
  width: 100%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  margin: 0;
  border: solid 0;
  border-radius: 10px;
}
.sidebar li:hover {
  background-color: #C8A27C;
}

.sidebar-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.2rem;
  font-size: 14px;
}

.main-content {
  display: flex;
  flex: 1;
}

.dashboard {
  padding: 1rem;
  flex: 1;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.music-card {
  background-color: #2c2c2c;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  object-fit: contain;
}

.music-card img {
  width: 100%;
  height: auto;
}

.search-section {
  width: 50%;
}

.search-section form {
  display: flex;
  gap: 1.5rem;
}

.search-section input {
  height: 1.5rem;
  width: 25rem;
  padding: 2px;
  border: solid 1px #40362F;
  border-radius: 5px;
  font-size: 14px;
  color: #222222;
  background-color: #FAF3E0;
}
.search-section input::placeholder {
  padding-left: 5px;
  color: #A0A0A0;
}

.search-section button {
  border: solid 1px #40362F;
  border-radius: 5px;
  font-size: 14px;
  background-color: #C8A27C;
  color: #ffffff;
}

.audio-player {
  background-color: #1f1f1f;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-progress {
  width: 50%;
}
.player-progress progress {
  width: 80%;
  color: #d63b4f;
}

.player-controls button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #2c2c2c;
  padding: 2rem;
  border-radius: 10px;
  color: #ffffff;
}

.action-button {
  height: 30px;
  width: 30px;
  border: 0 solid;
  border-radius: 50px;
}
.action-button:hover {
  background-color: #E5E0C5;
}

.bibliotheque {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 25%;
  height: calc(100vh - 82px - 66px);
  position: fixed;
  top: 82px;
  right: 0;
  background-color: black;
  z-index: 10;
  transition: ease-in 300ms;
  overflow-y: scroll;
}
.bibliotheque ul {
  position: relative;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bibliotheque li {
  position: relative;
  background-color: #FAF3E0;
  padding: 4px 8px;
  border: solid 0;
  border-radius: 2px;
  color: black;
}
.bibliotheque li:nth-of-type(even) {
  background-color: #A0A0A0;
}

[hidden] {
  display: none;
}

.login-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
  font-family: "Arial", sans-serif;
}

.login-box {
  z-index: 10;
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  max-width: 400px;
  text-align: center;
}

.logo img {
  width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
}

h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 16px;
  align-self: flex-start;
  color: #ffffff;
}

input {
  padding: 5px;
  border: 1px solid #40362F;
  border-radius: 5px;
  font-size: 16px;
  color: #131313;
  background-color: #F4F4F4;
}
input:focus {
  outline: solid 2px #C7B299;
  border-color: #ffffff;
}

.login-button {
  background-color: #121212;
  color: #ffffff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.login-button:hover {
  background-color: #C8A27C;
}

.login-options {
  margin-top: 1.5rem;
}
.login-options p {
  font-size: 14px;
  color: #ffffff;
}
.login-options .request-access {
  color: #C8A27C;
  text-decoration: none;
  font-weight: bold;
}
.login-options .request-access:hover {
  text-decoration: underline;
}

body {
  z-index: -2;
}

body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(./style_medias/backgrounds/bitmap_hazelnote_1.png);
  opacity: 0.4;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
  mix-blend-mode: color-burn;
  z-index: -1;
}

* {
  box-sizing: border-box;
}

.moove {
  transition: ease-in 300ms;
  transform: translateX(100%);
}

/*# sourceMappingURL=style.css.map */
