/* Use this stylesheet to add your UI details, and to overwrite layout details for specific instances. */



.image-zoom {
  width: 500px; /* Set the width of the container */
  overflow: hidden; /* Hide the zoomed image that goes beyond the container */
  border-radius: 20px;
}

.image-zoom img {
  width: 100%;
  transition: transform 1s ease; /* Smooth zoom effect */
  border-radius: 20px;
}

.image-zoom img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  border-radius: 20px;
}

.hover-opacity {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.hover-opacity:hover {
  opacity: 0.4;
}


.image-roll {
  overflow: hidden;
  width: 100%;
  background: #f0f0f0; /* Background color */
}

.scroll-container {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.scroll-container img {
  display: block;
  border-radius: 0;
  max-height: 300px; /* Adjust based on your needs */

}

@keyframes scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(-100%); }
}









.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling for the arrow */
.arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 50px solid #0b0a06;
  margin-top: 100px;

  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

.bounce {
  animation: bounce 2s infinite ;
}

@keyframes bounce {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px); /* Arrow moves up */
  }
  100% {
      transform: translateY(0); /* Arrow returns to original position */
  }
}


/* -------------------- HOVER TEXT  ------------------ */

.hover-text {

  transition: color 0.3s ease;
}

.hover-text:hover {
  color: #4b4a47;
}


.scrolling-text {
  opacity: 30%;
  white-space: nowrap; /* Ensures the text stays in one line */
  display: inline-block;
  font-style: normal;
  font-weight: 400 ;
  color:#0b0a06;
  font-size: 4em;
  margin-bottom:  0px; ;
  margin-top: 50px ;
 /* Start the text off-screen on the left */
  animation: scroll-text 80s linear infinite; /* Adjust the duration as needed */
}

@keyframes scroll-text {
  from {
      transform: translateX(-50%); /* Start off-screen on the right */
  }
  to {
      transform: translateX(100%); /* End off-screen on the left */
  }
}

/* -------------- card -------------- */

.card {

  box-shadow: 0 0px 2px 0 #0b0a06;
  transition: 0.3s;


}

.card:hover {
  box-shadow: 0 2px 10px 0 #0b0a06;
}



.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #0b0606;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: cursorGlow 2s infinite;
  box-shadow: 0 0 5px 30393d, 0 0 20px 30393d;
}


@media (min-width: 390px) {




  .image-appear {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  
  .fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .fade-in.active {
    opacity: 1;
  }


/* -------------------- ANIMATED TEXT ------------------ */

.animated-text{
  position: relative;
  display: inline-block;
}

.animated-text::after {
  content: "";
  position: absolute;
  left: 0;

  background-color: #0b0a06;
  bottom: 6px; /* adjust the value to control the distance between text and line */
  width: 100%;
  height: 3px;
  transform: scaleX(0); /* initially hide the line */
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.animated-text:hover::after {
  transform: scaleX(1); /* show the line on hover */
}






/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  object-fit: contain;
}

.slideshow img:first-child {
  opacity: 1;
  z-index: 1;
}



/* --------------------POP UP------------------ */

.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}


.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/* Animate object on scroll */
.animated {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
    width: 100%;
  aspect-ratio: 16 / 12; /* or 4 / 3, 1 / 1, etc */
  overflow: hidden;
  position: relative;
    position: relative;
    overflow: hidden;


  }
  
  .slideshow img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    object-fit: contain;
  }
  
  .slideshow img:first-child {
    opacity: 1;
    z-index: 1;
  }
  
  
  
  .hidden {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  
  .visible {
    opacity: 1;
  }



/* ----------------- SCROLLS---------------- */


  .scroll-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0b0a06;
    color: #222222;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition:  0.3s ease;
  }
  
  .scroll-btn:hover {
    background-color: #30393d;
    color: #ffffff;
  }
  
 
.scroll {
  cursor: pointer;
}






}




@media screen and (min-width: 768px) {

  


/* -------------------- ANIMATED TEXT ------------------ */

.animated-text{
  position: relative;
  display: inline-block;
}

.animated-text::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #0b0a06;
  bottom: 6px; /* adjust the value to control the distance between text and line */
  width: 100%;
  height: 3px;
  transform: scaleX(0); /* initially hide the line */
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.animated-text:hover::after {
  transform: scaleX(1); /* show the line on hover */
}

/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
  width: 100%;

  position: relative;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.slideshow img:first-child {
  opacity: 1;
  z-index: 1;
}

/*---------------------PHONE SLIDES------------*/



/* --------------------POP UP------------------ */

.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}


.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/* Animate object on scroll */
.animated {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
    position: relative;
    overflow: hidden;
  }
  
  .slideshow img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
  }
  
  .slideshow img:first-child {
    opacity: 1;
    z-index: 1;
  }
  
  
  
  .hidden {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  
  .visible {
    opacity: 1;
  }



/* ----------------- SCROLLS---------------- */


  .scroll-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffeaea;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
 
  
 
.scroll {
  cursor: pointer;
}



    }
  




    @media (min-width: 1440px) {



/* -------------------- ANIMATED TEXT ------------------ */

.animated-text{
  position: relative;
  display: inline-block;
}

.animated-text::after {
  content: "";
  position: absolute;
  left: 0;
  background-color:#0b0a06;
  bottom: 6px; /* adjust the value to control the distance between text and line */
  width: 100%;
  height: 3px;
  transform: scaleX(0); /* initially hide the line */
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.animated-text:hover::after {
  transform: scaleX(1); /* show the line on hover */
}

/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.slideshow img:first-child {
  opacity: 1;
  z-index: 1;
}



/* --------------------POP UP------------------ */

.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}


.pop-up {
  border-radius: 50%;
  opacity: 0;
  animation-name: pop-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

/* Animate object on scroll */
.animated {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ----------------- SLIDES - AUTOMATIC ---------------- */

.slideshow {
    position: relative;
    overflow: hidden;

    
  }
  
  .slideshow img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    object-fit: contain;
    
  }
  
  .slideshow img:first-child {
    opacity: 1;
    z-index: 1;
    

  }
  
  
  
  .hidden {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  
  .visible {
    opacity: 1;
  }



/* ----------------- SCROLLS---------------- */


  .scroll-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffeaea;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  .scroll-btn:hover {
    background-color:#30393d
  }
  
 
.scroll {
  cursor: pointer;
}



      }
    
  
  
      @media (prefers-color-scheme: dark) { 


        .animated-text::after {
          content: "";
          position: absolute;
          left: 0;
        
          background-color: #f1eeea;
          bottom: 6px; /* adjust the value to control the distance between text and line */
          width: 100%;
          height: 3px;
          transform: scaleX(0); /* initially hide the line */
          transform-origin: left center;
          transition: transform 0.3s ease;
        }
        /* -------------- card -------------- */

.card {

  box-shadow: 0 0px 2px 0  #000000;
  transition: 0.3s;


}

.card:hover {
  box-shadow: 0 2px 10px 0  #000000;
}



.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color:  #f1eeea;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: cursorGlow 2s infinite;
  box-shadow: 0 0 5px 30393d, 0 0 20px 30393d;
}


/* -------------------- ANIMATED TEXT ------------------ */

.animated-text{
  position: relative;
  display: inline-block;
}

.animated-text::after {
  content: "";
  position: absolute;
  left: 0;

  background-color: #f1eeea;
  bottom: 6px; /* adjust the value to control the distance between text and line */
  width: 100%;
  height: 3px;
  transform: scaleX(0); /* initially hide the line */
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.animated-text:hover::after {
  transform: scaleX(1); /* show the line on hover */
}


.scrolling-text {
  opacity: 10%;
  white-space: nowrap; /* Ensures the text stays in one line */
  display: inline-block;
  font-style: normal;
  font-weight: 400 ;
  color:#f1eeea;
  font-size: 4em;
  margin: bottom 0px; ;
 /* Start the text off-screen on the left */
  animation: scroll-text 40s linear infinite; /* Adjust the duration as needed */
}

      }