/*
Theme Name: Vebis
*/

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 40% 30%, rgba(0,0,0,0.7), rgba(0,0,0,0) 70%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.6), rgba(0,0,0,0) 80%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: cover, cover, 80px 80px, 80px 80px;
  pointer-events: none;
  z-index: 0;
}

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

.title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: none;
}

.email {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  opacity: 0.95;
  color: #fff;
}

@media (max-width: 420px) {
  .title { font-size: 2.2rem; }
  .email { font-size: 1rem; }
}

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

.email-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.8rem 1.6rem;
  
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;

  color: #000;
  background: #fff;
  border-radius: 20px;

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

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

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