/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF0E6; /* Match your site's background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
}

.loading-text {
  font-family: 'Press Start 2P', monospace;
  color: #9E3500; /* Match your site's accent color */
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.loading-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
}

.loading-segment {
  width: 16px;
  height: 16px;
  margin: 0 5px;
  background-color: #A2B9A7; /* Light segment color */
  border: 2px solid #657C6A; /* Border color */
  transform: rotate(45deg); /* Make diamond shape */
  transition: background-color 0.2s ease;
}

.loading-segment.active {
  background-color: #9E3500; /* Active segment color */
  box-shadow: 0 0 8px rgba(187, 62, 0, 0.6);
}
