/* GLOBAL */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: url("Image Folder/Backgrounds/Galaxy_Starshower.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.layout-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 4rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
}

.hero {
  text-align: center;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
  min-height: 3.5rem;
  font-family: monospace;
}

.subtitle {
  font-size: 1.25rem;
  color: #ffffff;
}

.solarity-link {
  text-align: center;
  font-family: monospace;
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 600px;
}

.solarity-link a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.solarity-link a:hover {
  color: #ffffff;
}

.cursor {
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from, to { opacity: 0 }
  50% { opacity: 1 }
}

/* ==================== UNIVERSAL SHIFT ==================== */

.shift-y {
  transform: translateY(var(--shift-y, 0px));
}

.shift-x {
  transform: translateX(var(--shift-x, 0px));
}

.shift-xy {
  transform: translate(var(--shift-x, 0px), var(--shift-y, 0px));
}

/* ==================== SOCIAL MEDIA ==================== */
.social-links { 
  display: flex;
  gap: 2rem;
  z-index: 99;
  justify-content: center;
}

.social-links a img {
  height: 32px;
  width: auto;
  max-width: 48px;
  max-height: 48px;
  transition: opacity 0.3s ease;
}

.social-links a:hover img {
  opacity: 0.7;
}

/* ==================== FOOTER ==================== */

.footer {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin: 2rem auto 1rem auto;
  opacity: 0.6;
}

/* ==================== NO SCROLLING ==================== */

html, body {
  overflow: hidden;
}
