@import url('https://fonts.googleapis.com/css2?family=Bitcount+Ink:wght@100..900&family=DM+Serif+Text:ital@0;1&family=Pixelify+Sans:wght@400..700&family=Special+Gothic+Expanded+One&display=swap');

@font-face {
  font-family: proximanova;
  src: url(/assets/fonts/proximanova_bold.otf);
}

@font-face {
    font-family: promixmanova-light;
    src: url(/assets/fonts/proximanova_light.otf);
}


body {
 /* background: linear-gradient(94deg, #1e1e1e, #484849, #48484b, #1e1e1e);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  */
  background-color: #2c2c2c;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1e1e1e;
  backdrop-filter: blur(12px) saturate(150%);
  font-family: proximanova;

  /* background-image: url(/assets/signal-2025-09-27-193622_002.jpeg); */
  background-position: 20px;
  
  
  


}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full screen height */
}

main {
  flex: 1; /* fill space so footer goes to bottom */
}


footer {
  display: flex;
  justify-content: space-between;
  align-items: center;       /* vertical alignment */
  padding: 1rem 2rem;
  background-color: #1e1e1e;
  color: #fff;
  margin-top: auto; 

}

ul, li {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#intro-text {
  letter-spacing: 6px;
  font-weight: bolder;
  font-size: 1.25rem;
  color: wheat;
  
  
}

.links {
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  color: white;
}

.links::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f7f0f0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.links:hover::before {
  transform: scaleX(1);
}


#footer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  
}

#footer-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

#footer-info .divider {
  height: 1.2rem;
  border-left: 1px solid rgba(255,255,255,0.5);
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  
}

.socials img {
  display: block;
}

h1,h2,h3,h4,h5,h6 {
    color: white;
}


@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  #intro-text {
    letter-spacing: 5px;
    font-size: 1rem;
  }

  footer p {
    display: none;
  }


  #contact {
    padding: 3rem 1rem;
    width: 300px;
    color: #fff;
    text-align: center;
    justify-content: center;
    }


}

