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

@font-face {
  font-family: 'Graphik';
  src: url('Graphik/Graphik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Graphik';
  src: url('Graphik/Graphik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

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

/* === HERO (full-screen background) === */
.hero {
  background-image: url('coming-soon-bg.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;
}

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

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

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

.overlay h1 {
  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: 'Graphik', Arial, sans-serif; /* body uses Graphik */
}

/* === BUTTON === */
.btn {
  font-size: 20px;
  padding: 12px 24px;
  background-color: rgba(76, 233, 77, 1);
  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: 'Graphik', 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; } }
