/* horizontal-menu.css - Yatay Menü Stilleri - YENİDEN YAZILMIŞ */

/* ============================================
   HEADER RIGHT - Yatay Menü ve MENÜ Butonu
   ============================================ */

.header-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* ============================================
   HORIZONTAL NAVIGATION
   ============================================ */

.horizontal-nav {
  display: flex;
  align-items: center;
}

.horizontal-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

/* ============================================
   MENU ITEMS
   ============================================ */

.h-menu-item {
  position: relative;
}

/* Menü Bağlantısı - BEYAZ */
.h-menu-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0;
  white-space: nowrap;
  display: block;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* HOVER EFEKTI - DEGRADE RENK */
.h-menu-item:hover .h-menu-link {
  background: linear-gradient(90deg, #0061EF, #A71623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}

/* Alt Çizgi - DEGRADE */
.h-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0061EF, #A71623);
  transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.h-menu-item:hover .h-menu-link::after {
  width: 100%;
}

/* Active durumu */
.h-menu-item.active .h-menu-link {
  background: linear-gradient(90deg, #0061EF, #A71623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-menu-item.active .h-menu-link::after {
  width: 100%;
}

/* ============================================
   HOVER TEXT - Alt Açıklama
   ============================================ */

.h-menu-hover-text {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1), 
              transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
}

.h-menu-item:hover .h-menu-hover-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   LOGO AREA
   ============================================ */

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ============================================
   MENU OPEN STATE
   ============================================ */

body.menu-open .horizontal-nav {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .horizontal-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-right {
    gap: 1.5rem;
  }
}