/* Combine selectors for global styles */
/*Made by JCrick - JCrick#0001*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Courier New", monospace;
}

#container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cloud {
  position: absolute;
  border-radius: 50%;
  animation: moveCloud 0.5s infinite;
}
@keyframes moveCloud {
  0% { transform: translate(-50%, -50%); }
  100% { transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)); }
}

.header h1 {
  font-size: 66px;
  text-align: center;
  margin: 120px 50px 50px;
  animation: moveUpDown 4s ease infinite;
}

.header h1:hover {
  color: purple;
}

.header p {
  animation: moveUpDown 4s ease infinite;
  text-align: center;
  font-size: 36px;
  margin: 150px;
}

.header p:hover {
  color: purple;
}

.header img {
  margin: 0 auto;
  display: block;
}


.header img.rotate {
  animation: moveUpDown 4s ease infinite;
  -webkit-animation: rotate 5s linear infinite;
  animation: rotate 5s linear infinite;
  height: 150px;
}

@-webkit-keyframes rotate {
  from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

ul {
  list-style-type: none;
}

body {
  background-color: black;
  color: white;
}

/* Combine selectors for header and navigation styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  height: 150px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li:not(:last-child) {
  margin-right: 30px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 18px;
  color: white;
  transition: all 0.3s ease;
}

/* Combine selectors for product styles */
.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-box {
  animation: moveUpDown 4s ease infinite;
  width: calc(33.33% - 20px);
  height: 850px; /* Set a fixed height */
  margin: 60px 60px 60px 60px;
  padding: 30px;
  align-items: center;
  background-color: #4d4855;
  background-image: linear-gradient(147deg, #4d4855 0%, #000000 74%);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
  background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.product-box img {
  width: 350PX;
  height: 350PX;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-content {
   margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-content h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 10px;
}

.product-content button {
  font-size: 26px;
  text-align: center;
}

.package-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Style for package-item buttons */
.package-item {
  border: 2px solid #fff;
  margin: 20px;
  border-radius: 20px;
  color: #fff;
  background-color: #333;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-item:hover {
  background-color: #fff;
  color: #333;
}


.package-item.active {
  background-color: purple;
  border-color: purple;
}

/* Style for selected package-item button */
.package-item.selected {
  background-color: purple;
  color: white;
}

/* Style for notification */
.notification {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: purple;
  color: white;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.notification.show {
  opacity: 1;
}

/* Combine selectors for FAQ styles */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  .faq h2 {
  font-size: 45px;
  align-items: center;
  margin: 50px;
  }
  
  .faq h3 {
  font-size: 40px;
  margin: 55px;
  text-align: center;
  }

.answer {
  display: none;
  font-size: 14px;
  margin: 10px;
  align-items: center;
}

.answer.show {
  display: block;
  margin: 10px;
  font-size: 14px;
  color: gray;
  align-items: center;
}

.question {
  font-size: 18px;
  margin: 20px;
  align-items: center;
}

.question-box {
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
  align-items: center;
  margin: 50px;
  background-image: linear-gradient(147deg, #4d4855 0%, #000000 74%);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
  background-color 0.3s ease;
  width: 850px;
}

.question-box:hover .question-overlay {
  display: block;
}

.made-by {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: gray;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu-toggle.active ~ .mobile-menu {
  display: block;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: black;
}

.mobile-menu ul {
  list-style-type: none;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  display: block;
  padding: 10px;
  font-size: 18px;
  color: white;
}

.animate-left-to-center {
  animation: move-left-to-center 1s ease forwards;
}

@keyframes move-left-to-center {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}


@media (max-width: 1468px) {
  .product-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .nav-menu {
    display: none;
  }
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
  }
  .mobile-menu {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    margin-bottom: 10px;
  }

  .nav-toggle {
    order: 1;
  }

  .nav-menu {
    order: 2;
    width: 100%;
    display: none;
    padding: 20px;
    background-color: #2f2f2f;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .nav-menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .nav-menu a {
    font-size: 20px;
  }

  .nav-menu.active {
    display: flex;
  }
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
