/*! Topbar Area Start */
.header .topbar {
  background-color: var(--header-bg-color);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.header .topbar>.wrapper {
  width: 80%;
  max-width: 1400px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 0px;
}

.header .topbar .mark {
  font-size: 1.6rem;
  color: var(--mark-color);
  font-family: 'Merienda';
}

.header .topbar .mark img {
  width: 200px;
  transition: all 0.4s;
  border-radius: 3px;
  filter: hue-rotate(10deg) saturate(150%) drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}


.header .topbar .mark img:hover {
  filter: hue-rotate(-30deg) saturate(200%) drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}


.header .topbar .searchEngine {
  width: 50%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .topbar svg {
  width: 18px !important;
  height: 18px !important;
}

.header .topbar .searchEngine .wrapper {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff9f9;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5), 0px 0px 10px rgba(255, 255, 255, 0.5), 0px 0px 15px rgba(255, 255, 255, 0.5);
  transition: all 0.4s;
  position: relative;
}

.header .topbar .searchEngine .wrapper input {
  width: 90%;
  height: 80%;
  margin-left: 10px;
  border: none;
  outline: none;
  background: none;
  font-size: 1rem;
  font-family: 'Rubik';
}

.header .topbar .searchEngine .wrapper button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0px 5px 5px 0px;
  background-color: var(--mark-color);
  border: 2px solid var(--mark-color);
  font-size: 1rem;
  transition: all 0.4s;
  overflow: hidden;
}

.header .topbar .searchEngine .wrapper button svg {
  fill: white;
  transition: all 0.4s;
}

.header .topbar .searchEngine .wrapper button svg:hover {
  filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.5)) drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.5));
}



.header .topbar .logProcess {
  display: flex;
  gap: 15px;
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.header .topbar .logProcess .dropDown {
  position: relative;
}

/*? dropButton doğrudan a elementindir. */
.header .topbar .logProcess .dropButton {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 4px 5px;
  border-radius: 5px;
  transition: all 0.4s;
  box-shadow: 0px 0px 5px transparent;
  gap: 8px;
  color: var(--mark-color);
  cursor: pointer;
}

.header .topbar .logProcess .dropContent {
  position: absolute;
  left: 50%;
  display: flex;
  min-width: 100%;
  flex-direction: column;
  transition: all 0.4s;
  transform: translateX(-50%);
  box-shadow: 0px 0px 5px transparent;
  border-radius: 5px;
  padding: 15px;
  gap: 15px;

  border: 2px solid transparent;
  background-color: transparent;
  opacity: 0;
  z-index: -10;
}

.header .topbar .logProcess .dropContent a {
  white-space: nowrap;
  padding: 4px 10px;
  transition: all 0.4s;
  gap: 5px;
  border-radius: 5px;
  color: var(--mark-color);
  display: flex;
  align-items: center;
}

.header .topbar .logProcess .dropContent a:nth-child(1) {
  background-color: rgba(255, 202, 95, 0.8);
}

.header .topbar .logProcess .dropContent a:nth-child(2) {
  background-color: rgba(255, 162, 162, 0.8);
}

.header .topbar .logProcess .dropContent a:nth-child(3) {
  background-color: rgba(147, 255, 145, 0.8);
}

.header .topbar .logProcess .dropContent a:hover {
  background-color: var(--header-bg-color);
}


/*? Dropdown animasyonu açılması durumu */
.header .topbar .logProcess .dropDown:hover .dropContent {
  z-index: 10;
  opacity: 1;
  background-color: white;
  border-color: rgba(120, 120, 120, 0.1);
}



.header .topbar .logProcess .singleLog {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .topbar .logProcess .singleLog a {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 4px;
  gap: 8px;
  transition: all 0.4s;
  color: var(--mark-color);
}

.header .topbar .logProcess .singleLog a svg {
  transition: all 0.4s;
  fill: var(--mark-color);
}

.header .topbar .logProcess .singleLog a:hover {
  color: var(--mark-hover-color);
}

.header .topbar .logProcess .singleLog a:hover svg {
  fill: var(--mark-hover-color);
}



/*? .topbar responsive area  */
@media(max-width:991px) {

  .header .topbar>.wrapper {
    width: 90%;
    height: 110px;
    align-items: start;
    padding: 0px;
  }

  .header .topbar .mark img {
    margin-top: 8px;
  }

  .header .topbar .searchEngine .wrapper {
    position: absolute;
    width: 95%;
    height: 30px;
    bottom: 10px;
    right: 50%;
    transform: translate(50%);
  }

  .header .topbar .logProcess {
    margin-top: 10px;
  }
}



@media(max-width:700px) {
  .header .topbar>.wrapper {
    width: 98%;
  }

  .header .topbar .mark img {
    width: 150px;
  }

  .header .topbar .searchEngine .wrapper {
    height: 30px;
    width: 75%;
    right: 10px;
    transform: translate(0px);
  }

  .header .topbar .searchEngine .wrapper input {
    font-size: 1rem;
  }

  .header .topbar .searchEngine .wrapper button {
    width: 25px;
    height: 25px;
  }

  .header .topbar .logProcess .dropDown .dropContent {
    left: auto;
    right: 0px;
    transform: translateX(0px);
  }

  .header .topbar svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header .topbar .logProcess {
    font-size: 0.9rem;
  }


  .header .topbar .logProcess .dropButton {
    flex-direction: column;
    gap: 3px;
  }

  .header .topbar .logProcess .dropButton a {
    flex-direction: column;
  }

  .header .topbar .logProcess .dropContent a {
    flex-direction: column;
  }


  .header .topbar .logProcess .singleLog a {
    flex-direction: column;
    gap: 3px;
  }
}