* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1529634893881-9150a7c12b41') center/cover no-repeat;
  position: relative;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logo {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f6c453;
}

.tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}

.coming-soon {
  margin: 30px auto;
  padding: 12px 30px;
  border: 2px solid #f6c453;
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: #f6c453;
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  margin: 20px 0;
  opacity: 0.9;
}

.contact-box {
  margin: 25px 0;
  font-size: 1rem;
}

.contact-box a {
  color: #f6c453;
  text-decoration: none;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f6c453;
  color: #000;
  border-color: #f6c453;
}

footer {
  margin-top: 40px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 600px) {
  .logo {
    font-size: 2.6rem;
  }

  .tagline {
    font-size: 1rem;
  }
}
