/* From Uiverse.io by SelfMadeSystem */
/*
More comprehensive version at shenanigans.shoghisimon.ca/collection/css-blur-blob-bg/
 */

.container_x::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: hue-rotate(90deg);
  mask: linear-gradient(45deg, #0000, #000);
  animation: rotaty 5s linear infinite;
  transform-origin: center;
}

.container_x {
  overflow: hidden;
  position: absolute;
  background-image: radial-gradient(
    circle at 50% 50%,
    #0000 0,
    #0000 2px,
    hsl(0 0 4%) 2px
  );
  background-size: 8px 8px;
  width: 100%;
  height: 100%;
}

@keyframes thingy {
  0% {
    filter: var(--f) hue-rotate(0deg);
  }
  to {
    filter: var(--f) hue-rotate(1turn);
  }
}

.container_x::before {
  content: "";
  position: absolute;
  inset: -8em;
  z-index: -1;
  --f: blur(7em) brightness(5);
  --c: #09f;
  animation: blobs-1e28bd3d 150s linear infinite, thingy 5s linear infinite;
  background-color: #000;
  background-image: radial-gradient(
      ellipse 66px 50px at 50% 50%,
      #0f0 0%,
      transparent 100%
    ),
    radial-gradient(ellipse 77px 60px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 78px 100px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 73px 96px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 76px 77px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 66px 51px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 90px 57px at 50% 50%, #0f0 0%, transparent 100%),
    radial-gradient(ellipse 89px 93px at 50% 50%, #0f0 0%, transparent 100%);
  background-size: 726px 576px, 1242px 454px, 876px 1160px, 691px 873px,
    914px 550px, 1159px 340px, 1017px 831px, 313px 977px;
  height: 100%;
}

@keyframes blobs-1e28bd3d {
  0% {
    background-position: 271px 478px, 62px 291px, 67px 861px, 553px 413px,
      36px 392px, 1077px 226px, 400px 799px, 7px 264px;
  }

  to {
    background-position: -14975px -2978px, 31112px 11187px, -20081px 8981px,
      11609px -3952px, -12760px 12492px, -9354px 2946px, 9553px 21574px,
      946px 9057px;
  }
}
.hero {
  min-height: 100vh;
}

.hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 60px 20px;
  color: #fff;
}

.hero-content {
  flex: 2;
}

.hero-title {
  font-size: 7rem;
  line-height: 1.05;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 30px 80px 30px 0;
}

.hero-video {
  flex: 1;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust as needed */
  overflow: hidden;
  border-radius: 20px;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.6;
}

/* Container to align buttons side by side */
.gap-8 {
  display: flex;
  gap: 20px; /* Space between buttons */
}

/* Glassmorphism effect */
.glass-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1); /* Translucent white */
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 187, 239, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
  padding: 14px 20px;
}

/* Shimmer effect on hover */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transition: all 0.5s ease-in-out;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Icons */
.glass-card svg {
  transition: transform 0.3s ease-in-out;
}

.glass-card:hover svg {
  transform: scale(1.2);
}
.txt-col1 {
  color: #ca8a04;
}
.txt-col2 {
  color: #059669;
}

.countdown {
  display: flex;
  gap: 30px;
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 30px;
}

/* Each time block */
.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px 15px 5px 15px;
  width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  line-height: 40px;
}

.t-big {
  font-size: 60px;
}

.timeline {
  color: #fff;
}

.timeline h1,
.timeline ul li .content h2 {
  text-shadow: 1px 1px 1px rgba(56, 56, 56, 0.5);
}

.timeline h1 {
  background: #3d9e67;
  z-index: 99;

  padding: 70px 0;
  font-size: 2.5em;
  text-align: center;
}

.timeline ul {
  padding: 50px 0;
  list-style-type: none;
}

.timeline ul li {
  background: #059669;
  z-index: 99;

  position: relative;
  margin: 0 auto;
  width: 5px;
  padding-bottom: 40px;
  margin-top: -30px;
  z-index: 99;
}

.timeline ul li:last-child {
  padding-bottom: 7px;
}

.timeline ul li:before {
  content: "";
  background: #faf8eb;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 3px solid #059669;
  border-radius: 50%;
  z-index: 99;
}

.timeline ul li .hidden {
  opacity: 0;
}

.timeline ul li .content {
  background: rgba(4, 79, 53, 0.8);
  position: relative;
  top: 7px;
  width: 450px;
  padding: 20px;
}

.timeline ul li .content h2 {
  color: #fff;
  padding-bottom: 10px;
  text-align: center;
}

.timeline ul li .content p {
  text-align: center;
}

.timeline ul li .content:before {
  content: "";
  background: #059669;
  position: absolute;
  top: 0px;
  width: 38px;
  height: 5px;
  z-index: 99;
}

.timeline ul li:nth-child(odd) .content {
  left: 50px;
  border-radius: 0 0 20px 20px;
}

.timeline ul li:nth-child(odd) .content:before {
  left: -38px;
}

.timeline ul li:nth-child(even) .content {
  left: calc(-450px - 45px);
  border-radius: 0 0 20px 20px;
}

.timeline ul li:nth-child(even) .content:before {
  right: -38px;
}

@media screen and (max-width: 1020px) {
  .timeline ul li .content {
    width: 41vw;
  }
  .timeline ul li:nth-child(even) .content {
    left: calc(-41vw - 45px);
  }
}

@media screen and (max-width: 700px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li .content {
    width: calc(100vw - 100px);
  }
  .timeline ul li .content h2 {
    text-align: initial;
  }
  .timeline ul li:nth-child(even) .content {
    left: 45px;
    background: linear-gradient(-45deg, #56bc83, #059669);
  }
  .timeline ul li:nth-child(even) .content:before {
    left: -33px;
  }
}

.higher-z {
  z-index: 99 !important;
}

.gallery {
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.title-p {
  margin-top: 30px;
  max-width: 500px;
  font-size: 20px;
}

time {
  color: #facc15;
  display: flex;
  align-items: center; /* Align icon and text */
  justify-content: center;
  gap: 4px; /* Space between icon and text */
  font-size: 18px;
}

.material-symbols-outlined {
  font-size: 1.2em; /* Adjust size to match text */
  vertical-align: middle;
}
p.menu-desc {
  text-transform: none;
  font-size: 18px;
  font-family: sans-serif;
  line-height: 20px;
  letter-spacing: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #fff;
}

.material-symbols-outlined {
  font-size: 20px;
  color: #facc15;
}

.gbg {
  background-color: #00402c;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

.package {
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.package h3 {
  margin-bottom: 10px;
}

.package .price {
  font-size: 1.2em;
  font-weight: bold;
}

.package .remaining {
  color: #bbb;
}

.package ul {
  list-style: none;
  padding: 0;
}

.package button {
  background: #10b981c1;
  border: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  width: 200px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
}

.booking-form,
.summary {
  background: #000;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  margin-top: 20px;
  border: 0.5px #04563c solid;
}

.booking-form input {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}

/* Glassmorphism effect */
.glassy {
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4); /* Translucent white */
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 187, 239, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
  padding: 14px 20px;
}

/* Shimmer effect on hover */
.glassy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transition: all 0.5s ease-in-out;
}

.glassy:hover::before {
  left: 100%;
}

.glassy:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Icons */
.glassy svg {
  transition: transform 0.3s ease-in-out;
}

.glassy:hover svg {
  transform: scale(1.2);
}

.hide {
  display: none;
}

.b-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 10px;
}

.form-input {
  width: 100%;
  border-radius: 1rem;
  border: 0.5px #03402d solid;
  background-color: #ffffff0d;
  padding: 1.8rem 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}

.n-button {
  background-color: #729703;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  font-size: 20px;
  transition: box-shadow 0.3s ease-in-out;
  width: 250px;
}

.n-button:hover {
  box-shadow: 0 0 10px #ccff33;
}
