 @font-face {
  font-family: font;
  src: url(fonts/Satoshi-Bold.ttf);
 }

 @font-face {
  font-family: fontt;
  src: url(fonts/Satoshi-Regular.ttf);
 }
 
 body {
  margin: 0; 
  font-family: font;    
  background-color: rgb(28, 28, 28);  
  color: #82D92B;
  
  
  cursor: none; 
  cursor: hidden;
  
  overflow-x: hidden; 
}

.text {
font-family: "cofo-sans-pixel", sans-serif;
font-weight: 400;
font-style: normal;
margin-top: 5%;
display: flex;
justify-content: center;
}

.text-grid {
display: grid;
  grid-template-columns: repeat(4, 200px);
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
 
}


.bg-svg {
  position: absolute;        
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;           
  
 
  background-image: url('medias/logo.svg'); 
  
  background-repeat: no-repeat;
  background-position: center;
  
 
  background-size: 400%; 
  
  opacity: 0.1;           
  pointer-events: none;   
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;          
  height: 20px;
  background-color: white; 
  border-radius: 50%;  
  pointer-events: none;  
  z-index: 9999;         
  transform: translate(-50%, -50%); 
  mix-blend-mode: difference; 
}

h1 {
  justify-self: center;
  font-size: clamp(3rem, 15vw, 20rem);
  text-transform: uppercase;
  margin-top: 2%;
  color: #fff; 
  opacity: 0; 
  animation: cascadeDown 1s ease-out forwards; 
  animation-delay: 0.2s; 
}


@keyframes moveTextGradient {
    0% {
        background-position: 100% 50%; 
    }
    100% {
        background-position: 0% 50%;
    }
}

h2 {
  justify-self: center;
  margin-left: 2%;
  color: rgb(186, 186, 186);
  font-family: fontt;
  margin-bottom: 40%;
  margin-top: -10%;
  opacity: 0;
  animation: cascadeDown 1s ease-out forwards; 
  animation-delay: 0.2s; 
}

@keyframes cascadeDown {
  0% {
    opacity: 0;                 
    transform: translateY(-50px); 
  }
  100% {
    opacity: 1;                 
    transform: translateY(0);    
  }
}


.btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 17%; 
  margin-top: 2%;
}

.contact-btn {
  position: relative;
  font-family: 'font', sans-serif; 
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  
  
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 15px 40px;
  
  
  cursor: none; 
  
  
  opacity: 0; 
  transform: translateY(-50px);
  animation: cascadeDown 1s ease-out forwards; 
  animation-delay: 0.4s; 
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


.contact-btn:hover {
  background-color: #82D92B; 
  border-color: #82D92B;
  color: rgb(28, 28, 28); 
  
  
  box-shadow: 0 0 20px rgba(130, 217, 43, 0.4);
  letter-spacing: 2px; 
}

.arrow-container {
  position: absolute;
 justify-self: center;
 top: 80%;
  transform: translateX(-50%);
  cursor: none;
  pointer-events: none;
  opacity: 0;
  animation: cascadeDown 1s ease-out forwards;
  animation-delay: 0.6s;
}

.arrow-icon {
  color: rgb(186, 186, 186); 
  display: block;
  width: 30px;
  height: 30px;
}

h2 {
  margin-bottom: 5%; 
}

h3 {
  margin-left: 2%;
  margin-right: 2%;
  font-family: fontt;
  color: rgb(186, 186, 186);
  width: 10%;
}

.gallery-container {
  cursor: none;
}

.gallery-title {
      
}

.scroll-gallery {
    display: none;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
  
  scrollbar-width: none; 
  cursor: none;

}

.scroll-gallery img {
  display: block;
  height: 500px;
  width: auto; 
  object-fit: cover;
  cursor: none;
 
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.scroll-gallery img:hover {
  filter: grayscale(0%);         
}

.scroll-gallery::-webkit-scrollbar {
      height: 8px;
        display: none; 
}

.image-box {
      flex: 0 0 auto;
      scroll-snap-align: start;
      overflow: hidden;    
      cursor: none;
}

.infos {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    padding: 10px 2%; 
    transition: background-color 0.3s ease;
    user-select: none;
    position: relative; 
    overflow: hidden; 
}
.infos::after {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 200%; 
    height: 4px; 
    
    background: linear-gradient(
        to right, 
        #151515 0%, 
        #ffffff 25%, 
        #232323 50%, 
        #ffffff 75%, 
        #1e1e1e 100%
    );
    animation: moveGradient 4s linear infinite; 
}

@keyframes moveGradient {
    0% {
        transform: translateX(0); 
    } 
    100% {
        transform: translateX(-50%);
    }
}


::selection {
  background-color: #ffffff;  
  color: rgb(28, 28, 28); 
}


::-moz-selection {
  background-color: #ffffff;
  color: rgb(28, 28, 28);
}

















/* SMARTPHONE MODE PORTRAIT */
@media screen and (orientation: portrait) {

.scroll-gallery img {
  display: block;
  height: 150px;
  width: auto; 
  object-fit: cover;
}

body {
  cursor: none;

}

.text {
  display: none;
}
   

}
