/* ========== ОБЩИЕ СТИЛИ ДЛЯ ВСЕХ СТРАНИЦ ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #ffd60a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #131313;
}

/* ========== ВИДЕО И ОВЕРЛЕИ ========== */
#video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

#video-fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: -1;
}

#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.644);
  z-index: -1;
}

/* ========== HERO СЕКЦИЯ ========== */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hero img,
.hero-logo-svg {
  width: 180px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}

/* Социальные ссылки */
.hero-social {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

.social-link {
  color: #ffd60a;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #ffffff;
}

/* ========== ФУТЕР ========== */
.footer {
  background: #ffd60a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 350px;
  gap: 30px;
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  color: #000000;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copyright {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-align: center;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1200px) {
  .footer {
    padding: 40px 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-social {
    margin-left: 0;
  }
  .footer {
    padding: 40px 20px;
  }
}

html {
  scroll-behavior: smooth;
}