@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed');
/* Базовые стили */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Шапка */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Навигация */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  height: 60px;
}

/* Логотип */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

/* Список меню */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* Пункты меню */
.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  position: relative;
  padding: 5px;
  transition: color 0.3s;
}

/* Ховер эффект */
.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #007bff;
  transition: width 0.3s ease-in-out;
}

.nav-menu li a:hover {
  color: #007bff;
}

.nav-menu li a:hover::after {
  width: 100%;
}
