/* --- Independences --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgba(10, 10, 10);
  font-family: "Montserrat", sans-serif;
}
ul {
  list-style: none;
}
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600&display=swap");

/* --- Header --- */
header {
  background-color: rgba(22, 22, 22, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  width: 70px;
  margin-right: 20px;
  border: 2px solid rgba(36, 37, 38);
  user-select: none;
  border-radius: 15%;
  transition-duration: 0.3s;
}
.logo:hover {
  border: 2px solid #00f0ff;
}
.logo-holder {
  display: flex;
  margin-left: 100px;
}
.logo-text {
  /* 1. Настройки шрифта */
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; /* Полужирный */
  font-size: 2.5rem; /* Размер подгонишь */
  letter-spacing: 1px; /* Чуть разрядим буквы */
  margin: auto;
  user-select: none;

  /* 2. Магия градиента */
  background: linear-gradient(90deg, #ffffff 45%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Опционально: легкое свечение, чтобы текст "горел" */
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3));
}
.menu {
  display: flex;
  margin-right: 100px;
}
.menu-item {
  font-size: 1.2rem;
  user-select: none;
  padding: 10px 20px;
  cursor: pointer;
  color: rgba(144, 144, 144);
  transition-duration: 0.4s;
  border-radius: 10px;
}
.menu-item:hover {
  color: #ffffff;
}
.menu-item:last-of-type{
    transition-duration: 0.2s;
    font-weight: 700;
    color: black;
    background: white;
}
.menu-item:last-of-type:hover{
    scale: 1.05;
    background: #00f0ff;
}
/* --- Footer --- */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Mobile adaptation --- */
@media (max-width: 768px) {
  .glitch-wrapper {
    font-size: 2rem;
  }
  section {
    padding: 60px 5%;
  }
}
