/* Maintenance Mode Banner */
.maintenance-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.maintenance-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.maintenance-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.maintenance-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.maintenance-text strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.maintenance-text span {
  font-size: 13px;
  opacity: 0.95;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .maintenance-banner {
    padding: 12px 15px;
  }
  
  .maintenance-content {
    gap: 10px;
  }
  
  .maintenance-icon {
    width: 20px;
    height: 20px;
  }
  
  .maintenance-text strong {
    font-size: 13px;
  }
  
  .maintenance-text span {
    font-size: 12px;
  }
}

/* Adjust page content when banner is shown */
body.maintenance-active {
  padding-top: 60px;
}

@media (max-width: 768px) {
  body.maintenance-active {
    padding-top: 55px;
  }
}
