.dragonFooter {
  background: #111;
  color: var(--col-01);
  padding: 2rem 12rem;
  border-top: 2px solid var(--col-03);
  font-family: 'Segoe UI', sans-serif;
}
.footerTop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footerLogo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footerLogo img {
  width: 12rem;
  height: 3rem;
  object-fit: cover;
}
.footerLogo h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--col-03);
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.footerLinks h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--col-02);
}
.footerLinks ul {
  list-style: none;
  padding: 0;
}
.footerLinks li {
  margin-bottom: 0.3rem;
}
.footerLinks a {
  color: var(--col-01);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footerLinks a:hover {
  color: var(--col-03);
}

.footerBottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footerBottom p {
  font-size: 0.8rem;
  color: var(--col-02);
}

.footerSocials a {
  color: var(--col-01);
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.footerSocials a:hover {
  color: var(--col-03);
}
