@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  background: #222;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
}

.content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f5deb3;;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #e3c999;
}

.content p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #cfc3aa;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 20px;
}

.countdown span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #f0d6b2;
}

.countdown small {
  font-size: 0.8rem;
  color: #ccc;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.notify-form input {
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  outline: none;
  width: 60%;
}

.notify-form button {
  padding: 10px 20px;
  background: #f0d6b2;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.notify-form button:hover {
  background: #fff;
  color: #333;
}

/* Responsive */
@media (max-width: 600px) {
  .content h1 {
    font-size: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 15px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input, .notify-form button {
    width: 100%;
  }
}
.logo {
  width: 160px;              /* balanced size for desktop */
  height: auto;
  margin-bottom: 25px;
  object-fit: contain;       /* keeps proportions */
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: none;
  filter: none;
  border-radius: 20px;              /* removed invert filter */
}

/* For smaller screens */
@media (max-width: 600px) {
  .logo {
    width: 120px;
    margin-bottom: 20px;
  }
}
.overlay {
  background-color: rgba(0, 0, 0, 0.7);
}
.contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-item {
  color: #d1b27c; /* elegant muted gold */
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7); /* transparent white icon */
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.contact-item:hover {
  color: #f0d6b2;
}

.contact-item:hover i {
  background: rgba(255,255,255,0.25);
}
