/* Стили для логотипа АВАЛОН ТРАНС */
.header__logo {
  text-decoration: none;
  display: inline-block;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(135deg, #E68939 0%, #D67B2A 50%, #E68939 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  display: block;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(230, 137, 57, 0.3);
}

.logo-text::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E68939 0%, #DABD9E 50%, #E68939 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  box-shadow: 0 2px 8px rgba(230, 137, 57, 0.4);
}

.logo-text::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(230, 137, 57, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.header__logo:hover .logo-text {
  transform: translateY(-3px) scale(1.05);
  letter-spacing: 4px;
}

.header__logo:hover .logo-text::before {
  transform: scaleX(1);
}

.header__logo:hover .logo-text::after {
  width: 120%;
  height: 120%;
}

/* Адаптивные стили */
@media screen and (max-width: 880px) {
  .logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .header__logo {
    width: auto !important;
  }
}

@media screen and (max-width: 480px) {
  .logo-text {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}