/* HEADER */
#mainHeader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0 5%;
  box-sizing: border-box;
  transition: background 0.4s ease, height 0.4s ease;
  background: transparent;
}

.nav-container{
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: max-width 0.4s ease;
  position: relative;
}

.brand-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-logo:hover{
  transform: scale(1.05);
}

.logo-wrapper{
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.brand-logo img{
  height: 65px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: height 0.4s ease;
}

.logo-wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(137,205,0,0.1) 20%, rgba(137,205,0,0.4) 50%, rgba(137,205,0,0.1) 80%, transparent 100%);
  transform: skewX(-30deg);
  z-index: 2;
  animation: shine 10s infinite;
}

@keyframes shine {
  0% { left: -150%; }
  15% { left: 150%; }
  100% { left: 150%; }
}

.nav-links{
  display: flex;
  gap: 35px;
  background: rgba(255,255,255,0.03);
  padding: 10px 30px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover{
  background: linear-gradient(54deg, #5cd6b3 3.08%, #04b8c4 3.09%, #4bfa8a 98.66%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finch-btn{
  position: relative;
  background: linear-gradient(54deg, #5cd6b3 3.08%, #04b8c4 3.09%, #4bfa8a 98.66%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
  box-shadow: 0 4px 15px rgba(137,205,0,0.3);
  cursor: pointer;
}

.finch-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s cubic-bezier(0.25, 1, 0.33, 1);
}

.finch-btn:hover{
  box-shadow: 0 8px 25px rgba(137,205,0,0.5);
}

.finch-btn:hover::after{
  left: 100%;
}

.nav-cta{
  padding: 14px 34px;
  font-size: 14px;
}

.menu-toggle{display: none}

/* ORTAK HEADER / FOOTER RENK DÜZELTMESİ */

#mainHeader{
  background: transparent;
  transition: background 0.4s ease, height 0.4s ease;
}

.nav-links{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
}

.nav-links a{
  color: rgba(255,255,255,0.7);
}

.nav-links a:hover{
  background: linear-gradient(54deg, #5cd6b3 3.08%, #04b8c4 3.09%, #4bfa8a 98.66%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finch-btn,
.nav-cta{
  background: linear-gradient(54deg, #5cd6b3 3.08%, #04b8c4 3.09%, #4bfa8a 98.66%);
  color: #000;
  box-shadow: 0 4px 15px rgba(137,205,0,0.3);
}


@media (max-width: 1024px) {
  #mainHeader {
    height: 80px;
    padding: 0 20px;
  }
  
  .nav-links {
    display: none; /* Mobil menü ikonu eklemediyseniz şimdilik gizlemek en iyisidir */
  }
  
  .brand-logo img {
    height: 45px;
  }
}