body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: url(./images/Background.png);
}
.reveal_curtain {
  display: flex;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 1001;
}
.reveal_curtain img {
  width: 50%;
  height: 120vh;
  object-fit: cover;
  will-change: transform;
  /* transition: transform 6s ease; */
}

.front {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}
.curtain-top {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1003;
}
.cl,
.cr {
  position: absolute;
  height: 100vh;
  z-index: 1002;
  bottom: -50px;
}
.cl {
  left: -50px;
}
.cr {
  right: -50px;
}
.rop {
  position: absolute;
  top: -50px;
  right: 80px;
  width: 100px;
  height: auto;
  z-index: 1004;
  cursor: pointer;
  transition: all 0.5s;
}
.hidden-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: black;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hidden-content {
  display: block; /* Keep it block but hidden initially */
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
  font-size: 1.5rem;
  padding: 20px;
  border-radius: 10px;
  z-index: 1005;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.8s ease-in-out; /* Smooth fade-in */
}

.reveal-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #009211;
  border: none;
  color: white;
  box-shadow: 1px;
  cursor: pointer;
  border-radius: 50px;
}

.flower {
  position: absolute;
  top: -50px;
  width: 30px;
  height: 30px;
  background-image: url("images/flower.png"); /* Change to your flower image */
  background-size: cover;
  opacity: 0.8;
  animation: fall linear 2.5s forwards;
}
#videoSec {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  object-position: bottom;
}
.Btn {
  position: fixed;
  top: 35%;
  left: 75%;
  transform: translateX(-50%);
  z-index: 10000;
  width: 140px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #77530a,
    #ffd277,
    #77530a,
    #77530a,
    #ffd277,
    #77530a
  );
  background-size: 250%;
  background-position: left;
  color: #ffd277;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 1s;
  overflow: hidden;
}

.Btn::before {
  position: absolute;
  content: "GO LIVE";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  height: 90%;
  border-radius: 8px;
  transition-duration: 1s;
  background-color: #ff7a55;
  background-size: 200%;
}

.Btn:hover {
  background-position: right;
  transition-duration: 1s;
}

.Btn:hover::before {
  background-position: right;
  transition-duration: 1s;
}

.Btn:active {
  transform: scale(0.95);
}
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
.hidden-content p {
  margin: 10px 0;
}
