﻿/* ===== Footer ===== */

footer {
  width: 100%;
  height: 214px;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  padding: 0 109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.footer-legal {
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  color: var(--nav-text);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-legal:hover {
  opacity: 1;
  color: var(--white)
}

.footer-copy {
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  color: var(--bg);
  opacity: 0.8;
  cursor: default;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 36px;
  height: auto;
  opacity: 0.8;
}

.footer-name {
  font-family: 'Anta', sans-serif;
  font-size: 16px;
  color: var(--nav-text);
  letter-spacing: 1px;
  opacity: 0.8;
  cursor: default;
}

.footer-role {
  font-family: 'JosefinSans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 120%;
  cursor: default;
}

.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon img {
  width: 30px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-icon:hover img {
  opacity: 1;
}

.footer-github,
.footer-mail,
.footer-linkedin {
  width: 30px;
  height: 30px;
}