/* File: shared/css/front-page.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  height: 100vh;
  background: linear-gradient(135deg, #fff8e1, #f3f3f3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  padding: 2rem;
}

.coming-soon .content {
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon .logo img {
  width: 300px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.coming-soon .headline {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 70px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.8rem;
  color: #666;
}

.subtext {
  font-size: 0.75rem;
  font-weight: 300;
  color: #333;
}
