﻿.social-icons span {
  display: inline-block;
  width: 0px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.6s ease;
}

/* Hover olduğunda genişlesin */
.social-icons:hover span {
  width: 100%;
  color: #8195a6 !important;
}
/* dropdown language selector */

.language-selector {
  position: relative;
  top: 4px;
  /* right: 30px; */
  z-index: 999;
}

.language-selector img {
  width: 30px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.current-language {
  cursor: pointer;
  display: inline-block;
  background: white;
  border-radius: 5px;
  padding: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dropdown-languages {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 6px;
  margin-left: -7px;
}

.dropdown-languages a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 4px 6px;
}

.dropdown-languages a:hover {
  background: #f1f1f1;
}

.top-name {
    font-size: 1.5rem;
  }
@media (max-width: 768px) {
  .top-name {
    font-size: 1rem; 
  }
  
  footer > div:nth-child(3){
    padding-left:3rem ;
    width: 99%;
  }
  footer > div:nth-child(4){
    padding-left:3rem ;
    width: 99%;
  }

}


