/* You can optionally add the @import rule here if you prefer it over the <link> in HTML.
   If you use @import here, remove the <link> from index.html that loads fonts.
   @import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:wght@300;400;700&display=swap');
*/

body {
  background-color: #000000; /* Pitch black */
  color: #ffffff; /* White */
  font-family: 'Montserrat', sans-serif; /* UPDATED FONT FOR BODY/DEFAULT */
  font-weight: 400; /* Default regular weight for Montserrat */
  display: flex;
  flex-direction: column; /* Align items vertically */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  text-align: center;
  overflow: hidden; /* To prevent scrollbars if geometric accents go off-screen */
}

.container {
  max-width: 600px;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container {
  margin-bottom: 30px; /* Space below the logo */
}

#brandLogo {
  width: 150px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
}

h1 {
  font-family: 'Audiowide', sans-serif; /* UPDATED FONT FOR H1 */
  font-size: 3.5em; /* Responsive font size */
  /* Audiowide is inherently bold, so font-weight: 700 might not be strictly needed but can be kept */
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: slideInUp 1s ease-out 0.5s backwards; /* Delay start */
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  /* Inherits Montserrat from body */
  font-size: 1.3em; /* Responsive font size */
  font-weight: 300; /* Lighter weight for Montserrat for contrast with H1 */
  line-height: 1.6;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.8s backwards; /* Delay start further */
}

/* Simple futuristic geometric accent - a line */
.geometric-accent {
  width: 80px;
  height: 2px;
  background-color: #ffffff; /* White */
  margin: 0 auto; /* Center the line */
  animation: expandWidth 1.5s ease-out 1.2s backwards;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.8em;
  }
  .tagline {
    font-size: 1.1em;
  }
  #brandLogo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2em;
  }
  .tagline {
    font-size: 1em;
  }
  #brandLogo {
    width: 100px;
  }
}