@font-face {
  font-family: 'AwayWithYaFont';
  src: url('awaywithya-font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  font-family: 'AwayWithYaFont', sans-serif;
  color: #1A8C8C;
}

.container {
  text-align: center;
  padding: 60px 20px;
  flex: 1;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

.brand-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #1A8C8C;
}

.logo {
  width: 100%;
  max-width: 1200px;
  height: auto;
  image-rendering: crisp-edges;
}

.logo:hover {
  transform: translateY(-6px);
}

.tagline {
  font-size: 1.4rem;
  margin-top: 10px;
  color: #1A8C8C;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  color: #1A8C8C;
  opacity: 0;
  animation: fadeIn 3s ease-in forwards;
  animation-delay: 1.5s;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .brand-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .logo {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .tagline {
    font-size: 1.1rem;
    margin-top: 8px;
  }

  .footer {
    font-size: 0.9rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .logo {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .tagline {
    font-size: 1rem;
  }

  .footer {
    font-size: 0.8rem;
  }
}
