/* Define custom fonts */
@font-face {
  font-family: 'Lato-Light';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* General body styles */
    body {
      font-family: 'Lato-Light', sans-serif;
      background-color: black;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      text-align: center;
    }

    /* Brandmark and Brand Name */
    .brandmark {
      max-width: 125px; /* Adjust size as needed */
      margin-bottom: 40px;
    }

     .brand-name {
      max-width: 425px; /* Adjust size as needed */
      margin-bottom: 40px;
    }


/* Tagline */
.tagline {
  font-family: 'Lato-Light', serif;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Coming Soon Text */
.coming-soon {
  font-family: 'Courier New', arial;
  font-size: 1.3rem;
  margin-top: 80px;
  color: white;
}

/* Footer Links */
.links {
  font-family: 'Arial', sans-serif;
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 30px;
  font-size: 16px;
}


.links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}


/* ========================= */
/* Responsive Design         */
/* ========================= */

/* For small screens (less than 600px) */
@media (max-width: 600px) {
  .brandmark {
    max-width: 80px; /* Smaller brandmark */
  }

  .brand-name {
    max-width: 250px; /* Smaller brand name */
  }

  .tagline {
    font-size: 1.2rem; /* Smaller tagline */
    margin-bottom: 30px;
  }

  .coming-soon {
    font-size: 1.3rem; /* Adjust Coming Soon text size */
  }

  .links {
    bottom: 25px; /* Adjust footer spacing */
    gap: 25px;
    font-size: 12px; /* Smaller font for links */
  }
}

/* For medium screens (600px to 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
  .brandmark {
    max-width: 100px;
  }

  .brand-name {
    max-width: 350px;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .coming-soon {
    font-size: 1.6rem;
  }

  .links {
    bottom: 30px;
    gap: 30px;
    font-size: 14px;
  }
}
