/* ----------------------------------------------------------------------------
 * Alamo Aerials Coming Soon Styles
 * Background: #404040
 * Footer Bar: #1c1c1c
 * Font: Inter (Google Fonts)
 * ---------------------------------------------------------------------------- */

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #404040;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

.aacs-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 50px); /* leave space for footer */
  text-align: center;
  padding: 0 20px;
}

.aacs-logo {
  max-width: 300px;
  width: 60%;
  height: auto;
  animation: fadeIn 1.5s ease-in-out both;
}

.aacs-title {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  animation: fadeIn 1.8s ease-in-out both;
}

.aacs-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #1c1c1c;
  text-align: center;
  padding: 12px 0;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}