.event-header {
  height: 50vh !important;
  min-height: 30em !important;
  background-position-y: 50px;
}

.upcoming-events-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/Event\ shots/20190916_213848.jpg");
  height: 50vh !important;
  min-height: 20em !important;
}

/* Card container styling */
.card-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(20px);
  h3 {
    color: #c09019;
  }
}
h1 {
  color: #c09019;
  font-size: xx-large;
}
/* Individual card styling */
.card {
  width: 300px;
  height: 630px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.4s, box-shadow 0.4s;
  background-color: #fff;
  margin: 15px;
  text-align: center;
}
.card-container a {
  border-bottom: none;
}

.card:hover {
  transform: scale(1.05);
}

/* Image styling */
.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Card content styling */
.card-content {
  padding: 15px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card-content p {
  margin: 0px 0;
  font-size: 1rem;
  margin-top: 15px;
  color: #555;
}

.is-checked {
  color: #e6b800 !important;
}

.container {
  display: flex;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 50px 0;
  flex-direction: row;
}

/* Left Section: Images */
.left-section {
  width: 50%;
  position: sticky;
  top: 50px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: white;
}

.left-section img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Right Section: Event Info */
.right-section {
  width: 50%;
  margin-left: 20px;
  margin-top: 50px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2; /* Ensure the right section stays on top of the left */
}

.event-details {
  padding-bottom: 50px;
}
.event-details p {
  font-size: 1.1em;
  margin: 10px 0;
}

.event-details i {
  margin-right: 10px;
}

h2 {
  font-size: 2em;
  color: #c09019;
}

.btn-book {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f08d49;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 20px 0;
  cursor: pointer;
}

hr.separator {
  border: 1px solid lightgrey;
  text-align: center;
  height: 0 !important;
  position: unset;
  margin-bottom: 50px;
  margin-top: 50px;
}
#booking-section {
  text-align: center;
  iframe {
    height: 550px !important;
    min-width: unset !important;
    width: unset !important;
  }
}
/* Share Section */
.share-section {
  text-align: center;
}
.share-section p {
  margin-bottom: 10px;
  text-align: center;
}

.share-section a {
  margin-right: 10px;
  font-size: 1.5em;
  color: #666;
  text-decoration: none;
}

.share-section a:hover {
  color: #333;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack sections on mobile */
    padding: 0; /* Remove padding to fit screen */
  }

  /* Left Section for Mobile */
  .left-section {
    display: none;
  }

  /* Right Section for Mobile */
  .right-section {
    width: 100%;
    margin: 0; /* Remove margin */
    padding: 20px;
    z-index: 1; /* Ensure it stays above other content */
    box-sizing: border-box;
  }

  /* Single image style */
  .single-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto; /* Center the single image */
  }
  .btn {
    text-align: center;
  }
}
.dropdown {
  width: fit-content;
  margin: 0 auto;
  padding-top: 10px;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #c09019;
  border-color: #c09019;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #e6b800;
  border-color: #e6b800;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #c09019;
  border-color: #c09019;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #e6b800;
  border-color: #e6b800;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
  text-align: center !important;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #c09019;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #c09019;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group
  > .input-group-append:last-child
  > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
  > .input-group-append:last-child
  > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-expand-sm .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
  position: absolute;
}

.virtual-banner {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4141; /* Gold color */
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

#virtual-event {
  background: #ff4141;
  width: fit-content;
  padding: 5px 10px;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px;
}

.filter-sidebar-toggle {
  display: none;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  /*display: flex;*/
  align-items: center;
  gap: 8px;
}
.filter-sidebar-toggle:hover {
  color: white;
  background: white;
}
.filter-sidebar-toggle i {
  font-size: 18px;
  margin-right: 6px;
}

.filter-sidebar {
  margin:1px;
  width: 250px;
  padding: 20px;
  background-color: #fff;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  box-sizing: border-box;
}

.filter-sidebar h3 {
  margin-top: 0;
}

.filter-group {
  margin-top: 20px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.filter-group input {
  appearance: checkbox;
}

.content-wrapper {
  height: 100%;
  width: 70%;
  max-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
}

h1 {
  margin-bottom: calc(0.7rem + 0.5vmin);
  font-size: calc(2.3rem + 1vmin);
}

.wrapper-for-arrows {
  position: relative;
  width: 70%;
  border-radius: 1rem;
  box-shadow: rgb(222 167 49 / 40%) 0px 2px 8px 0px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.review-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(2rem + 1vmin);
  width: 100%;
}

#personName {
  margin-bottom: calc(0.7rem + 0.5vmin);
  font-size: calc(1rem + 0.5vmin);
  letter-spacing: calc(0.1rem + 0.1vmin);
  font-weight: bold;
}

#datePublished {
  font-size: calc(0.8rem + 0.3vmin);
  margin-bottom: calc(0.7rem + 0.5vmin);
  color: #c09019;
}

#description {
  font-size: calc(0.8rem + 0.3vmin);
  width: 70%;
  max-width: 40rem;
  text-align: center;
  margin-bottom: calc(1.4rem + 1vmin);
  color: rgb(92, 92, 92);
  line-height: 2rem;
}

.arrow-wrap {
  position: absolute;
  top: 50%;
}

.arrow {
  width: calc(0.6rem + 0.6vmin);
  height: calc(0.6rem + 0.6vmin);
  border: solid #c09019;
  border-width: 0 calc(0.5rem + -0.8vmin) calc(0.5rem + -0.8vmin) 0;
  cursor: pointer;
  transition: transform 0.3s;
}

.arrow:hover {
  transition: 0.3s;
  transform: scale(1.15);
}

.left-arrow-wrap {
  left: 5%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

@media screen and (max-width: 900px) {
  .content-wrapper {
    width: 100%;
  }
}

#event-library {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #fff;
}
#event-library h4{
  color: #040505;
  text-align: center;
}
.filter-sidebar-toggle {
  display: none;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  /*display: flex;*/
  align-items: center;
  gap: 8px;
}
.filter-sidebar-toggle:hover {
  color: white;
  background: white;
}
.filter-sidebar-toggle i {
  font-size: 18px;
  margin-right: 6px;
}

.filter-sidebar {
  margin:1px;
  width: 250px;
  padding: 20px;
  background-color: #fff;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  box-sizing: border-box;
}

.filter-sidebar h3 {
  margin-top: 0;
}

.filter-group {
  margin-top: 20px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.filter-group input {
  appearance: checkbox;
}
.event-container {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  align-items: baseline;
}

.card-container.is-filtering {
  filter: blur(3px);
  opacity: 0.5;
  pointer-events: none;
  transition: all 0.1s ease-in-out;
}
.filter-group-title {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: bold;
  color: #c09019;
}

.filter-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
  top:0;
}
.event-card {
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.event-card.active {
  transform: translateY(0);
  opacity: 1;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.event-card .info {
  padding: 15px;
}

@media (max-width: 768px) {
  #heading-title {
    font-size: 24px;
    color: #c09019;
  }
  #filter-label {
    display: none;
  }
  .filter-sidebar-toggle {
    display: block;
  }

  .filter-sidebar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
  }

  .filter-sidebar.open {
    max-height: 300px; /* make sure this is tall enough */
    opacity: 1;
    padding: 0 20px;
  }
}