/* ================== 4. Hero Section ================== */
/* ====== Hero Section ====== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(-45deg, #123E2C, #FCFBC5, #123E2C, #FCFBC5);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #123E2C;
  padding: 80px 10%;
  overflow: hidden;
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* LOGO */
.hero .logo {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pixel {
  font-size: 3.5em;
  letter-spacing: 6px;
  color: #FCFBC5;
  text-shadow: 0 0 10px rgba(253,244,236,0.6);
  margin-bottom: -20px;
  font-weight: bold;
}
.infinity {
  font-size: 6em;
  font-weight: bold;
  background: linear-gradient(270deg, #FCFBC5, #123E2C, #FCFBC5);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;  
  -webkit-text-fill-color: transparent;
  color: transparent;   
  animation: flow 4s linear infinite;
  margin-top: 0;
}
@keyframes flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Content */
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #123E2C;
}
.hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #123E2C;
  font-size: 1.5em;
}
