
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&display=swap');

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

body, html {
  height: 100%;
  font-family: 'Unbounded', sans-serif;
}

.hero {
  background: url('hero_image.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 10px;
}

.main-title {
  font-size: 3em;
  color: #fff;
  text-shadow: 0 0 10px #ff0040;
  margin-bottom: 0.5em;
}

.tagline {
  font-size: 1.2em;
  color: #ff0040;
  margin-bottom: 2em;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.nav-buttons a {
  background-color: #111;
  color: #ff0040;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border: 2px solid #ff0040;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1em;
}

.nav-buttons a:hover {
  background-color: #ff0040;
  color: #0a0a0a;
}

.forge-icon {
  position: fixed;
  top: 1em;
  right: 2em;
  z-index: 9999;
}

.forge-icon img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  filter: drop-shadow(0 0 6px crimson);
  transition: transform 0.3s ease;
}

.forge-icon img:hover {
  transform: scale(1.1);
}

/* 🔗 Top-Left Menu */
.top-left-menu {
  position: fixed;
  top: 1em;
  left: 2em;
  z-index: 1000;
}

.top-left-menu a {
  color: #ffcc99;
  font-weight: bold;
  margin-right: 1.5em;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  text-shadow: 0 0 4px black;
  transition: color 0.3s ease;
}

.top-left-menu a:hover {
  color: #ffffff;
}

/* 🔥 Aria’s Journal Icon */
.forge-icon {
  position: fixed;
  top: 1em;
  right: 2em;
  z-index: 9999;
}

.forge-icon img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  filter: drop-shadow(0 0 6px crimson);
  transition: transform 0.3s ease;
}

.forge-icon img:hover {
  transform: scale(1.1);
}