body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #E0EADC;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
  user-select: none;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
}

.poster {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  box-sizing: border-box;
}

.leavse {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('./image/leaves.png') no-repeat top left;
  background-size: contain;
  z-index: -1;
  top: -50px;
  left: -20px;
  opacity: 0.5;
  /* Animation add */
  animation: floatLeaf 6s ease-in-out infinite;
  -webkit-animation: floatLeaf 6s ease-in-out infinite;
  /* Safari/old browsers */
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(15px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@-webkit-keyframes floatLeaf {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(15px) rotate(3deg);
  }

  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
}

/* Background abstract shapes */
.bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  overflow: hidden;
}

.shape-left {
  background: #136c0e;
  bottom: -120px;
  left: -120px;
}

.shape-right {
  background: #136c0e;
  top: -120px;
  right: -120px;
}

.shape-left-dark {
  background: #0a3d07;
  /* dark shade */
  /* bottom: -160px; left: -160px; */
  bottom: -160px;
  left: -160px;
  opacity: 0.25;
  animation: zoomRound 5s ease-in-out infinite;
}

.shape-right-dark {
  background: #0a3d07;
  /* dark shade */
  top: -160px;
  right: -160px;
  opacity: 0.25;
  animation: zoomRound 5s ease-in-out infinite;
}

/* Zoom animation */
@keyframes breatheGlow {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.35;
  }

  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.shape-left-dark,
.shape-right-dark {
  animation: breatheGlow 7s ease-in-out infinite;
}

@keyframes breatheGlow {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.35;
  }

  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

@-webkit-keyframes breatheGlow {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.2;
  }

  50% {
    -webkit-transform: scale(1.15);
    opacity: 0.35;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0.2;
  }
}

/* Left content */
.content {
  max-width: 60%;
  padding: 5% 5px 5px 0;
  text-align: center;
}

.logo img {
  padding: 3%;
  width: 300px;
}

.coming {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.soon {
  font-size: 120px;
  font-weight: 900;
  margin: 0;
  color: #1d1d1d;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}

.desc {
  font-size: 30px;
  margin: 20px 50px;
  color: #4a3f3f;
  font-family: 'Kelin eator', serif;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  background-color: #2e7d32;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #000;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.btn {
  background: #1d3b2a;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
}

.btn:hover {
  background: #2e5a40;
}

.link {
  margin-top: 25px;
  font-size: 16px;
  color: #2b2b2b;
}

.right-content {
  width: 40%;
}

.right-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-img img {
  padding-top: 8%;
  height: 700px;
  object-fit: cover;
  filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.5));
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .soon {
    font-size: 90px;
  }

  .coming {
    font-size: 35px;
  }

  .desc {
    font-size: 24px;
    margin: 15px 20px;
  }

  .logo img {
    width: 220px;
  }

  .right-img img {
    height: 500px;
  }

  .bg-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .leavse {
    display: block;
    width: 160px;
    height: 160px;
    top: -30px;
    left: -20px;
    opacity: 0.7;
    animation: floatLeaf 6s ease-in-out infinite;
    -webkit-animation: floatLeaf 6s ease-in-out infinite;
  }

  .bg-shape {
    display: none;
  }

  .poster {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .content {
    max-width: 100%;
    padding-top: 17%;
  }

  .logo img {
    width: 200px;
  }

  .soon {
    font-size: 70px;
  }

  .coming {
    font-size: 28px;
  }

  .desc {
    font-size: 20px;
    margin: 10px 15px;
  }

  .right-content {
    width: 100%;
    margin-top: 20px;
  }

  .right-img img {
    height: 350px;
    padding-top: 0;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .bg-shape {
    display: none;
  }

  .soon {
    font-size: 60px;
  }

  .coming {
    font-size: 30px;
  }

  .desc {
    font-size: 20px;
    margin: 10px;
  }

  .logo img {
    width: 200px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .right-img img {
    height: 350px;
  }
}