/* ========================================
   STICKY FOOTER EFFECT
   ======================================== */

/* 📱 BREAKPOINT REFERENCE
   @media (min-width: 768px)  { }   // Tablet
   @media (min-width: 992px)  { }   // Desktop
   @media (min-width: 1200px) { }   // Large desktop
*/

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

.main-content {
  position: relative;
  z-index: 1;
  background: var(--bg-tertiary);
}

/* Page wrapper - scrolls over footer */
.page-wrapper {
  position: relative;
  z-index: 10;
  background: var(--bg-tertiary);
  min-height: 100vh;
  padding-bottom: 550px; /* Increase if footer is taller */
  transition: z-index 0s; /* Instant z-index change, no gap */
}

/* Footer - fixed behind everything */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  transition: z-index 0s;
}

@media (min-width: 768px) {
  .page-wrapper {
    padding-bottom: 430px;
  }
}

@media (min-width: 1200px) {
  .page-wrapper {
    padding-bottom: 615px;
  }
}

/*
background: #ecf0f1; */
