/* Футер */
.simple-footer {
  background: var(--dark-slate);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(254, 218, 106, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--bee-yellow);
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--silver-fox);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--bee-yellow);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: var(--silver-fox);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 1;
  color: var(--bee-yellow);
}

.footer-copyright {
  color: var(--silver-fox);
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 15px;
  }
  
  .footer-social {
    gap: 15px;
  }
}