/* Basic styles for the profile page */
body {
  font-family: 'Kumbh Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f4f8;
}

.navbar {
  background: #131313;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  background: rgb(0, 188, 251);
  color: #fff;
  transition: background 0.3s ease;
}

.main {
  padding: 90px 10px;
  background-color: #e0f7fa;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.profile-container {
  text-align: left;
  padding: 2rem;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-info {
  margin-bottom: 20px;
}

.profile-info p {
  margin: 10px 0;
}

#editProfileButton {
  padding: 10px 20px;
  background-color: #00b7ff;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

#editProfileButton:hover {
  background-color: #008fb3;
}

.footer__container {
  background-color: #141414;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__link--wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
  color: #fff;
}

.footer__link--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer__link--items a:hover {
  color: #e9e9e9;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  flex-wrap: wrap;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.social__icon--link {
  color: #fff;
  font-size: 24px;
}




/* General mobile breakpoints */
@media only screen and (max-width: 768px) {
  .navbar__container, .footer__container, .main, .stepsContainer, .signUpBox {
    padding: 0 20px;
  }

  .navbar__menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__links {
    padding: 10px 0;
  }

  .footer__link--items, .footer__link--wrapper {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .main {
    padding: 50px 10px;
  }

  .exerciseContainer, .profile-container {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .navbar__container, .footer__container, .main, .stepsContainer, .signUpBox {
    padding: 0 10px;
  }

  .navbar__menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__links {
    padding: 8px 0;
  }

  .footer__link--items, .footer__link--wrapper {
    width: 100%;
    text-align: center;
    padding: 8px;
  }

  .main {
    padding: 30px 5px;
  }

  .exerciseContainer, .profile-container {
    width: 100%;
    padding: 8px;
    margin: 0 auto;
  }
}
