* {
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #222;
  font-family: sans-serif;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}

.hero {
  --border-radius: 12px;
  --transition-duration: 1500ms;
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero__fullsize {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(0 5px 5px #0007);
  transition:
    top var(--transition-duration), 
    left var(--transition-duration), 
    width var(--transition-duration), 
    height var(--transition-duration),
    border-radius var(--transition-duration),
    transform var(--transition-duration),
    opacity var(--transition-duration);
}

.hero__content--hidden {
  visibility: hidden;
  transition:none;
  transform: none;
  opacity: 1;
  z-index: 0;
}

.hero__content--bottom {
  opacity: 0;
  transform: scale(1.5);
  z-index: 1;
}

.hero__content--top {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 2;
}
/* Background Round */
.hero__content--grow .content__text {
    transform: translateX(-70vh);
    transition: none;
}

.hero__content--show-text .content__text {
    transform: translateX(0);
    transition: transform var(--transition-duration) cubic-bezier(0.34, 1.56, 0.64, 1);

}

/* curtain */

.hero__content--show-text::before {
  transform: translateX(0);
  transition: transform 200ms;
}

.hero__content--grow::before {
  transform: translateX(-100%);
  transition: none;
}

/* title */

.content__title{
  font-family: 'Philosopher';
  font-weight: bold;
  font-size: 48px;
  justify-content: center;
}

.Ltext{
  color: #F0B150;
}

.hero__content--show-text .content__title {
  transform: translateY(0);
  transition: transform 300ms;
}

.hero__content--show-text .content__title .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
}

.hero__content--grow .content__title {
  visibility: hidden;
  transform: translateX(-8px);
  transition: none;
}

.hero__content--grow .content__title .word {
  clip-path: inset(0 0 48px);
  transition: none;
}

/* desc */
.content__desc{
  width:90%;
}
.hero__content--show-text .content__desc {
  transform: translateY(0px);
  transition: transform 300ms;
}

.hero__content--show-text .content__desc .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
}

.hero__content--grow .content__desc {
  visibility: hidden;
  transform: translateX(-18px);
  transition: none;
}

.hero__content--grow .content__desc .word {
  clip-path: inset(0 0 18px);
  transition: none;
}

.hero__swiper {
  position: absolute;
  width: 50vw;
  aspect-ratio: 2.5 / 1;
  right: 0px;
  bottom: 50px;
  height:15vw;
  padding: 15px 0;
  z-index: 1;
  user-select: none;
}  
.hero__swiper .bookvenue-btn{
  display: none !important;

}


.swiper {
  --swiper-navigation-size: 20px;
  visibility: hidden;
}

.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-slide-prev,
.swiper-slide-active {
  opacity: 0;
}

.swiper-slide {
  display: flex;
}

.content {
  display: flex;
  position: relative;
  width: 100%;
  filter: drop-shadow(0 5px 5px #0007);
  overflow: hidden;
  z-index: 0;
}

.content--slide {
  position: relative;
  border-radius: var(--border-radius, 0);
}

.content__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
}

.content__desc {
  margin: 0;
}

.content--slide .content__title {
  font-size: 12px;
  margin: auto 0 0;
  padding: 0.35em 0.75em;
  background-color: #0007;
}

.content--slide .content__desc {
  position: absolute;
  left: 0;
  visibility: hidden;
}

.content--hero {
  padding: 100px 50px 50px;
  position: absolute;
  border-radius: 0;
}

.content--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, hsl(49deg 70% 5% / 67%), transparent);
  pointer-events: none;
  z-index: -1;
}

.content--hero .content__title {
  font-size: 42px;
  margin: 0 0 0.2em;
}

/* Black background for text box */
.content--hero .content__text {
  margin: auto -10vh;
  width: 70vh;
  height: max-content;
  background-color: #00000092 ;
  padding: 45px 45px 45px 130px;
  border-top-right-radius:100vh;
  border-bottom-right-radius:100vh;
}

.content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.swiper-button-next {
  right: auto !important;
  left: calc((100% - 25px * 2) / 3.5);
  top: calc(50% - 20px) !important;
  width: 40px;
  height: 40px;
  background-color: #fffb;
  border-radius: 50%;
  color: forestgreen;
}


/* Button Class */
.bookvenue-btn {
    background: #ffa726;
    color: #fff;
    text-decoration: none;
    display: block;
    border: none;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.09);
    margin-top: 15px;
    left: 0;
    width: max-content;
}
.bookvenue-btn:hover {
    background: #fb8c00;
}

/* Button class ends here */

/* animation box for mobiles */
/* For Tablets (iPad, 1024px and below) */
@media (max-width: 1024px) {
    .hero__swiper {
        width: 45vw;
        bottom: 40px;
        height: 35vh;
        padding: 12px 0;
    }
}

/* For Landscape Tablets (768px and below) */
@media (max-width: 768px) {
    .hero__swiper {
        width: 50vh;
        bottom: 30px;
        height: 30vh;
        padding: 10px 0;
    }
}

/* For Mobile Phones (Large - 600px and below) */
@media (max-width: 600px) {
    .hero__swiper {
        width: 60vh;
        bottom: 20px;
        height: 25vh;
        padding: 8px 0;
    }
}

/* For Mobile Phones (Small - 480px and below) */
@media (max-width: 480px) {
    .hero__swiper {
        width: 70vh;
        bottom: 15px;
        height: 20vh;
        padding: 6px 0;
    }
}

/* For Extra Small Devices (375px and below) */
@media (max-width: 375px) {
    .hero__swiper {
        width: 80vh;
        bottom: 10px;
        height: 18vh;
        padding: 4px 0;
    }
}
