/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', monospace;
  overflow: hidden;
}

/* Video Background Container */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Disables interaction with the video */
}

/* Hide native video controls (if they appear) */
#video-bg::-webkit-media-controls {
  display: none !important;
}

#video-bg::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Overlay Content */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Chair Image */
.chair-image {
  width: 300px; /* Adjust size as needed */
  height: auto;
  filter: grayscale(100%); /* Ensures the image is black and white */
}

/* Corner Navigation */
/* Corner Navigation */
.corner-nav a {
  position: absolute;
  font-family: 'Helvetica', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  padding: 1rem;
  pointer-events: auto;
  transition: all 0.3s ease;
  background: none;
  border: none;
  animation: shake 0.5s infinite;
  animation-delay: var(--animation-delay);
  text-shadow: 
    -1px -1px 0 #00ff00,  
     1px -1px 0 #00ff00,
    -1px  1px 0 #00ff00,
     1px  1px 0 #00ff00;
}

.corner-nav a:hover,
.corner-nav a:active {
  color: white;
  animation: glitch 0.5s infinite;
  animation-delay: var(--animation-delay);
}

.top-left {
  top: 20px;
  left: 20px;
  --animation-delay: 0s;
}

.top-right {
  top: 20px;
  right: 20px;
  --animation-delay: 0.25s;
}

.bottom-left {
  bottom: 20px;
  left: 20px;
  --animation-delay: 0.5s;
}

.bottom-right {
  bottom: 20px;
  right: 20px;
  --animation-delay: 0.75s;
}

/* Continuous Shake Animation */
@keyframes shake {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}

/* Glitch Animation for Text (on hover) */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(3px, -3px);
  }
  60% {
    transform: translate(-3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}

.corner-nav a:active {
  transform: scale(1.1); /* Slightly enlarge the link when clicked */
  transition: transform 0.1s ease;
}

/* Minimalist Footer */
.minimalist-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  z-index: 1;
}




/* Scrolling Text Container */
.scrolling-text {
  white-space: nowrap; /* Prevents text from wrapping */
  overflow: hidden; /* Hides overflowing text */
  position: fixed; /* Position relative to the viewport */
  left: 0;
  width: 100vw; /* Full viewport width */
  z-index: 1; /* Ensure text is above other elements */
  color: limegreen; /* Lime green text */
}

/* Scrolling Text Animation */
.scrolling-text span {
  display: inline-block;
  padding-right: 2rem; /* Adds space between "coming soon" phrases */
  animation: scroll-text 10s linear infinite; /* Continuous scroll animation */
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%); /* Starts text at the far left of the page */
  }
  100% {
    transform: translateX(-100%); /* Moves text offscreen to the left */
  }
}

/* Position Scrolling Text Above and Below */
.scrolling-text-top {
  top: 30%; /* Adjust position as needed */
}

.scrolling-text-bottom {
  bottom: 30%; /* Adjust position as needed */
}
