@import url('https://fonts.googleapis.com/css2?family=Lora&family=Orbitron&family=Press+Start+2P&family=VT323&display=swap');


*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    line-height: 1.6;
    background: linear-gradient(to right, #ff77ff, #00ffff);
    color: #0a0a23;
    overflow-x: hidden;
    min-height: 100vh;
    scroll-behavior: smooth;
    padding-top: 120px;
    cursor: url(../Cursors/Normal\ Select.cur), auto;
}

h1
{
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
  
h2
{
    font-family: 'VT323', monospace;
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
  
h3
{
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
  
p
{
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}
  
a
{
    font-family: 'Lora', serif;
    font-weight: bold;
    color: #9f009f;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    cursor: url(../Cursors/Link\ Select.cur), pointer;
}

a:hover 
{
    font-weight: bold;
    color: #006868;
}

.top-header /*Entire Top Navbar including the logo and navbar buttons*/
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.3rem 2rem;
    background-color: #ff0f5f;
    border-bottom: 2px solid black;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    transition: top 0.15s ease-in-out;

}

.top-header.hidden
{
    top: -100px;
}
  
.top-header img 
{
    height: 80px;
    width: auto;
}
  
.navbar ul /*Specifically the navbar buttons*/
{
    list-style: none;
    display: flex;
    gap: 3.5rem;
    padding: 0;
    margin: 0;
}
  
.navbar a 
{
    font-family: 'VT323', monospace;
    color: black;
    background-color: #d3d3d3;
    border: 2px solid black;
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 1px 1px 0 black;
    cursor: url(../Cursors/Link\ Select.cur), pointer;
}
  
.navbar a:hover 
{
    background-color: #A9A9A9;
    color: black;
    text-decoration: none;
    box-shadow: 3px 3px 0 black;
}

.navbar a:active 
{
    background-color: #B0B0B0;
    box-shadow: 1px 1px 0 black;
    transform: translate(1px, 1px);
}

.navbar a.active 
{
    background-color: #FF77FF;
    color: white;
    font-weight: bold;
    box-shadow: 3px 3px 0 #9B4DFF;
    transform: scale(1.05);
}

/*Download Buttons (PDF,PSD,etc.)*/
.downBtn
{
    font-family: 'Press Start 2P', cursive;
    background-color: #d3d3d3;
    border: 2px solid black;
    padding: 0.4rem 0.7rem;
    box-shadow: 2px 2px 0 black;
    color: black;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: url(../Cursors/Link\ Select.cur), pointer;
}

hr 
{
    border: none;
    height: 4px;
    background: linear-gradient(to right, #FF77FF, #00FFFF);
    margin: 2rem 0;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
  
footer 
{
    font-family: 'VT323', monospace;
    background-color: #ff0f5f;
    color: #000000;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1.3rem;
    border-top: 2px solid #000000;
    letter-spacing: 1px;
    box-shadow: 0 -3px 8px #930534;
    position: relative;
    z-index: 1000;
}

.footer-content 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.footer-text 
{
  flex: 1 1 auto;
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;

}

.footer-icons 
{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-right: 2rem;
}

.footer-icons a img 
{
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-icons a:hover img 
{
  transform: scale(1.15);
  filter: brightness(1.2);
}


#backToTopBtn 
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 20px;
    background-color: #9B4DFF; /* Electric Purple */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px #FF77FF;
    display: none; /* Hidden by default */
    z-index: 2000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  #backToTopBtn:hover 
  {
    transform: scale(1.1);
    box-shadow: 0 0 20px #FF77FF;
    cursor: url(../Cursors/Link\ Select.cur), pointer;
  }

  /*Overlay background*/
.lightbox-overlay 
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 5, 30, 0.696);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3000;
  backdrop-filter: blur(4px);
}

/*Hide Lightbox when closed*/
.lightbox-overlay.hidden 
{
  display: none;
}

/*Enlarged image*/
.lightbox-image 
{
  max-width: 90%;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 0 20px #9B4DFF, 0 0 40px #00FFFF;
  pointer-events: none;
}

/*Close button*/
.lightbox-close 
{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 0 8px #FF77FF, 0 0 12px #9B4DFF;
  transition: transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus 
{
  transform: scale(1.2);
  outline: none;
  cursor: url(../Cursors/Link\ Select.cur), pointer;
}

/*Navigation buttons container*/
.lightbox-nav 
{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
}

/*Arrow buttons*/
.lightbox-arrow 
{
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #A3D9FF;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-shadow: 0 0 6px #00FFFF;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus 
{
  background-color: #9B4DFF;
  transform: scale(1.1);
  outline: none;
  cursor: url(../Cursors/Link\ Select.cur), pointer;
}

/*Image counter*/
.lightbox-counter 
{
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: #E1B3FF;
  text-shadow: 0 0 4px #FF77FF;
}

/*Floating hamburger button*/
.floating-hamburger 
{
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1001;
  background-color: #9B4DFF;
  border: none;
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0 0 10px #FF77FF, 0 0 20px #00FFFF;
  cursor: url(../Cursors/Link\ Select.cur), pointer;
}

/*Floating menu box*/
.floating-menu 
{
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  background-color: rgba(15, 5, 30, 0.95);
  border: 2px solid #A3D9FF;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  box-shadow: 0 0 10px #FF77FF;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 60vh;
  overflow-y: auto;
}

/*Menu links*/
.floating-menu a 
{
  color: #A3D9FF;
  font-family: 'Lora', serif;
  text-decoration: none;
  font-size: 1.1rem;
}

.floating-menu a:hover 
{
  color: #FF7F50;
  cursor: url(../Cursors/Link\ Select.cur), pointer;
}

/*Hidden by default*/
.floating-menu.hidden 
{
  display: none;
}

.cursor-trail 
{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF77FF 0%, #00FFFF 80%);
  pointer-events: none;
  opacity: 0.8;
  animation: fadeTrail 0.5s ease-out forwards;
  z-index: 9999;
}

@keyframes fadeTrail 
{
  from 
  {
    transform: scale(1);
    opacity: 1;
  }
  to 
  {
    transform: scale(2);
    opacity: 0;
  }
}

#closeNavBtn 
{
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  cursor: pointer;
}


/*Mobile Query <=600px*/
@media screen and (max-width: 600px) 
{
    body 
    {
        padding-top: 350px; /*Reduce space at the top for mobile*/
    }

    .top-header 
    {
        flex-direction: column;
        padding: 1rem;
        transform: translateY(0);
        transition: transform 0.6s ease-in-out;
    }

    .top-header.hidden
    {
        transform: translateY(-100%);
    }

    .navbar ul 
    {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .navbar a 
    {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
    }

    .downBtn 
    {
        font-size: 1rem;
        padding: 0.3rem 0.5rem;
    }

    h1 
    {
        font-size: 2.5rem;
    }

    h2 
    {
        font-size: 1.8rem;
    }

    p 
    {
        font-size: 1rem;
    }

    .lightbox-nav 
    {
      position: static;
      transform: none;
      justify-content: center;
      gap: 2rem;
      margin-top: 1rem;
      width: auto;
    }

    .floating-menu
    {
      max-height: 60vh;
      overflow-y: auto;
    }

    #closeNavBtn 
    {
      display: block;
    }

    .footer-icons 
    {
      margin-left: 5.5rem;
    }
}

/*Tablet Query 601px-1024px*/
@media screen and (max-width: 1024px) and (min-width: 601px) 
{
    body 
    {
        padding-top: 80px; /*Space at the top for tablets*/
    }

    .top-header 
    {
        flex-direction: row;
        padding: 1rem;
    }

    .navbar ul 
    {
        gap: 2rem;
    }

    .navbar a 
    {
        font-size: 1.3rem;
        padding: 0.7rem 1.2rem;
    }

    .downBtn 
    {
        font-size: 1.1rem;
        padding: 0.4rem 0.6rem;
    }

    h1 
    {
        font-size: 2.8rem;
    }

    h2 
    {
        font-size: 2rem;
    }

    p 
    {
        font-size: 1.1rem;
    }
}
  

  
  