
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}

body {
  overflow-y: scroll;
}

.language-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.language-switch button {
  background-color: white;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.language-switch button:hover {
  background-color: #333;
  color: white;
}

.language-switch button.active {
  background-color: #333;
  color: white;
  pointer-events: none;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}




/*header;footer*/
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #afd036 #DFE9EB;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #afd036;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #62A34B;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #62A34B;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('path/to/century-gothic.ttf') format('truetype');
  
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Century Gothic', Arial, sans-serif;

}


.header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
padding: 10px;
text-align: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 10px;
text-align: center;
z-index: 100;

}

.headcontainer1 {
flex: 1;
display: flex;

justify-content: flex-start;


}


.headcontainer1 .centered-images img {
height: 70px;
margin-right: 10px;
}

.headcontainer2 {
flex: 1;
font-size: 25px;
text-align: center;

}

.headcontainer2 a {
display: inline-block;
margin: 25px;
color: #333;
text-decoration: none;
font-weight: bold;
position: relative;
}

.headcontainer2 a:before,
.headcontainer2 a:after {
content: "";
position: absolute;
width: 100%;
height: 2px;
background-color: #afd036;
bottom: -2px;
left: 0;
transform: scaleX(0);
transition: transform 0.3s ease-in-out;
}

.headcontainer2 a:hover:before,
.headcontainer2 a:hover:after {
transform: scaleX(1);
}

.headcontainer3{
flex: 1;
display: flex;
justify-content: flex-end;
}

.headcontainer3 img {
height: 70px;
margin-right: 20px;


}

@keyframes barAnimation {
0% {
  width: 0;
}
100% {
  width: 100%;
}
}

.footer {
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

.footcontainer1 {
  display: flex;
  justify-content: center;
}

.footcontainer1 .f1 {
  height: 50px;
}

.footcontainer2 {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footcontainer2 a {
  font-size: 25px;
  display: inline-block;
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.footcontainer2 a:before,
.footcontainer2 a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #afd036;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.footcontainer2 a:hover:before,
.footcontainer2 a:hover:after {
  transform: scaleX(1);
}

.footcontainer3 p {
  margin-top: 10px;
  color: #333;
  font-size: 12px;
}

/*header;footer*/


  .gallery {
    
    max-width: 1500px;
    margin: 150px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
    padding: 0 14px;
  }
  
  .gallery li {
    list-style-type: none;
    height: 250px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
  }
  
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease-in-out;
  }
  
  .gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .gallery .image-text {
    color: #fff;
    text-align: center;
    font-size: 18px;
  }
  
  .gallery li:hover img {
    filter: brightness(70%);
  }
  
  .gallery li:hover .overlay {
    opacity: 1;
  }
  
