/* === FONT IMPORTS === */
@font-face {
  font-family: 'Changa_One';
  src: url('Changa_One/ChangaOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Changa_One';
  src: url('Changa_One/ChangaOne-Regular.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: 'Changa_One', Arial, sans-serif; }

/* === HERO (full-screen background) === */
.hero {
  background-image: url('maxxi labs coming soon page.png'); /* replace if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* === LOGO === */
.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

/* === OVERLAY CONTENT === */
.overlay {
  background-color: transparent;   /* hide grey overlay */
  color: #ffffff;                   /* updated font color */
  text-align: center;
  max-width: 850px;
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
}

/* === TYPOGRAPHY (DESKTOP DEFAULTS) === */
.overlay h1,
.overlay h2 {
  font-family: 'Changa_One', Arial, sans-serif;  /* headings use burbank */
}

.overlay h1 {
  color: #DCFF00;   /* estimated lime — confirm against brand kit */
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.overlay h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.overlay p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: 'Changa_One', Arial, sans-serif; /* body uses burbank */
}

/* === BUTTON === */
.btn {
  font-size: 20px;
  padding: 12px 24px;
  background-color: #DCFF00;
  color: #303030; /* button text colour */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-family: 'Changa_One', Arial, sans-serif;
}

/* === FOOTER (legal line, pinned to bottom) === */
.footer {
  position: absolute;
  bottom: 13%;
  left: 0;
  right: 0;
  text-align: center;
  color: #EDEDED;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 0 1rem;
  font-family: 'Changa_One', Arial, sans-serif;
}

.btn:hover {
  background-color: rgba(56, 173, 57, 1);
}

/* === MOBILE OVERRIDES === */
@media (max-width: 768px) {
  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .overlay h1 { font-size: 38px; }
  .overlay h2 { font-size: 30px; }
  .overlay p  { font-size: 24px; }
  .btn        { font-size: 20px; padding: 10px 20px; }
}

/* === ANIMATIONS === */
@keyframes fadeIn { to { opacity: 1; } }
