/*
Theme Name: veq
*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  background: #F4F4F4;
  color: #111;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.title {
  margin: 0;
}

.custom-logo {
  max-width: 280px; 
  height: auto;
}

.custom-logo-link {
  display: inline-block;
}

.email {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #333;
}

@media (max-width: 420px) {
  .custom-logo {
    max-width: 130px;
  }
  .email {
    font-size: 1rem;
  }
}

a:focus, button:focus {
  outline: 3px solid rgba(0,0,0,0.15);
  outline-offset: 3px;
}

.email-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 1.8rem;

  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;

  color: #fff;
  background: #111;
  border-radius: 30px;

  text-decoration: none;
  transition: all 0.25s ease;
}

.email-btn:hover {
  background: #333;
}

.email-btn:focus {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 4px;
}