/* ==========================================================================
   FOOTER-DESKTOP.CSS (Base Styles & Large Screens)
   ========================================================================== */

/* --- SITE FOOTER LAYOUT --- */
.site-footer {
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: visible;
  margin-top: auto; /* Pushes footer to bottom */
}

.footer-branding-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 16rem;
  width: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* --- Animations & Effects --- */
.footer-zoomer {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  animation: physical-zoom 10s infinite ease-in-out;
  transform-style: preserve-3d;
}

.footer-logo-anim {
  height: 15rem;
  width: auto;
  animation: heartbeat 2s infinite running;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  10% { transform: scale(1.15); }
  20% { transform: scale(1); }
  30% { transform: scale(1.05); }
  40% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes physical-zoom {
  0%, 100% { transform: translateZ(-130px); opacity: 0.15; }
  50% { transform: translateZ(200px); opacity: 0.8; }
}

/* --- Text Blocks --- */
.footer-text-block {
  position: relative;
  transform: translateZ(0);
  z-index: 2;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-company-name {
  color: var(--fc-main);
  font-family: var(--ff-accent);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1;
  text-shadow: 0 0 1rem var(--bg-black);
}

.footer-line {
  color: var(--fc-muted);
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12rem;
}

.footer-email {
  color: var(--fc-muted);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-email:hover {
  color: var(--signature-orange);
}

.copyright-text {
  display: block;
  width: 100%;
  margin-top: -3rem;
  text-align: center;
  font-size: 1rem;
  color: var(--fc-muted);
  letter-spacing: 0.1rem;
  opacity: 0.5;
}

/* --- Social Icons --- */
.social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 3rem;
}

.social-list i {
  color: var(--fc-main);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.social-list i:hover {
  color: var(--signature-orange);
}