:root {
  --navy: #0a1f44;
  --gold: #c5a572;
  --dark-gold: #a68759;
  --light-gray: #f8f9fa;
  --mid-gray: #e9ecef;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --white: #ffffff;
}

.social-container {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.main-icon {
  background: var(--navy);
  z-index: 10;
}

.main-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.hidden-icon {
  margin-top: -50px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.social-container:hover .hidden-icon {
  margin-top: 15px;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.social-container.active .hidden-icon {
  margin-top: 15px;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hidden-icon:nth-child(2) {
  transition-delay: 0.05s;
}

.hidden-icon:nth-child(3) {
  transition-delay: 0.1s;
}

.hidden-icon:nth-child(4) {
  transition-delay: 0.15s;
}

.hidden-icon:nth-child(5) {
  transition-delay: 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.facebook {
  background: var(--gold);
}
.facebook svg {
  fill: white;
}

.twitter {
  background: var(--gold);
}
.twitter svg {
  fill: white;
}

.instagram {
  background: var(--gold);
}
.instagram svg {
  fill: white;
}

.linkedin {
  background: var(--gold);
}
.linkedin svg {
  fill: white;
}

a {
  text-decoration: none;
}
