/* -------------------------- */
/*  1. Booking                */
.booking_container {
  background: var(--secondary);
  height: 300px;
  display: flex;
  align-items: flex-start;
}
.booking_frame {
  color: #fff;
  align-self: flex-start;
}
.booking_frame h3 {
  font-size: clamp(16px, 2vw, 18px);
}
.booking_content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 3%;
}
.booking_content .booking_btn {
  color: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.booking_content .booking_btn a {
  color: var(--bg);
  padding: 13px 25px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 550;
  font-size: 17px;
  margin-right: 10px;
}
.booking_content .booking_btn a:last-child {
  /* background: #b72126; */
  background: var(--bg);
  color: #fff;
}
.booking_anchor {
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
  padding: 13px 25px;
  text-align: center;
  /* background: #ff690e; */
}
.booking_anchor a {
  font-weight: 550;
  color: var(--bg);
  font-size: 17px;
}
.countdown {
  display: flex;
  gap: 10px;
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 140px));
}

/* Countdown animations */
.cd-item {
  transition: all 0.3s ease;
  background-color: #f2f2f2;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  padding: 15px 20px;
  border-radius: 10px;
  color: gray;
  font-weight: 600;
}
.cd-item:nth-child(1) {
  animation-delay: 0.4s;
}
.cd-item:nth-child(2) {
  animation-delay: 0.5s;
}
.cd-item:nth-child(3) {
  animation-delay: 0.6s;
}
.cd-item:nth-child(4) {
  animation-delay: 0.7s;
}
.cd-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.cd-item span {
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--bg);
  font-weight: bolder;
  font-size: 28px;
  margin-right: 5px;
}
.cd-item:hover span {
  transform: scale(1.1);
  color: var(--primary);
}
@media screen and (max-width: 1025px) {
  .booking_container {
    height: auto;
    padding: 4% 0;
    display: flex;
    align-items: flex-end;
  }
  .booking_content .booking_btn {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking_content .booking_btn a {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 1025px) {
  .booking_content {
    width: 100%;
    margin-bottom: 3%;
  }
  .booking_content .booking_btn {
    flex-direction: row;
  }
}
@media screen and (max-width: 530px) {
  .booking_content .booking_btn {
    flex-direction: column;
  }
  .countdown {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin: 10px auto 0;
  }
  .cd-item {
    text-align: center;
  }
  .cd-item span {
    margin-right: 0;
  }
}
@media screen and (max-width: 350px) {
  .anchor_links {
    display: flex;
    flex-direction: column;
  }
  .anchor_links a {
    margin-top: 2px;
    width: 150px;
    text-align: center;
  }
}
/* -------------------------- */
/*  2. Hero Section           */
.hero_text {
  margin: 5% 0;
  justify-content: center;
}
.hero_item {
  display: flex;
  gap: 10px;
}
.lead {
  color: #334155;
  font-size: 1.05rem;
  margin-bottom: 30px;
  font-size: clamp(15px, 2vw, 17px);
}
.anchor_links a {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  background: var(--primary-600);
  border-radius: 4px;
  letter-spacing: 2px;
}
.anchor_links a:last-child {
  background: var(--bg);
  color: #fff;
}
.features,
.mySlides {
  width: 50%;
}
.features h2 {
  margin-bottom: 15px;
}
.includes {
  display: flex;
  flex-direction: column;
  gap: 8px 16px;
  margin-bottom: 5%;
}
.includes li {
  background: #f2f2f2;
  list-style: none;
  padding: 10px 12px;
  color: #000;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
}
.mySlides_video video {
  width: 100%;
  height: auto;
}
.mySlides_video {
  margin: 10% 0 2%;
}
.timeline {
  display: flex;
  flex-direction: column;
  margin-top: 2%;
}
.timeline .day {
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 12px;
}
.timeline h4 {
  margin: 0 0 6px 0;
}
/* Automatic and manual slider */
.about_img {
  display: flex;
  gap: 5px;
}
.mySlides img,
.mySlides video {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.mySlides {
  display: block;
  gap: 5px;
}
.hero_sliders {
  border-radius: 10px;
}
.hero_date {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 1.5% 3%;
  color: #fff;
  display: block;
  z-index: 2;
  margin-bottom: 5px;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 768px) {
  .hero_item {
    flex-direction: column;
  }
  .features,
  .mySlides {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .about_img {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mySlides {
    display: block;
    gap: 5px;
    width: 100%;
  }
  .own_class {
    width: 100%;
  }
}

/* -------------------- */
/* 3. Subscription      */
.sub_btn .btn {
  padding: 0 16px;
  height: 60px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.sub_btn .btn-primary {
  background: var(--primary-600);
  color: #fff;
}
.subscribe_section {
  padding: 5% 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: var(--bg);
  color: var(--bg);
}
.subscribe_content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 30px 16px;
  width: 900px;
  margin: 0 auto;
}
.form input {
  margin-right: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--bg);
  width: 550px;
  height: 50px;
  border: 1px solid grey;
}
/* Subscribe */
.sub_text {
  text-align: center;
}
.subscribe-form .form-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1025px) {
  .subscribe_content {
    width: 95%;
  }
  .form input {
    width: 550px;
    max-width: 100%;
  }
}
@media screen and (max-width: 810px) {
  .subscribe_content {
    width: 90%;
  }
  .form input {
    width: 80vh;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .form-grid {
    display: flex;
    flex-direction: column;
  }
  .form input {
    margin-right: 0;
  }
  .form-grid .btn {
    margin-top: 10px;
  }
}
