/*
 * StudyHub.AZ Header Styles
 * Filename: header.css
 * Author: Ostwind by Dr.FC
 * Шапка сайта и навигация
 */

/* === LOGO SECTION === */
.logos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto 20px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  flex-direction: column;
  align-items: flex-start;
}

.logo-actions {
  margin-left: auto;
}

.logo-image {
  width: 260px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.logo-with-name {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.7s ease-in-out;
}

.company-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(to right, #0c3c78, #0b7a3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInText 1s ease-out forwards 0.6s, glowPulse 2.6s ease-in-out infinite alternate;
}

/* === LOGO ANIMATIONS === */
/* Анимация logoFadeIn уже есть в animations.css */

/* Анимация fadeInText уже есть в animations.css */

/* Анимация glowPulse уже есть в animations.css */

/* Анимация titleGlow уже есть в animations.css */

/* Анимация logoShimmer уже есть в animations.css */ 