/* Splash Screen Styles */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--warm-beige) 0%,
    var(--muted-beige) 50%,
    var(--dusty-green) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -3px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.splash-enter-btn {
  background: transparent;
  border: 2px solid var(--sage-green);
  color: var(--sage-green);
  padding: 1rem 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 1s;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.splash-enter-btn:hover {
  background: var(--sage-green);
  color: var(--soft-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 154, 91, 0.3);
}

.splash-enter-btn:active {
  transform: translateY(1px);
}

.loading-text {
  color: var(--cool-gray);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  opacity: 0;
  animation: pulse 2s infinite 2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Element Entrance Animations */
.element-float-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.element-float-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for elements */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}
.delay-7 {
  transition-delay: 0.7s;
}
.delay-8 {
  transition-delay: 0.8s;
}
.delay-9 {
  transition-delay: 0.9s;
}
.delay-10 {
  transition-delay: 1s;
}

/* Custom Cursor */
body {
  cursor: none !important; /* Hide default cursor when custom cursor is active */
}

/* Ensure all interactive elements also hide the default cursor */
a,
button,
input,
textarea,
select,
.release-item,
.platform-link,
.social-link,
.email-btn,
.download-btn,
.subscribe-btn,
.nav-links a,
.logo {
  cursor: none !important;
}

.custom-cursor {
  width: 32px;
  height: 32px;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  opacity: 1;
  top: 0;
  left: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--sage-green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--sage-green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.2s ease;
  opacity: 0.5;
}

.custom-cursor.hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.8;
}

.custom-cursor.click .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

/* Audio Visualizer */
.audio-visualizer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 1000;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.audio-visualizer:hover {
  opacity: 1;
}

.visualizer-bar {
  width: 4px;
  height: 20px;
  background: var(--sage-green);
  margin: 0 1px;
  display: inline-block;
  animation: visualizer 1s infinite ease-in-out;
}

.visualizer-bar:nth-child(1) {
  animation-delay: 0s;
}
.visualizer-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.visualizer-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.visualizer-bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes visualizer {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Mute Button */
.mute-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(250, 248, 245, 0.85);
  border: 1px solid rgba(139, 154, 91, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mute-btn:hover {
  transform: scale(1.1);
  background: rgba(139, 154, 91, 0.1);
}

.mute-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--sage-green);
}
