/* Header Styles */
header {
  background-color: rgba(10, 10, 10, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

/* Logo Styles */
.logo {
  flex: 0 1 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
  display: block;
}

.logo-svg:hover {
  transform: scale(1.05);
}

/* Navigation */
nav ul {
  display: flex;
  gap: 25px;
  margin-right: 20px;
}

nav ul li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  background-color: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 15px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  nav ul {
    gap: 15px;
  }

  .contact-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .header-content {
    height: 60px;
  }

  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-svg {
    height: 32px;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 30px; /* Space from last nav item */
  align-items: center;
}

nav ul li.language-switcher {
  list-style: none; /* Remove bullet point */
}

.lang-btn {
  background: none;
  border: 1px solid var(--accent);
  color: var(--text-light);
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--accent);
  color: var(--primary);
}

/* Mobile Language Switcher */
.mobile-language-switcher {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.mobile-language-switcher .lang-btn {
  padding: 8px 16px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .language-switcher {
    display: none;
  }
}
