@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');





@keyframes imageCropAnimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

img.animate {
    animation: imageCropAnimation 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Apply the animation to images with the 'animate' class */
}

body{
    overflow-x: hidden;
    background: rgb(0, 0, 0);
}



h1{

    font-weight: 400;
    font-size: clamp(60px, 12vw, 150px);
    text-align: center; /* Center the text */
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Fjalla One';
    color: white;
    word-break: break-word;

    
}

h2{

    font-weight: 400;
    font-size: clamp(1rem, 4vw, 1.6rem);
    text-align: center; /* Center the text */
    font-family: 'Poppins';
    margin-top: 0px;
    color: white;


}



a{
    text-decoration: none;
}

.toptitle{
    margin-bottom: 60px;
    margin-top: 20px;
}








.about img{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}





.spacer{
    height: 10vh;
}

.footer{
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 12px;
    text-align: center; /* Center the text */
    color: white;
}

.text{
    padding: 200px;
    text-align: center;
    color: white;
    font-size: 50px;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    padding: 0 20px;
}






.gallery {

    line-height: 0;
     
    -webkit-column-count: 2;
    -webkit-column-gap:   0;
    -moz-column-count:    2;
    -moz-column-gap:      0;
    column-count:         2;
    column-gap:           0;  
}


  @media (max-width: 1000px) {
    .gallery {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
    }
  }









  /* Style for the gallery item container to have a border and padding */
.gallery-item {
    position: relative;
    /* border-radius: 25px; Optional: rounded corners for the box */
    background-color: rgb(0, 0, 0); /* Dark background to highlight the content */
    overflow: hidden; /* Ensure content stays within the box */
    transition: 0.3s linear; /* Animation for hover effect */
    margin: 0 10px 20px 10px; /* Space between the gallery items */
  

}




/* Ensure the image takes up the entire width inside the gallery item */
.gallery-item img, .gallery-item video {
  
    width: 100%;
    height: auto;
    display: block;
    margin: 0px;
    transition: 0.2s linear; /* Animation for hover effect */

}



.image-fallback {
  display: none;
  width: auto;
  height: 1280px;
  background-color: rgb(195, 255, 195);

  border-radius: 20px; /* Match the border-radius with the parent container */
  margin-bottom: 10px; /* Space between the image and the text */
  z-index: -1; /* Ensure it is behind the image */

}

.gallery-item a{
    text-decoration: none;
    color: white;
}

/* Style for the text below the image */
.gallery-text {
    font-size: 30px; /* Responsive font size */
    text-align: left; /* Center the text horizontally */
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background for text */
    padding: 0px;
    padding-top:	26.5px;
    display: block; /* Ensure the text takes up the full width of its parent */
    font-family: 'Fjalla one', serif;


}

.gallery-undertext {
    font-size: 12px;
    text-align: left; /* Center the text horizontally */
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background for text */
    padding: 0px;
    padding-top: 20px; /* Add some padding around the text */

    display: block; /* Ensure the text takes up the full width of its parent */
    font-family: 'Poppins', serif;
}



.item-name-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-weight: 400;
  color: white;

  text-wrap: nowrap;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 13.5px;

  margin: 0px;
  margin-bottom: 0px;


  width: fit-content;
  height: 50px;

  transition: cubic-bezier(0,.6,.46,1);
  overflow: hidden;
}

.gallery-item:hover img, .gallery-item:hover video{
  opacity: 80%;
}



.hovered-gallery-item{
color: rgb(255, 255, 255);

}

.gallery-item:hover .label-up{
top:-100%;
}

  
.menu-item:hover .label-up {
    top:-100%;
  }





























.ppp {
    /* Prevent vertical gaps */
    line-height: 0;
     
    -webkit-column-count: 3;
    -webkit-column-gap:   20px;
    -moz-column-count:    3;
    -moz-column-gap:      20px;
    column-count:         3;
    column-gap:           20px;  
  }
  
  .ppp img {
    /* Just in case there are inline attributes */
    width: 100% !important;
    height: auto !important;
    padding: 10px 0;
  }

  @media (max-width: 1200px) {
    .ppp {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
    }
  }

  @media (max-width: 800px) {
    .ppp {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
    }
  }




















.hover-underline {
    position: relative;
    cursor: pointer;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.default-underline::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}














.slider{
  rotate: -1.5deg;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}




.slider:before, .slider:after {
  position: absolute;
  top: 0;
  content: "";
  z-index: 2;
  width: 50%;
  height: 100%;
}

.slider:before {
  left: -100px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}

.slider:after {
  right: -100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}





.video {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 150px;
    padding: 0 200px;
}

.video-embed {
    width: 600px;
    height: auto; /* Maintain aspect ratio */
    overflow: hidden; /* Prevent overflow issues */
}










.slides{
    overflow: hidden;
    white-space: nowrap;
    position: relative;

    display: inline-block;
    animation: 40s slide linear infinite; 

}

.slides img{
    border-radius: 15px;
    height: clamp(150px, 40vw, 200px);
    margin: 0 5px;
}

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





.video-container {
    max-width: 600px;
    height: auto; /* Maintain aspect ratio */
    overflow: hidden; /* Prevent overflow issues */
    margin: 0 auto; /* Center the element horizontally */
    margin-top: 100px;
}




.video-info {
  display: flex;
  flex-direction: row;
  color: white;
  gap: 25px; 
  justify-content: center;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto; /* Center the container */
  margin-top: 100px;

}




.video-title {
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: 'Fjalla One';
  max-width: 40%;
  text-wrap: wrap;
  hyphens: auto; /* Enables automatic hyphenation */


}

.video-description {
  font-weight: 400;

  font-size: clamp(1rem, 2vw, 1.2rem);;
  font-family: 'Poppins';

  max-width: 40%;
  text-wrap: wrap;

}


@media (max-width: 768px) {
  .video-info {
    flex-direction: column; 
    align-items: center; 
    gap: 100px;
  }
  .video-title, .video-description {
    max-width: 90%;

}

}



























/* ---------- BUTTONS ---------- */



.instacontainer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

}


.container{
  text-align: center;
  font-family: 'Poppins';
}




.button {
  background: #272727;
  color: white;
  width: 200px;
  display: inline-block;
  height: 65px;
  line-height: 65px; /* Adjust the line-height to match the height of the button */
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 4px;
  transition: 0.5s cubic-bezier(0,.8,.50,1);
}




.button1 { /* button for the contact page 1 */

  padding: 5px 15px;
  background: #272727;
  color: white;
  display: inline-block;
  height: 2em; /* Half the height of the text */
  line-height: 2em; /* Match the line-height to the height of the button */
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 4px;
  transition: 0.5s cubic-bezier(0,.8,.50,1);
  font-size: clamp(1rem, 4vw, 1.6rem);
    
}




.button-container {

  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between buttons */

}


@media (max-width: 400px) {
  .button-container {
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
  }

  .button1 {
    width: 125px;
}

}


/* ---------- BUTTON ANIMATIONS ---------- */






.button:hover {
  background:#5c5c5c;
}

.button1:hover {
  background-color: #555;
}


.label-up {
  display:block;
  margin: 0px;
  height:100%;
  position:relative;
  top:0%;
  transition: 0.5s cubic-bezier(0,.8,.50,1);
  margin-bottom: 10px; /* Adjust the value as needed */

}

.button:hover .label-up {
  top: -100%;
}

.button1:hover .label-up {
  top: calc(-100% - 10px);
}




@media (max-width: 768px) {
  .button {
    background: #5c5c5c;
    width: 160px;
  }

  .button .label-up {
    top: -100%;
  }

}







/* ---------- TOP LEFT MENU ---------- */







.menu {
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 20px;
    padding: 10px ;
    margin: 0px;
    font-family: 'Poppins';

}

.menu a{
  text-decoration: none;

}


.menu-item {
    font-weight: 400;
    font-size: 1rem;   


    color: white;
    height: 35px;
    width: fit-content;
    line-height: 25px;
    overflow: hidden;
    transition: cubic-bezier(0,.6,.46,1);
    text-decoration: none;
    margin: 10px;

  }




  @media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%;
    }
    .carousel-container, .gallery, .gallery-item, body{
        padding: 0px;
        margin-left: 0px;
        margin-right: 0px;

    }
}


  










































































    


.animate {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  
  
  
  
  
  
  
  /*=== Animations start here  ===*/
  
  /*==== FADE IN UP ===*/
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  
  
  
  



.hidden{
  opacity: 0;
  transition: all 1s;
  transform: translateY(20%);
}

.show{
  opacity: 1;
  transform: translateY(0);

}
  
  
  /*=== Optional Delays, change values here  ===*/
  .one {
      -webkit-animation-delay: 0.5s;
      -moz-animation-delay: 0.5s;
      animation-delay: 0.5s;
      transition-delay: 0.3s;

    }
    
    .two {
      -webkit-animation-delay: 1.5s;
      -moz-animation-delay: 1.5s;
      animation-delay: 1.5s;
      transition-delay: 1.5s;
    }
    
    .three {
      -webkit-animation-delay: 2.5s;
      -moz-animation-delay: 2.5s;
      animation-delay: 2.5s;
      transition-delay: 2.5s;

    }
    
    .four {
      -webkit-animation-delay: 3.5s;
      -moz-animation-delay: 3.5s;
      animation-delay: 3.5s;
      transition-delay: 3.5s;

    }
    
    .five {
      -webkit-animation-delay: 4.5s;
      -moz-animation-delay: 4.5s;
      animation-delay: 4.5s;
      transition-delay: 4.5s;
    }
    
    .six {
      -webkit-animation-delay: 5.5s;
      -moz-animation-delay: 5.5s;
      animation-delay: 5.5s;
      transition-delay: 5.5s;

    }
    
    .seven {
      -webkit-animation-delay: 6.5s;
      -moz-animation-delay: 6.5s;
      animation-delay: 6.5s;
      transition-delay: 6.5s;

    }
    
    .eight {
      -webkit-animation-delay: 7.5s;
      -moz-animation-delay: 7.5s;
      animation-delay: 7.5s;
      transition-delay: 7.5s;

    }
    














