/* OVERLAYS.CSS - Styles pour tous les overlays du portfolio */

/* ============================================
   NOTIFICATIONS CONVERSATIONNELLES
   ============================================ */

/* Notification principale */
.artist-notification {
  z-index: 1001;
  background: #e4e2dc;
  border: 1px solid #000;
  padding: 8px;
  font-family: 'UnifontExMono', monospace;
  font-size: 14px;
  color: #666;
  max-width: 250px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: fixed;
}

.notification-text {
  line-height: 1.3;
}

.update-link {
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

.update-link:hover {
  font-weight: bold;
  text-decoration: underline;
}

/* ============================================
   MESSAGE D'ACCUEIL
   ============================================ */

.welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #c0c0c0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-out;
}

.welcome-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.welcome-container {
  background: #e4e2dc;
  border: 2px outset #e4e2dc;
  padding: 40px 60px;
  font-family: 'UnifontExMono', monospace;
  text-align: center;
  max-width: 480px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.welcome-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.welcome-subtitle {
  font-size: 12px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.4;
}

.welcome-status {
  font-size: 11px;
  color: #333;
  margin-top: 20px;
  border-top: 1px solid #999;
  padding-top: 15px;
}

.status-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.status-ok {
  color: #008000;
}

.loading-dots {
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0%, 33% { content: ''; }
  34%, 66% { content: '.'; }
  67%, 100% { content: '..'; }
}

.loading-dots::after {
  content: '...';
  animation: loading 1.5s infinite;
}

/* ============================================
   ADMIN LOGIN MODAL
   ============================================ */

.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(228, 226, 220, 0.8);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
}

.admin-login-modal {
  background: #e4e2dc;
  border: 1px solid #000;
  padding: 20px;
  max-width: 280px;
  width: 90%;
  font-family: 'UnifontExMono', monospace;
  font-size: 12px;
  color: #000000;
  margin-left: 20px;
  margin-top: 20px;
}

.admin-login-title {
  font-size: 12px;
  margin-bottom: 10px;
  color: #333;
  font-family: 'UnifontExMono', monospace;
  -moz-osx-font-smoothing: unset !important;
  font-smooth: never !important;
}

.admin-login-input {
  width: 100%;
  padding: 8px;
  border: 1px inset #e4e2dc;
  background: #ffffff;
  font-family: 'UnifontExMono', monospace;
  font-size: 11px;
  color: #000;
  margin-bottom: 15px;
}

.admin-login-button {
  background: #e4e2dc;
  border: 1px outset #e4e2dc;
  padding: 6px 12px;
  font-family: 'UnifontExMono', monospace;
  font-size: 11px;
  color: #000;
  cursor: pointer;
  margin-right: 8px;
}

.admin-login-button:hover {
  background: #d0cec8;
}

.admin-login-button:active {
  border: 1px inset #e4e2dc;
}

/* ============================================
   ADMIN STATUS INDICATOR
   ============================================ */

.admin-status-indicator {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  background: #e4e2dc !important;
  border: 1px solid #000 !important;
  padding: 8px 12px !important;
  font-family: 'UnifontExMono', monospace !important;
  font-size: 12px !important;
  color: #000 !important;
  z-index: 1000 !important;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
  display: none !important;
}

.admin-status-indicator.visible {
  display: block !important;
}

/* Animation typing pour status admin */
.admin-status-typing {
  font-family: 'UnifontExMono', monospace;
  white-space: nowrap;
}

.admin-status-cursor {
  display: inline-block;
  background-color: #000;
  width: 8px;
  height: 12px;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ============================================
   AUTRES OVERLAYS FUTURS
   ============================================ */

/* Placeholder pour futurs overlays :
   - Confirmation dialogs
   - Progress bars upload
   - Error messages
   - Help tooltips
   - etc.
*/