/* Index Page Loading Screen Styles */

.index-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0ede7;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.index-loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.index-loading-content {
  text-align: center;
}

.index-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(17, 65, 58, 0.1);
  border-top-color: #11413a;
  border-radius: 50%;
  animation: index-spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes index-spin {
  to {
    transform: rotate(360deg);
  }
}

.index-loading-text {
  font-size: 16px;
  color: #11413a;
  font-weight: 500;
}
