/* Splash Screen Styles - Ny minimalistisk stil */

.splash-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FEFEFE;
  position: relative;
  overflow: hidden;
}

.splash-content {
  text-align: center;
  z-index: 2;
  animation: fadeInScale 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

/* Logo sirkel */
.splash-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-text-primary);
  animation: fadeInScale 0.8s ease-out;
}

/* Tekstlogo - Ny elegant serif */
.splash-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: -1px;
  margin: 0;
  color: var(--color-text-primary);
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gentleGlow {
  0%, 100% {
    filter: drop-shadow(0 4px 20px rgba(69, 183, 209, 0.3));
  }
  50% {
    filter: drop-shadow(0 8px 30px rgba(255, 184, 77, 0.4));
  }
}

/* Responsive */
@media (min-width: 768px) {
  .splash-title {
    letter-spacing: 3px;
  }
}

/* Accessibility - respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .splash-content,
  .splash-title {
    animation: none !important;
  }

  .splash-content {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .splash-title {
    background-position: 0% 50%;
    filter: drop-shadow(0 4px 20px rgba(69, 183, 209, 0.3));
  }
}
