
.text-me-one-regular {
  font-family: "Text Me One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*h1{
    color: white;
     text-align: center;
     font-family: "Text Me One", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 18px;
   margin-top: 10;
}
   */

   h1 {
    color: white;
    background-color: black;
    text-align: center;
    font-family: "Text Me One", sans-serif;
    font-size: 20px;
    margin-top: 10;

    text-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
    animation: whiteGlowPulse 2.5s ease-in-out infinite alternate;
}

/* soft breathing glow for the title */
@keyframes whiteGlowPulse {
  0%   { text-shadow: 0 0 6px #ffffff, 0 0 12px #ffffff; opacity: 0.9; }
  50%  { text-shadow: 0 0 18px #ffffff, 0 0 36px #ffffff; opacity: 1; }
  100% { text-shadow: 0 0 6px #ffffff, 0 0 12px #ffffff; opacity: 0.9; }
}

h2 {
    color: white;
    text-align: center;
}


.navbar ul{
     list-style: none;
    padding: 0;
    margin: 0;
    display: flex;                   /* make it a flex container */
    justify-content: space-evenly;   /* space items evenly across the whole width */
    width: 100%;

}

.navbar li {
    flex: 1;               /* each item takes equal width across the navbar */
    text-align: center;    /* center text inside */
}




body{
    background-color: black;
    margin: 0;
}

p{
    color: white;
    text-align: center;
}

/* ===== NAVBAR: Electric Cyan Neon (bar pulse + text pulse + hover flicker) ===== */

.navbar {
    background-color: black;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff;
    animation: neonBarPulse 2.6s ease-in-out infinite alternate;
     position: sticky;
  top: 0;
  z-index: 1000;              /* stay above content */
  background-color: black;    /* ensure solid backdrop while stuck */
  /* your existing neon styles stay */
  margin-bottom: 60px;         /* keeps space below the bar */
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.navbar li { flex: 1; }

.navbar a {
    color: #00ffff;
    text-decoration: none;
   
    display: block;
    text-align: center;
    text-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
    animation: neonTextPulse 2.4s ease-in-out infinite alternate;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
     padding: 20px 0;          /* give it taller height */
    line-height: 1;            /* keeps text centered */
}

.navbar a:hover {
    
    background-color: rgba(0, 255, 255, 0.12);
    box-shadow: inset 0 -2px 0 #00ffff, 0 0 22px #00ffff; /* extends glow to bottom edge */
    /* quick “wink” flicker on hover */
    animation: flickerHover 0.4s linear 1,
               neonTextPulse 2.4s ease-in-out 0.4s infinite alternate;
}

/* ===== Keyframes ===== */

@keyframes neonBarPulse {
  0%   { box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; }
  100% { box-shadow: 0 0 26px #00ffff, 0 0 42px #00ffff; }
}

@keyframes neonTextPulse {
  0%   { text-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff; opacity: 0.9; }
  50%  { text-shadow: 0 0 16px #00ffff, 0 0 32px #00ffff; opacity: 1; }
  100% { text-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff; opacity: 0.86; }
}

@keyframes flickerHover {
  0%   { opacity: 1;   text-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff; }
  25%  { opacity: 0.4; text-shadow: 0 0 2px #00ffff; }
  50%  { opacity: 1;   text-shadow: 0 0 18px #00ffff, 0 0 36px #00ffff; }
  75%  { opacity: 0.6; text-shadow: 0 0 4px #00ffff; }
  100% { opacity: 1;   text-shadow: 0 0 14px #00ffff, 0 0 28px #00ffff; }
}


#mainpage {
  /* frame + glow */
  border: 3px solid #00ffff;          
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
  animation: neonBarPulse 2.6s ease-in-out infinite alternate;

  /* spacing */
  width: 80%;
  margin: 120px auto 60px;  /*  increased from 32px to 80px to push it down */
  padding: 20px;

  /* layout */
  display: flex;
  align-items: center;
  gap: 24px;
}


#mainpage img {
  width: 35%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: 8px;
}

#mainpage .main-text {
  flex: 1;
}

#mainpage .main-text h2 {
  margin: 0 0 12px;
  text-align: left;                    /* switch from global center to left */
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
}

#mainpage .main-text p {
  margin: 0;
  text-align: left;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
}

/* Mobile: stack nicely */
@media (max-width: 768px) {
  #mainpage {
    flex-direction: column;
    text-align: center;
  }
  #mainpage .main-text h2,
  #mainpage .main-text p {
    text-align: center;
  }
  #mainpage img {
    width: 100%;
    max-width: 100%;
  }
}

footer{
    color: white;
}

#mainpage1 {
  /* frame + glow */
  border: 3px solid hsl(270, 94%, 51%);          
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px hsl(270, 94%, 51%), 0 0 30px hsl(274, 90%, 53%);
animation: purpleBarPulse 2.6s ease-in-out infinite alternate;

  /* spacing */
  width: 80%;
  margin: 120px auto 60px;  /*  increased from 32px to 80px to push it down */
  padding: 20px;

  /* layout */
  display: flex;
  align-items: center;
  gap: 24px;
   flex-direction: row-reverse; /* 👈 swaps order: image on right, text on left */
}

@keyframes purpleBarPulse {
  0%   { box-shadow: 0 0 10px #bf00ff, 0 0 20px #bf00ff; }
  100% { box-shadow: 0 0 26px #bf00ff, 0 0 42px #bf00ff; }
}

#mainpage1 img {
  width: 35%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: 8px;
}

#mainpage1 .main-text {
  flex: 1;
}

#mainpage1 .main-text h2 {
  margin: 0 0 12px;
  text-align: left;                    /* switch from global center to left */
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
}

#mainpage1 .main-text p {
  margin: 0;
  text-align: left;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
}

/* Mobile: stack nicely */
@media (max-width: 768px) {
  #mainpage1 {
    flex-direction: column;
    text-align: center;
  }
  #mainpage1 .main-text h2,
  #mainpage1 .main-text p {
    text-align: center;
  }
  #mainpage1 img {
    width: 100%;
    max-width: 100%;
  }
}


#mainpage2 {
  /* frame + glow */
  border: 3px solid hsl(0, 95%, 49%);          
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px hsl(0, 95%, 49%), 0 0 30px hsl(0, 95%, 49%);
  animation: redBarPulse 2.6s ease-in-out infinite alternate;

  /* spacing */
  width: 80%;
  margin: 120px auto 60px;  /*  increased from 32px to 80px to push it down */
  padding: 20px;

  /* layout */
  display: flex;
  align-items: center;
  gap: 24px;
}

@keyframes redBarPulse {
  0%   { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
  100% { box-shadow: 0 0 26px #ff0000, 0 0 42px #ff0000; }
}

#mainpage2 img {
  width: 35%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: 8px;
}

#mainpage2 .main-text {
  flex: 1;
}

#mainpage2 .main-text h2 {
  margin: 0 0 12px;
  text-align: left;                    /* switch from global center to left */
  font-family: "Text Me One", sans-serif;
  font-size: 40px;
}

#mainpage2 .main-text p {
  margin: 0;
  text-align: left;
  font-family: "Text Me One", sans-serif;
  font-size: 20px;
}

/* Mobile: stack nicely */
@media (max-width: 768px) {
  #mainpage2 {
    flex-direction: column;
    text-align: center;
  }
  #mainpage2 .main-text h2,
  #mainpage2 .main-text p {
    text-align: center;
  }
  #mainpage2 img {
    width: 100%;
    max-width: 100%;
  }}



  /* Fullscreen loading overlay */
#access-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: #00ff00; /* classic terminal green */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  font-size: 2rem;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* fade-out when hidden */
#access-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.access-text::after {
  content: "_";               /* cursor character */
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
