/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #eee;
  background-color: #1b1b1b;
  overflow: hidden;
}

/* Section background */
.coming-soon {
  position: relative;
  height: 100vh;
  background: url('images/16.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20, 20, 20, 0.85);
  z-index: 1;
}

/* Main content */
.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 30px;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

h1 {
  font-family: 'Poppins', serif;
  font-size: 3rem;
  color: #d4af37;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Countdown timer */
.countdown {
  margin: 30px 0 20px;
  font-size: 1.4rem;
  letter-spacing: -0.2px;
  font-weight: 500;
  color: #d4af37;
  text-shadow: 0 0 8px #d4af37;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Contact box */
.contact-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  margin-top: 20px;
}

.contact-box h2 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 0.95rem;
  color: #ddd;
  margin: 5px 0;
}

.contact-box i {
  color: #d4af37;
  margin-right: 8px;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 1s;
}

.fade-in-late {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 2s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  from { text-shadow: 0 0 8px #d4af37; }
  to { text-shadow: 0 0 18px #ffd700; }
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .subtext { font-size: 1rem; }
  .countdown { font-size: 1.1rem; }
  .contact-box { padding: 15px; }
  .logo { width: 110px; }
}
