/* ============================================================
   SOCIAL MEDIA ICONS
   Facebook and YouTube icons with brand colors
   ============================================================ */

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--era-navy);
  color: var(--k-0);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Facebook specific styling */
.social-icons a.facebook {
  background: #1877f2; /* Facebook blue */
}

.social-icons a.facebook:hover {
  background: #145dbf;
}

/* YouTube specific styling */
.social-icons a.youtube {
  background: #ff0000; /* YouTube red */
}

.social-icons a.youtube:hover {
  background: #cc0000;
}

/* Icon size adjustments */
.social-icons i,
.social-icons svg {
  font-size: 1.25rem;
  line-height: 1;
}

/* Alternative style - outline icons */
.social-icons.outline a {
  background: transparent;
  border: 2px solid var(--era-navy);
  color: var(--era-navy);
}

.social-icons.outline a.facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.social-icons.outline a.facebook:hover {
  background: #1877f2;
  color: var(--k-0);
}

.social-icons.outline a.youtube {
  border-color: #ff0000;
  color: #ff0000;
}

.social-icons.outline a.youtube:hover {
  background: #ff0000;
  color: var(--k-0);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .social-icons {
    gap: 0.75rem;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
