
body {
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background-color: #000000;
  padding: 0;
}
nav{
   
    background-image:linear-gradient(to bottom right, rgb(35, 0, 65), rgb(17, 0, 14));
    height: 3em;
    display: flex;
    align-items: center;
    padding-inline: 15px;
    position: sticky;
    z-index: 5;

}
.logo img{
    height: 2.5em;
    width: auto;
}
.ham{
    width: fit-content;
    height: fit-content;
    margin-left: 50%;

}
/* From Uiverse.io by prakashdc */ 
.hamburger {
    cursor: pointer;
  }
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: rgb(162, 0, 255);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }



/* Menu container */
.menu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 60px;
  right: 20px;
  background: linear-gradient(135deg, #4e0e87, #2a0433);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  transform-origin: top center; /* Set origin for reveal animation */
  z-index: 1000;
  opacity: 0;
}

/* Show animation */
.menu.show {
  display: block;
  animation: wipeDown 0.4s ease forwards;
}

/* Hide animation */
.menu.hide {
  animation: wipeUp 0.4s ease forwards;
}

/* Menu items */
.menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin: 12px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
}

/* Hover effect for menu items */
.menu a:hover {
  color: #dab6fc;
}

/* Keyframes for wipe-down reveal effect */
@keyframes wipeDown {
  0% {
      transform: scaleY(0);
      opacity: 0;
  }
  100% {
      transform: scaleY(1);
      opacity: 1;
  }
}

/* Keyframes for wipe-up hide effect */
@keyframes wipeUp {
  0% {
      transform: scaleY(1);
      opacity: 1;
  }
  100% {
      transform: scaleY(0);
      opacity: 0;
  }
}




.animate {
  position: relative; /* Allows top/left adjustments */
}

.pyramid-loader {
  position: relative; /* Maintains its own positioning */
  width: 300px;
  height: 300px;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
 top: -100px; 
   /*Move the pyramid upwards */
}

  .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: spin 4s linear infinite;
  }
  
  @keyframes spin {
    100% {
      transform: rotateY(360deg);
    }
  }
  
  
  .pyramid-loader .wrapper .side {
    width: 70px;
    height: 70px;
  /* you can choose any gradient or color you want */
    /* background: radial-gradient( #2F2585 10%, #F028FD 70%, #2BDEAC 120%); */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  
  .pyramid-loader .wrapper .side1 {
    transform: rotateZ(-30deg) rotateY(90deg);
    background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
  }
  
  .pyramid-loader .wrapper .side2 {
    transform: rotateZ(30deg) rotateY(90deg);
    background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
  }
  
  .pyramid-loader .wrapper .side3 {
    transform: rotateX(30deg);
    background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
  }
  
  .pyramid-loader .wrapper .side4 {
    transform: rotateX(-30deg);
    background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
  }
  
  .pyramid-loader .wrapper .shadow {
    width: 60px;
    height: 60px;
    background: #8B5AD5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotateX(90deg) translateZ(-40px);
    filter: blur(12px);
  }


  .ads {
    width: 100%; /* Full width */
    height: 100px; /* Height of the ad section */
    overflow: hidden; /* Hide overflowing content */
    position: relative;
    z-index: 800;
}

.ads-container {
    display: flex; /* Arrange images in a row */
    gap: 10px; /* Space between images */
    animation: scrollAds 15s linear infinite; /* Smooth scrolling effect */
}

.ads img {
    height: 80px; /* Smaller image size */
    width: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners */
    transition: transform 0.3s ease;
}
.ads img:hover {
  transform: scale(1.1);
}
@keyframes scrollAds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll half the length (one full set of images) */
    }
}



  .main {
    width: 100vw;
    height: 80vh;
    background-image: url('./src/Bg.png');
    background-size: cover;
    background-position: center;
}

.topshadow {
    background: linear-gradient(to bottom, #170024, rgba(255, 255, 255, 0));
    width: 100vw;
    height: 50vh;
}
.bottomshadow {
    background: linear-gradient(to bottom,rgba(255, 255, 255, 0),#250432 );
    width: 100vw;
    height: 50vh;
    padding-top: 30vh;
}
.titlecard{
    width: 100vw;
    height: 80vh;
    z-index: 1;
    position: absolute;
    top: 3em;
    background-color: rgba(55, 0, 66, 0.418);
    backdrop-filter: blur(5px);
}
.titleTop{
    padding-top: 5em;
    display: flex;
    justify-content: center;
}
.titleTop img{
 width: 90vw;
 height: auto;
}
#monkeyStand {
    z-index: 2;
    position: absolute;
    width: 30vw;
    max-width: 150px;
}
.titleTopText{
    width: 95vw;
    height: fit-content;
    color: aliceblue;
    font-family: monospace;
    padding-left: 1em;
}

.pushable {
    position: relative;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    outline-offset: 3px;
    outline-color: deeppink;
    transition: filter 250ms;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    width: 25%; 
    max-width: 120px; 
    min-width: 60px; 
    margin-left: 20vw;
    margin-top: 1em;
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: hsl(226, 25%, 69%);
    border-radius: 5px;
    filter: blur(2px);
    will-change: transform;
    transform: translateY(1px);
    transition: transform 500ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    background: linear-gradient(
      to right,
      hsl(248, 39%, 39%) 0%,
      hsl(248, 39%, 49%) 8%,
      hsl(248, 39%, 39%) 92%,
      hsl(248, 39%, 29%) 100%
    );
}

.front {
    display: block;
    position: relative;
    border-radius: 5px;
    background: hsl(271, 58%, 43%);
    padding: 8px 16px; /* Smaller padding */
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem; /* Smaller font size */
    transform: translateY(-3px);
    transition: transform 500ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
    filter: brightness(110%);
}

.pushable:hover .front {
    transform: translateY(-4px);
    transition: transform 200ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
    transform: translateY(-1px);
    transition: transform 34ms;
}

.pushable:hover .shadow {
    transform: translateY(3px);
    transition: transform 200ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
    outline: none;
}


#genRule{
  color: aliceblue;
  font-size: 6em;
  font-family: monospace;
  margin: 0px;
}
.rules{
  width: 94vw;
  height: fit-content;
  padding-inline: 10px;
  background-color: #8f2cb6;
  border-radius: 15px;
}
.rule{
  width: 80vw;
  height: fit-content;
  display: flex;
  margin-bottom: 1em;
}
.rule i{
  height: 20px;
  width: 20px;
  color: #e0a70b;
  margin-top: 1em;
}
.rule div{
  margin-left: 1em;
  color: aliceblue;
  font-family: monospace;
}

#EventsTitle{
  color: aliceblue;
  font-size: 6em;
  font-family: monospace;
  padding-left: 0.2em;
  margin: 0px;
}
.events{
  width: 100vw;
  height: fit-content;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(61, 0, 73),rgba(0,0,0),rgb(10, 0, 12));
  display: grid;
  justify-content: center;

}
.events img{
  width: 70vw;
  height: auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
footer{
  background-color: #8f2cb6;
  width: 100vw;
  height: fit-content;
  min-width: 3em;
  color: aliceblue;
  font-family: monospace;
}

#contact{
  width: 100vw;
  background-color: #4e0e87;
  height: 40vh;
  border-radius: 15px;
}
#contactTitle{
  color: #dab6fc;
  font-size: 3em;
  font-family: monospace;
  margin-inline: 0.3em;
  margin-block: 0.5em;
}
.contactPersons{
  color: #dab6fc;
  font-family: monospace;
}
.contactPersonTitle{
  font-size: 2em;
  margin-left: 1em;
  font-weight: 600;
  margin-block: 10px;
}
.contactNameNumber{
  font-size: 1.5em;
  margin-block: 10px;
  margin-left: 2em;
  font-weight: 80;
}
#apology-message{
  display: none;
}

.invalid{
  border: 2px solid red;
}
.adPoster{
  width: 100%;
  height: fit-content;
  padding-inline: 10px;
  padding-block: 20px;
}
.adPoster img{
  width: 95%;
  height: auto;
}

@media (min-width: 400px) {
  .main{
    display: none;
  }

  #apology-message {
    display: block; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background-color: #000; 
    color: #fff; 
    font-family: Arial, sans-serif;
    padding: 20px;
  }

  #apology-message h1 {
    font-size: 2em;
    margin-bottom: 10px;
  }

  #apology-message p {
    font-size: 1.2em;
  }

  .showEvents {
    display: flex;
    flex-direction: column; /* Stack logo on top of the event images */
    align-items: center; /* Center everything horizontally */
    justify-content: center; /* Center everything vertically */
    padding: 20px;
    text-align: center;
  }
  
  .logo {
    width: 50em; /* Adjust size of the logo */
    height: auto;
    margin-bottom: 20px; /* Add some space between the logo and the event images */
  }
  
  .listEvents {
    display: flex;
    flex-direction: row; /* Arrange the event images in a row */
    justify-content: center; /* Center the row of images */
    gap: 15px; /* Add space between the images */
  }
  
  .listEvents img {
    width: 100px; /* Resize event images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
    transition: transform 0.3s ease; /* Add a hover effect */
  }
  
  .listEvents img:hover {
    transform: scale(1.1); /* Enlarge slightly on hover */
  }

  /* From Uiverse.io by bociKond */ 
.loader {
  width: 44.8px;
  height: 44.8px;
  color: #791ba5;
  position: relative;
  margin-top: 20px;
  left: 50%;
  background: radial-gradient(11.2px,currentColor 94%,#0000);
}

.loader:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(10.08px at bottom right,#0000 94%,currentColor) top    left,
          radial-gradient(10.08px at bottom left ,#0000 94%,currentColor) top    right,
          radial-gradient(10.08px at top    right,#0000 94%,currentColor) bottom left,
          radial-gradient(10.08px at top    left ,#0000 94%,currentColor) bottom right;
  background-size: 22.4px 22.4px;
  background-repeat: no-repeat;
  animation: loader 1.5s infinite cubic-bezier(0.3,1,0,1);
}

@keyframes loader {
  33% {
    inset: -11.2px;
    transform: rotate(0deg);
  }

  66% {
    inset: -11.2px;
    transform: rotate(90deg);
  }

  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}
  
}
