* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background: linear-gradient(135deg, #d8c8b8, #b8a999, #f0e7de);
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  position: relative;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.floating-items {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.item {
  position: absolute;
  top: -200px;
  width: 140px;
  opacity: 0.12;
  animation: fall linear infinite;
  filter: grayscale(10%);
}

.item img {
  width: 100%;
  object-fit: contain;
}

.item:nth-child(1) {
  left: 5%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.item:nth-child(2) {
  left: 20%;
  animation-duration: 18s;
  animation-delay: 3s;
  width: 180px;
}

.item:nth-child(3) {
  left: 40%;
  animation-duration: 15s;
  animation-delay: 1s;
}

.item:nth-child(4) {
  left: 60%;
  animation-duration: 20s;
  animation-delay: 5s;
  width: 170px;
}

.item:nth-child(5) {
  left: 78%;
  animation-duration: 13s;
  animation-delay: 2s;
}

.item:nth-child(6) {
  left: 90%;
  animation-duration: 17s;
  animation-delay: 6s;
  width: 160px;
}

@keyframes fall {
  0% {
    transform: translateY(-200px) rotate(0deg);
  }
  100% {
    transform: translateY(120vh) rotate(12deg);
  }
}

.content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 30px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: #fff7ef;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  max-width: 750px;
  line-height: 1.8;
  color: #fdf5ed;
  margin-bottom: 20px;
  font-weight: 300;
}

.highlight {
  color: #f6dfc4;
  font-weight: 600;
}

.coming {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: -10px;
  background: rgba(255,255,255,0.08);
}

.footer {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .item {
    width: 90px !important;
  }

  .logo {
    width: 180px;
  }

  h1 {
    letter-spacing: 2px;
  }
}