.button-homepage {
  display: inline-block;
  padding: 15px 30px;
  margin: 20px 0;
  font-family: 'Courier New', monospace; 
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.button-homepage:hover {
  color: #222;
  background-color: #fff;
  box-shadow: 0 0 20px #fff, 0 0 40px #fff;
  transform: scale(1.05);
}

/* Fullscreen background canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
    font-family: sans-serif;
    position: relative;
}

.homepage-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

/* Logo size + centering */
#fade-in img {
    width: 75%;
    min-width: 200px;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Fade animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fade-in.delay-1 { animation-delay: 0.5s; }
.fade-in.delay-2 { animation-delay: 1.0s; }
.fade-in.delay-3 { animation-delay: 1.5s; }
.fade-in.delay-4 { animation-delay: 2.0s; }

/* Contact Page Styles */

.contact-page-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.nav-link-contact {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  transition: all 0.25s ease;
  display: flex;
}

.nav-link-contact:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Moved from main css to here to do: fix what evers going on on this button */
.hacker-text {
    /* TODO do this for mobile only */
    text-decoration: none;
    font-family: 'Courier New', monospace; 
}

.submit-button {
    font-family:'Courier New', Courier, monospace
}

/* New Hacker text replacement */

.text-link {
  display: inline-block;
   font-family: monospace;
  font-size: 18px;
  color: hsl(95, 65%, 55%);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
   letter-spacing: 0.69px; 
}

.text-link:hover {
  color: hsl(313, 70%, 65%);
  text-shadow: 0 0 6px currentColor;
  text-decoration: underline;
  letter-spacing: 2px;
    transform: scale(1.1);
    padding: 5px;
  text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

/* hidden by default */
.text-link::before,
.text-link::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}

/* left icon */
.text-link::before {
  content: var(--icon);
  left: -1.5em;
}

/* right icon */
.text-link::after {
  content: var(--icon2);
  right: -1.5em;
}

/* hover animation */
.text-link:hover::before,
.text-link:hover::after {
  opacity: 1;
      text-shadow: none;
  transform: translateY(-50%) scale(1);
}

@media (hover: none) {
  .text-link {
    text-shadow: none;
    text-decoration: none;
    color: hsl(95, 65%, 55%);
  }

  .text-link::before,
  .text-link::after {
    opacity: 1; /* softer, not full blast */
    transform: translateY(-50%) scale(0.9);
  }
}


/* If we want to pixelate the logo we can use this */
/* .pixel-reveal {
  position: relative;
  margin: 0 auto;
    display: flex;
  /* display: inline-block; 
}

.pixel-reveal img {
  display: block;
  width: 100%;
  max-width: 500px;
  
}

.pixel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
} */

