.corporate-events-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/Group\ Photos/20230302_203808.jpg");
  height: 50vh !important;
  min-height: 20em !important;
}

.occasions-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/Group\ Photos/87421332_558428228352004_9163009995667353366_n.jpg");
  height: 50vh !important;
  min-height: 20em !important;
  background-position-y: -275px !important;
}

.kids-events-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/Kids events/20250705_142028.jpg");
    height: 50vh !important;
    min-height: 20em !important;
}

@media screen and (max-width: 1000px) {
  .occasions-header {
    background-position-y: 0px !important;
  }
}

#text-change {
  padding-top: 30px;
  margin: 0 auto;
  text-align: center;
  font-family: "Raleway-ExtraBold" !important;
  h1,
  h2 {
    color: #4a4747;
    font-weight: 200;
    margin: 0.4em 0;
  }
  h1 {
    span {
      color: #c09019;
    }
    font-size: 3.5em;
  }
  h2 {
    color: #000000;
    font-size: 2em;
  }
}
h4 {
  color: #555353;
}
#companies {
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  h1,
  h2,
  h3,
  h4 {
    color: #555353;
  }
  #logos {
    padding: 50px;
    p {
      text-align: center;
    }
    img {
      max-height: 200px;
      display: inline-block;
      vertical-align: middle;
      padding-right: 50px;
    }
  }
}
:root {
  --items-per-page: 4;
}
.logo-carousel {
  width: 60%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel-container {
  white-space: nowrap;
}

.carousel-item {
  display: inline-block;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  img {
    height: 50px;
  }
}

.carousel-cell .pic {
  max-height: 500px !important;
}

@media screen and (max-width: 840px) {
  .carousel-cell .pic {
    max-height: 200px !important;
  }
  .logo-carousel {
    width: 100%;
  }
}

/* Default (desktop) styles */
.content-section {
  display: flex;
  align-items: center;
  padding: 20px;
  opacity: 0; /* Start hidden for animation */
  transition: opacity 1s; /* Transition for fade effect */
  flex-direction: row; /* Default layout for larger screens */
  margin: 20px 0; /* Spacing between sections */
}

.content-left,
.content-right {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.content-left img,
.content-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: rounded corners for images */
}

/* Active class to trigger fade-in */
.fade-in {
  opacity: 1; /* Fully visible */
}

/* Responsive styles */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column; /* Stack items vertically on small screens */
  }

  /* Ensure images appear before text in mobile view */
  .content-left {
    order: 2; /* Move the text after the image */
  }

  .content-right {
    order: 1; /* Move the image before the text */
  }

  .content-left,
  .content-right {
    padding: 10px; /* Adjust padding for smaller screens */
  }
}

h2 {
  text-align: center;
  color: #333;
  font-size: 30px;
}

#msform {
  width: 600px;
  margin: 100px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;

  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input,
#msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  color: #2c3e50;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #27ae60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px;
  margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27ae60;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: black;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: white;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #c09019;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #c09019;
  color: white;
}

#occasion-start {
  padding-top: 30px;
  p {
    padding-top: 20px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }
}

#occations-steps {
  h3 {
    color: #333;
  }
}

.how-it-works {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 0;
}

.step {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.step.left .icon {
  order: 1;
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}

.step.right .icon {
  order: 2;
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-start;
  padding-left: 40px;
}

.step.left .content {
  order: 2;
  flex: 0 0 50%;
  padding-left: 20px;
  text-align: left;
}

.step.right .content {
  order: 1;
  flex: 0 0 50%;
  padding-right: 20px;
  text-align: right;
}

.icon img {
  width: 200px;
  height: auto;
  filter: grayscale(100%) opacity(0.2);
  transition: filter 0.9s ease-in;
}

.content {
  padding: 10px 20px;
  border-radius: 10px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #cccccc;
  color: white;
  text-align: center;
  line-height: 26px;
  margin-bottom: 10px;
  transition: color 0.3s ease-in;
}

.step h3 {
  margin: 0;
  color: #c09019;
}

.step p {
  margin: 10px 0 0;
}

/* Line in the center */
.line {
  position: absolute;
  width: 4px;
  background-color: #e0e0e0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* Active step icon and line color */
.active .icon img {
  filter: invert(81%) sepia(76%) saturate(1134%) hue-rotate(332deg)
    brightness(89%) contrast(86%);
}

.active .step-number {
  background-color: #d5a633;
}

.active .line {
  background-color: #d5a633;
}

/* Responsive for mobile screens */
@media (max-width: 768px) {
  .how-it-works {
    padding: 20px; /* Adjust padding as needed */
  }

  .line {
    display: none; /* Remove the line */
  }

  .step {
    width: 100%; /* Make steps full width */
    text-align: center; /* Center text */
    margin-bottom: 30px; /* Spacing between steps */
  }

  .icon img {
    width: 100px; /* Smaller icon size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image */
    margin: 0 auto; /* Center the icon */
  }

  .content {
    padding: 0; /* Remove padding around content */
  }

  .step-number {
    margin: 10px 0; /* Spacing for the step number */
  }
}

#occasions-pricing {
  .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin: 50px 50px 50px 0px;
    padding: 0px 20px;
  }
  .four {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .pricing-table {
    box-shadow: 0px 0px 18px #ccc;
    text-align: center;
    padding: 30px 0px;
    border-radius: 5px;
    position: relative;
  }
  .pricing-table .head {
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
    transition: all 0.5s ease;
  }
  .pricing-table:hover .head {
    border-bottom: 1px solid #8e2de2;
  }

  .pricing-table .head .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
  }

  .pricing-table .content .price {
    background: linear-gradient(to right, #d5a633 0%, #a07d27 100%);
    width: 100px;
    height: 100px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -50px;
    transition: all 0.5s ease;
  }
  .pricing-table:hover .content .price {
    transform: scale(1.2);
  }
  .pricing-table .content .price h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 4.0em !important;
  }
  .pricing-table .content ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .pricing-table .content ul li {
    margin: 20px 0px;
    font-size: 14px;
    color: #555;
  }

  .pricing-table .content .sign-up {
    background: linear-gradient(to right, #d5a633 0%, #a07d27 100%);
    border-radius: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
  }

  .pricing-table .btn {
    color: #fff;
    padding: 14px 40px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    border: none;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    margin: 2px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 50px;
  }

  .pricing-table .btn:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  }

  .pricing-table .btn.bordered {
    z-index: 50;
    color: #333;
  }
  .pricing-table:hover .btn.bordered {
    color: #fff !important;
  }

  .pricing-table .btn.bordered:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    width: 100%;
    z-index: -1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  .pricing-table:hover .btn.bordered:after {
    opacity: 0;
    transform: scale(0);
  }

  @media screen and (max-width: 768px) {
    .wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
    .four {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media screen and (max-width: 600px) {
    .wrapper {
      grid-template-columns: 1fr;
    }
    .four {
      grid-template-columns: 1fr !important;
    }
  }
}

.pricing-footnote {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.pricing-footnote p {
    font-size: 0.95rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-footnote a {
    color: #d0aa6f;
    font-weight: 600;
    text-decoration: none;
}

.pricing-footnote a:hover {
    text-decoration: underline;
}
