/* Navbar Stilleri */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo */
.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: inherit;
  border-bottom: none !important;
  outline: none;
}

.brand-logo::after {
  display: none !important;
}

.brand-logo:hover::after {
  display: none !important;
}

.brand-logo:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.brand-logo:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.brand-logo:visited {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.brand-logo:active {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.brand-logo * {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

.brand-accent {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  white-space: nowrap;
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(161, 118, 62, 0.1);
}

.nav-link.active {
  color: var(--primary-color);
  background: rgba(161, 118, 62, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  transition: width 0.3s ease;
  animation: expandLine 0.3s ease forwards;
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  transition: width 0.3s ease;
  animation: expandLine 0.3s ease forwards;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active:nth-child(2) {
  opacity: 0;
}

.hamburger.active:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 1rem;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-link.active::after {
    display: none;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .brand-accent {
    font-size: 1rem;
  }

  .logo-image {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .brand-logo {
    gap: 8px;
  }

  .logo-image {
    height: 35px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .brand-accent {
    font-size: 0.9rem;
  }
}

