/* Reset some browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
}

/* Main container */
.container {
  text-align: center;
  position: relative;
}

/* "Coming Soon" text */
.coming-soon {
  font-size: 48px;
  font-weight: bold;
  color: #d4af37; /* Elegant golden color */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  animation: fadeIn 2s ease-in-out;
}

/* Image styling */
.main-image {
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

/* Social icons */
.social-icons a {
  color: #999;
  font-size: 30px;
  margin: 0 15px;
  transition: color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #d4af37; /* Golden hover */
  transform: scale(1.2);
}

/* Fade-in animation for the title */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .coming-soon {
    font-size: 32px;
  }
  .main-image {
    width: 100%;
  }
  .social-icons a {
    font-size: 26px;
    margin: 0 10px;
  }
}
