/*GOOGLE FONTS*/

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .rubik-80s-fade-regular {
    font-family: "Rubik 80s Fade", system-ui;
    font-weight: 400;
    font-style: normal;
  }  

  .orbitron{
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  
.mona-sans{
  font-family: "Mona Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*END*/
.background-layer {
  position: fixed;
  top: 0;
  left: -1em;
  width: 105%;
  height: 105%;
  background: url('Comp-1once.gif') no-repeat center center / cover;
  z-index: -10; /* Stay behind the main content */
  animation: bg-blur 2s cubic-bezier(0, 0.95, 0, 0.95) both;
  animation-delay: 4.8s;
}

@keyframes bg-blur {
  0% {
    filter: blur(4px);
  }
  100% {
    filter: blur(8px);
  }
}
#preloader {
    background: #ffffff url(Comp\ 1_12.gif) no-repeat center center; 
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0em;
    left: 0em;
    z-index: 100;
    animation: fadeout 0.57s cubic-bezier(0, 0.95, 0, 0.95) 4.68s both;
  }

  @keyframes fadeout {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
.banner-container {
    position: fixed;
    top: 0em;
    left: 0em;
    width: 100vw; 
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 10;
    animation: slide-right 0.5s cubic-bezier(0, 0.95, 0, 0.95) 4.70s  both;
  }
  
  .banner-wrapper {
    will-change: transform;
    width: 100%;
    height: auto;
    z-index: 3000;
  }
  
  .banner-image {
    transform: translateY(-3em) translateX(-10%);
    width: 120%; 
    height: auto;
    display: block;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 1%, 100% 70%, 0 70%); 
  }

    
  @keyframes slide-right {
    0% {
        transform: translateY(-3em) translateX(-200%);
    }
    100% {
        transform: translateY(-3em) translateX(0%);
    }
  }
  
button {
  background: none;
  border: none;
  cursor: pointer;
}

  .heading2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4em;
    position:absolute;
    top: 1.02em;
    left: 17em;
  }

  .heading2 h2 {
    color: #0083ff;
  }
  
  .gallery-buttons {
    display: flex;
    text-align: center;
    margin: 0em 0;
    z-index: 30;
    position: relative;
    top: -4.6em;
    left: -17em;
  }
  
  .gallery-buttons button {
    font-family: "Bebas Neue", sans-serif;
    padding: 0.1em 0.1em;
    margin: 0.3em;
    font-size: 1.3em;
    cursor: pointer;
    color: white;
  }
  
  .gallery-buttons button:hover {
    color: rgba(255, 255, 255, 0.603)
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    position: relative;
    top: 18em;
  }
  
  .gallery img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 200px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 70px;
    filter: drop-shadow(0px 25px 8px #00000052)
  }
  
  .gallery img:hover {
    transform: translateY(-1em);
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.801);
    display: none; /* HIDE IT INITIALLY */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: overlay-fade-in 0.4s cubic-bezier(0, 0.95, 0, 0.95);
    backdrop-filter:blur(4px)
  }
  .overlay img {
    max-width: 80%;
    max-height: 70%;
    margin-bottom: 1em;
  }
  
  .overlay .close {
    position: absolute;
    top: 0em;
    right: 1em;
    font-size: 3em;
    color: white;
    cursor: pointer;
    font-size: 7em;
    transition: color 0.3s ease-in-out;
  }
  
  .overlay .close:hover{
    color: #0083ff
    
  }

 #overlayDescription {
    color: #fff;
    text-align: center;
    max-width: 80%;
    font-family: "Cal Sans", sans-serif;
    font-size: 1em;
  }
  
  #overlayCaption {
    color: #fff;
    text-align: center;
    max-width: 80%;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 4em;
  }

  .overlay.active {
    display: flex;
    animation: overlay-fade-in 0.4s cubic-bezier(0, 0.95, 0, 0.95);
  }

  @keyframes overlay-fade-in {
    0% { 
      opacity: 0;
      backdrop-filter:blur(0px)
    }
    100% { 
      opacity: 1;
      backdrop-filter:blur(6px)
    }
  }
  
/*MENU*/

.options-button-wrapper {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 50;
  background-color: #ffffff;
}

.options-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 1em;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
  
}

.options-button .bar {
  width: 30px;
  height: 7px;
  background-color: #000000;
  transition: 0.3s;
}


.options-button:hover .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.options-button:hover .bar:nth-child(2) {
  opacity: 0; 
}

.options-button:hover .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}


.options-button:hover {
  transform: scale(1.1);
}


.options-button:active {
  transform: scale(0.95)
}

/*END*/