/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: white;
  overflow: hidden;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background: #000;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  height: 100px;
}

/* === HERO SECTIONS === */
.hero,
.astroboy-hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  background: url("hyperspace.jpg") center/cover no-repeat;
  padding: 2rem;
}

.astroboy-hero {
  background: url("AstronautAsynchronautsLogoPosing3.png") bottom/contain no-repeat;
}

/* === OVERLAY === */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* === CONTENT === */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.hero-logo {
  min-width: 70%;
  max-width: 90%;
  margin-bottom: 1.5rem;
  animation: floatPulse 6s ease-in-out infinite;
  will-change: transform;
}

h1 {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #e07400;
  font-size: 4vh;
  letter-spacing: 0.1em;
}

h2 {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 3vh;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  font-family: 'Southeast Sans', sans-serif;
}

/* === CTA === */
.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: #1a1a1a;
  color: white;
  border: 1px solid #e07400;
  border-radius: 0.3rem;
  transition: background 0.2s ease;
  font-family: 'Southeast Sans', sans-serif;
  text-transform: uppercase;
  font-size: 32px;
}

.cta a:hover {
  background: #333;
}

.cta-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* === FORM === */
form {
  margin-top: 2rem;
}

form input[type="email"] {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

form button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #e07400;
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

#thankyou-message {
  display: none;
  margin-top: 1rem;
  color: #77ffe3;
}

/* === EFFECTS === */
@keyframes wildShake {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-3px, 2px) rotate(-1deg); }
  20% { transform: translate(4px, -1px) rotate(2deg); }
  30% { transform: translate(-2px, 3px) rotate(-2deg); }
  40% { transform: translate(1px, -2px) rotate(1deg); }
  50% { transform: translate(-4px, 1px) rotate(1deg); }
  60% { transform: translate(2px, 2px) rotate(-1deg); }
  70% { transform: translate(1px, -3px) rotate(2deg); }
  80% { transform: translate(-3px, 1px) rotate(-1deg); }
  90% { transform: translate(2px, -2px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.shake {
  animation: wildShake 0.4s infinite;
}

@keyframes floatPulse {
  0% { transform: translate(0px, 0px) scale(1); }
  25% { transform: translate(2px, -3px) scale(1.02); }
  50% { transform: translate(-2px, 2px) scale(1.01); }
  75% { transform: translate(3px, 1px) scale(1.03); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* === BOXES === */
.concentric-box {
  background: rgba(0, 0, 0, 0.6);
  border: 6px solid #e07400;
  padding: 0.5rem;
  border-radius: 0.75rem;
  display: inline-block;
  box-shadow: 0 0 25px rgba(224, 116, 0, 0.3);
}

.info-box {
  background: rgba(10, 10, 10, 0);
  border: 6px solid #e07400;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 90vw;
  width: 600px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* === FOOTER === */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  z-index: 5;
  background: #000;
  padding: 0.75rem 1rem;
  border-top: 1px solid #222;
}

.footer a {
  color: #8d8d8d;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* === CUSTOM FONTS === */
@font-face {
  font-family: 'Monoton';
  src: url('Monoton-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Southeast Sans';
  src: url('Southeast-Sans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .info-box {
    padding: 1.5rem;
    width: 90vw;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .cta a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .cta-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.3rem;
  }

  .hero-content {

  }

  header {
    height: 50px;
  }

  header img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .info-box {
    padding: 1rem;
    width: 95vw;
  }

  h1 {
    font-size: 6vw;
  }

  h2 {
    font-size: 4vw;
  }

  p {
    font-size: 0.9rem;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .cta a {
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  .cta-icon {
    width: 24px;
    height: 24px;
  }
  .concentric-box{
      margin-bottom:20px;
  }
  .hero-logo{
  max-width: 70%;
  margin-bottom: 10px;
  }
}
