/* Footer Styles - Desktop First Approach */

/* Base Styles - Desktop/Wide (1200px+) */
.Footer {
  background-color: #202124;
  width: 100%;
}

.Footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 56px 80px;
  gap: 60px;
}

/* Navigation Section */
.Footer-navigation {
  flex: 0 1 auto;
  width: auto;
  display: flex;
  justify-content: center;
}

.Footer-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.Footer-nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  max-width: none;

  background-color: transparent !important;
}

.Footer-nav-menu a {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;

  transition: opacity 0.3s ease;
}

.Footer-nav-menu a:hover {
  opacity: 0.8;
}

/* Social Section */
.Footer-social {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  justify-content: center;
}

.Footer-social-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.Footer--social-icon {
  display: inline-block;
  width: 27px;
  height: 27px;
  transition: opacity 0.3s ease;

  font-size: 27px !important;
  color: #63b825;

  margin: 0 !important;
}

.Footer--social-icon:hover {
  opacity: 0.8;
}

/* Laptop Styles (992px - 1199px) */
@media (max-width: 1199px) {
  .Footer-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 56px 60px;
    gap: 50px;

    text-align: center;
  }

  .Footer-navigation {
    width: 100%;
  }

  .Footer-nav-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .Footer-social {
    width: 100%;
  }
}

/* Tablet Styles (768px - 991px) */
@media (max-width: 991px) {
  .Footer-wrapper {
    padding: 56px 40px;
  }
}

/* Phone Styles (< 768px) */
@media (max-width: 767px) {
  .Footer-wrapper {
    padding: 56px 20px;
  }

  .Footer-nav-menu {
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: none;
    gap: 24px;
  }

  .Footer-nav-menu li {
    flex: 1 0 auto;
    max-width: none;
    text-align: center;
  }

  .Footer-social-icon {
    width: 24px;
    height: 24px;
  }
}
