
#book-online-section {
  /* background: linear-gradient(85deg,rgba(76, 26, 214, 1) 0%, rgba(230, 67, 126, 1) 31%, rgba(232, 126, 104, 1) 69%, rgba(255, 255, 222, 1) 100%); */
  background-size: cover;
  background-image: url('../assets/images/07_Kind_Fox_May_Main_Book_Online_2.webp');
  min-height: 100vh;
  z-index: 4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.book-online-content-section {
  width: 100%;
  min-height: 800px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  opacity: 0;
  transition: opacity 1s ease-in-out 1s;  
}

.book-online-content-section.active {
  opacity: 1;
}

.book-online-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.book-online-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.book-online-title.active h1 {
  opacity: 1;
}
.book-online-title.active hr {
  width: 80%;
}

.book-online-sub-title {
  color: var(--nav-bg-colour);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.75s;
  margin-bottom: 50px;
}

.book-online-sub-title.active {
  opacity: 1;
}

.book-online-sub-title p {
  margin: 0;
  padding: 2px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'atkinson';
  width: 60vw;
  text-align: center;
}

.book-online-container {
  width: 100%;
  padding: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1366px) {
  .book-online-content-section {
    max-width: 90vw;
    width: 90vw;
  }
}
  /* Mobile Responsive Styles */
@media (max-width: 768px) {
  .book-online-content-section {
    max-width: 90vw;
    width: 90vw;
  }

  .book-online-sub-title {
    margin-bottom: 0px;
  }


  .book-online-sub-title p {
    font-size: 17px;
  }

}