/* ============================================
   TIMBOT — footer.css
   ============================================ */

.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  transition: opacity var(--transition);
}
.footer__logo:hover { opacity: 0.7; }

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
}
.footer__logo-text .dot {
  color: var(--color-cyan);
  margin-left: 1px;
}
.footer__brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1FE3FF;
  margin-bottom: 0.3rem;
}

.footer__col a {
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-cyan); }
.footer__logo-img {
  height: 80px;
  width: auto;
}










.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1rem;
}

.footer__contact-img{
  height: 25px;
  width: auto;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color:#FF931F;
  font-weight:bold;
  font-size: 22px;
}










.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding: 30px 0;
}

.footer__bottom p {
  font-size: 13px;
  font-weight: 100;
  color: white;
}

.footer__legal {
  display: flex;
  gap: 0.5rem;
}

.footer__legal a {
  font-size: 13px;
  font-weight: 100;
  color: white;
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* 반응형 */
@media (max-width: 768px) {
  .footer__top    { flex-direction: column; gap: 2rem; }
  .footer__links  { gap: 2rem; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}


