/* HEADER */
.site-header {
  background-color: #2d2d2d;
  color: white;
  font-family: Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Thêm bóng nhẹ cho phần sticky */
  transition: all 0.3s ease-in-out; /* Hiệu ứng mượt khi cuộn */
}

/* Phần trên của header (header-top) */
.header-top {
  padding: 8px 0; /* Giảm độ dày phần trên */
}

.top-bar, .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 35px; /* Giảm chiều cao của logo */
}

/* Các biểu tượng và nút đăng nhập */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px; /* Giảm khoảng cách giữa các icon và nút đăng nhập */
}

.social-icons a {
  margin-left: 15px;
}

.social-icons img {
  height: 25px; /* Giảm kích thước icon */
  filter: brightness(0) invert(1);
  border-radius: 4px;
}

.login-button {
  background-color: #b80000;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #a00000;
}

/* Phần menu (header-nav) */
.header-nav {
  background-color: #202020;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 5px 0; /* Giảm padding trên/dưới */
  gap: 20px; /* Điều chỉnh khoảng cách giữa các menu item */
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600; /* Điều chỉnh độ đậm chữ */
  padding: 6px 10px; /* Giảm padding để menu mỏng hơn */
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.main-nav a.active, .main-nav a:hover {
  background-color: #b80000;
  color: white;
}
