/* Barre de navigation supérieure style Wii */

.wii-topnav {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  border-left: none;
  border-right: none;
}

.wii-nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wii-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.wii-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wii-title {
  color: white;
  font-size: 1.5em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wii-clock-container {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  color: white;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  min-width: 200px;
}

.wii-time {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 2px;
}

.wii-date {
  font-size: 0.8em;
  opacity: 0.9;
}

.wii-nav-menu {
  display: flex;
  gap: 20px;
}

.wii-nav-item {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 15px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.wii-nav-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.wii-nav-item.active {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ajustement du contenu principal */
.main-content {
  padding-top: 20px;
}

/* Flèches de navigation */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 120px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.arrow-icon {
  font-size: 40px;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .wii-topnav {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }
  
  .wii-nav-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .wii-clock-container {
    order: -1;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .nav-arrow {
    width: 50px;
    height: 100px;
  }
  
  .arrow-icon {
    font-size: 30px;
  }
}
