/* ============================== */
/*       STYLES GÉNÉRAUX        */
/* ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  background-size: cover;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* ============================== */
/*       HEADER LARGE ÉCRANS     */
/* ============================== */
header {
  position: relative;
  width: 100%;
  min-height: 120px; /* Augmentation de la hauteur pour les grands écrans */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em;
  background: url("/Img/nuit7.png") no-repeat center;
  background-size: cover;
}

/* ============================== */
/*       NAVIGATION LARGE        */
/* ============================== */
nav {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px; /* Espacement accru */
}

nav button {
  padding: 15px 20px;
  font-size: 14px;
}

/* ============================== */
/*       LIVRES & MENU BURGER    */
/* ============================== */
.books-container {
  gap: 30px; /* Plus d'espace entre les éléments */
}

.book-logo {
  width: 50px; /* Icônes plus grandes */
}

.menu-button {
  width: 60px;
  height: 60px;
  font-size: 14px;
}

/* ============================== */
/*         MAP LARGE ÉCRANS      */
/* ============================== */
.map-container {
  height: 90vh; /* Utilisation de plus d'espace vertical */
}

.main-window {
  min-height: 130vh;
  background-size: cover;
}

/* ============================== */
/*         FOOTER LARGE ÉCRANS   */
/* ============================== */
footer {
  height: 60px;
  padding: 15px 0;
}

/* ============================== */
/*        MEDIA QUERIES          */
/* ============================== */

/* Pour les écrans très larges (plus de 1600px) */
@media screen and (min-width: 1600px) {
  header {
    min-height: 140px;
    padding: 3em;
  }

  nav {
    gap: 40px;
  }

  nav button {
    padding: 18px 24px;
    font-size: 16px;
  }

  .books-container {
    gap: 40px;
  }

  .book-logo {
    width: 60px;
  }

  .menu-button {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }

  .map-container {
    height: 95vh;
  }

  footer {
    height: 70px;
  }
}
