/* Footer Styles - SIMPLIFIED */
.footer {
  background-color: #354242;
  color: #ffffff;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid #dcff7d;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Base nav item styles */
.footer-nav-item {
  font-size: 0.75em;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-nav-item:hover {
  color: #dcff7d;
  text-decoration: underline;
  text-decoration-color: #dcff7d;
  text-underline-offset: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-icon {
  color: #ffffff;
  transition: color 0.2s ease;
}

.footer-social-icon:hover {
  color: #dcff7d;
}

.footer-copyright,
.footer-copyright-desktop {
  font-size: 0.6em;
  opacity: 0.7;
  color: #ffffff;
  text-align: center;
}

/* Mobile Layout (default) */
.footer-mobile {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  text-align: center;
}

.footer-mobile .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.footer-mobile .footer-social {
  margin: 1rem 0;
  justify-content: center;
}

/* Hide other layouts by default */
.footer-tablet,
.footer-desktop,
.footer-intermediate {
  display: none;
}

/* Tablet Layout 540px-1023px */
.footer-tablet {
  display: none;
  padding: 1rem 0;
  text-align: center;
}

.footer-tablet-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-nav-tablet {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

/* Desktop Layout 1024px+ */
.footer-desktop {
  display: none;
  padding: 1rem 0;
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  gap: 2rem;
}

.footer-nav-desktop {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-social-desktop {
  display: flex;
  gap: 1rem;
}

.footer-copyright-desktop {
  text-align: center;
  margin-top: 1rem;
}

/* Media Queries - SIMPLIFIED */

/* Mobile by default up to 539px */
@media (max-width: 539px) {
  .footer-mobile {
    display: flex;
  }

  .footer-tablet,
  .footer-desktop {
    display: none;
  }
}

/* Tablet 540px-1023px */
@media (min-width: 540px) and (max-width: 1023px) {
  .footer-mobile {
    display: none;
  }

  .footer-tablet {
    display: block;
  }

  .footer-desktop {
    display: none;
  }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .footer-mobile,
  .footer-tablet {
    display: none;
  }

  .footer-desktop {
    display: block;
  }
}
