/* Global Reset */
* {
  margin: 0;
  padding: 0;
}


body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000;
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-position: center top; /* centers horizontally, aligns to top */
  background-attachment: fixed;   /* makes it stay fixed on scroll */
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: space-between;
 /* background-size: 700px auto; */ /* ðŸ‘ˆ force width to 700px original 860 */
}

/* Header */
header {
  text-align: center;
  margin-top: 2rem;
}

header h1 {
  font-family: nobel, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  letter-spacing: 2px;
  font-weight: 300;
  font-style: normal;
}

header img.logo {
  display: block;
  margin: 1rem auto 0 auto;
  width: 50px; /* adjust as needed */
  height: auto;
  opacity: 0.5; /* 1 = fully visible, 0 = invisible */
}

/* Main */
main {
  flex: 1;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

.headline {
  font-family: nobel, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/* Socials Footer */
nav {
  text-align: center;
  margin: 2rem 0;
}

nav a {
  font-family: lucida-console-w1g, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ccc;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #7a9f4f;
}

/* Tablet */
@media (max-width: 1024px) {
  header h1 {
    font-size: 3rem;
  }
  .headline {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body {
    background-size: 500px auto; /* scales image to 480px wide */
    background-position: center top;
  }
  header h1 {
    font-size: 2.5rem;
  }
  header img.logo {
    width: 40px;
  }
  .headline {
    font-size: 1rem;
    bottom: 1.5rem;
  }
  nav a {
    margin: 0 0.5rem;
    font-size: 0.85rem;
  }
  
  .social-icon {
  width: 30px;
  height: 30px;
  filter: invert(1); /* makes them white on black */
  margin: 0 0.5rem;
  transition: opacity 0.3s;
}
.social-icon:hover {
  opacity: 0.7;
}

}