/* Fullscreen Dark Background */
.coming-soon-alt {
  position: relative;
  height: 100vh;
  background: url('../media/gallery-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.coming-soon-alt .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.coming-soon-alt h1 {
  font-size: 50px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.coming-soon-alt p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

/* Glowing Tag */
.coming-tag {
  display: inline-block;
  padding: 12px 25px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: #1abc9c;
  border-radius: 8px;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px #1abc9c, 0 0 20px #1abc9c;
  }
  to {
    box-shadow: 0 0 20px #16f7c9, 0 0 40px #16f7c9;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-alt h1 {
    font-size: 34px;
  }

  .coming-soon-alt p {
    font-size: 18px;
  }

  .coming-tag {
    font-size: 18px;
    padding: 10px 20px;
  }
}
