* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  height: 100%;
}

.coming-soon-container {
  background: url('../img/background.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.content {
  background-color: rgba(250, 250, 250, 0.058);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
}

.logo {
  max-width: 150px;
  width: 100%;
  /*margin-bottom: 20px;*/
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  margin: 8px 0;
}
.subheading{
    margin-top:0px !important;
    font-family: 'Alice', serif !important;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ✅ Responsive styles for smaller screens */
@media (max-width: 600px) {
  .content {
    padding: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 120px;
  }
}
